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

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

@font-face {
  font-family: Thicccboi;
  src: url('../fonts/THICCCBOI-SemiBold.woff2') format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Thicccboi;
  src: url('../fonts/THICCCBOI-ExtraBold.woff2') format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "07 Brother 1816";
  src: url('../fonts/07-brother1816-regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

:root {
  --dark: black;
  --paragraphs: #dad7d499;
  --light: #57b6b2;
  --border: #f9a11b;
  --background: #fff;
  --blue: #004467;
  --optional: #dad7d470;
}

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

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

@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(--dark);
  color: var(--paragraphs);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  font-family: Thicccboi, sans-serif;
  font-size: 20px;
  line-height: 153%;
  display: flex;
}

h1 {
  color: var(--light);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 60px;
  font-weight: 700;
  line-height: 90%;
}

h2 {
  color: var(--light);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 48px;
  font-weight: 700;
  line-height: 95%;
}

h3 {
  color: var(--light);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 26px;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
}

h4 {
  color: var(--light);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 105%;
}

h5 {
  color: var(--light);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
}

h6 {
  color: var(--light);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 115%;
}

p {
  margin-bottom: 35px;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 35px;
  padding-left: 36px;
}

li {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 7px;
}

strong {
  color: var(--light);
  font-weight: 700;
}

em {
  font-family: Playfair Display, sans-serif;
  font-style: italic;
}

blockquote {
  border-left: 1px solid var(--border);
  color: var(--light);
  margin-bottom: 35px;
  margin-left: 18px;
  padding: 0 24px;
  font-family: Playfair Display, sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 160%;
}

figure {
  border-radius: 14px;
  margin-top: 48px;
  margin-bottom: 48px;
  overflow: hidden;
}

figcaption {
  background-color: var(--background);
  text-align: center;
  margin-top: 0;
  padding: 18px 5%;
  font-size: 16px;
  line-height: 140%;
}

.nav-link {
  color: var(--light);
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
}

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

.overflow {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  overflow: hidden;
}

.overflow.home {
  flex-flow: column;
  margin-bottom: 0;
}

.overflow.projects101 {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.overflow.empor {
  margin-bottom: 3.3rem;
}

.section {
  background-image: none;
  background-size: auto;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.section.buttn-section {
  margin-bottom: 0;
  padding-bottom: 5vh;
  padding-left: 10vh;
  padding-right: 10vh;
}

.section.about.open {
  background-image: none;
  padding: 10vh;
}

.section.about.open.lastpart {
  padding-bottom: 10vh;
}

.section.about.open.lastpart.hereonly {
  background-image: linear-gradient(#0000, #57b6b230 50%, #fff0);
}

.section.about.open.aboutus {
  background-image: radial-gradient(circle farthest-side, #57b6b23d, #fff0);
}

.section.about.open.thispart {
  background-image: linear-gradient(#fff0, #000), linear-gradient(#000, #fff0), url('../images/img014_1img014.webp');
  background-position: 0 0, 0 0, 25% 73%;
  background-size: auto, auto, auto;
  justify-content: center;
  align-items: center;
}

.section.contactus {
  padding-left: 10vh;
  padding-right: 10vh;
}

.section.onlyhere {
  background-image: linear-gradient(0deg, #000, #fff0), linear-gradient(#000, #fff0), url('../images/img009_1img009.webp');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, auto;
  justify-content: center;
  align-items: center;
  margin-top: 5vh;
  margin-bottom: 5vh;
  padding: 10vh;
}

.section.newonehere {
  background-image: none;
}

.lightbox-link-a {
  border-radius: 14px;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 27vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-footer {
  background-color: #57b6b200;
  background-image: linear-gradient(#0000 39%, #57b6b230 100%, #fff0);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 50vh;
  margin-top: 0;
  padding: 2.3em 0;
  display: flex;
  overflow: hidden;
}

.section-footer.life {
  background-color: #57b6b200;
}

.utility-page-wrap {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 140px 22px 50px;
  font-family: Alfont Com Alfont Com Dg Ghareeb Reg;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin-bottom: 0;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.lightbox-link-b {
  border-radius: 14px;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 17vw;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-hero-c {
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 280px 1.7vw 1.2vw;
  display: flex;
}

.section-hero-c.new {
  background-image: linear-gradient(#0000, #000000b3), linear-gradient(#000000b3, #fff0);
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-c {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-hero-c {
  margin-bottom: 0;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  display: inline-block;
}

.heading-hero-c:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 126%;
}

.heading-hero-c.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2.4rem;
  line-height: 133%;
}

.lightbox-link {
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.lightbox-link-d {
  border-radius: 14px;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.heading-top {
  color: var(--light);
  margin-bottom: 0;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  display: inline-block;
}

.heading-top:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 115%;
}

.heading-top.new {
  color: var(--border);
  background-image: none;
  padding: 0 0 0;
}

.heading-top.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 130%;
}

.lightbox-link-work-c {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  display: flex;
}

.heading-work-c {
  text-shadow: 0 60px 0 var(--light);
  margin-bottom: 0;
  font-size: 60px;
  line-height: 100%;
}

.subheading-work-c {
  text-transform: none;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
}

.link-contact-a {
  z-index: 10;
  background-color: var(--background);
  border-radius: 14px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--border);
  height: 56px;
  color: var(--light);
  background-color: #0000;
  margin-bottom: 0;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  border-bottom-color: var(--light);
}

.text-field::placeholder {
  color: #dad7d480;
}

.text-field.margin {
  margin-bottom: 28px;
}

.text-field.margin.onlythis {
  border-bottom-color: var(--light);
  font-family: "07 Brother 1816", Arial, sans-serif;
}

.text-field.margin.onlythis:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
}

.submit-button {
  border: 2px solid var(--light);
  color: var(--light);
  background-color: #0000;
  border-radius: 100px;
  padding: 22px 45px;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94);
}

.submit-button:hover {
  background-color: var(--light);
  color: var(--background);
  font-weight: 400;
}

.submit-button:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
}

.text-message {
  color: var(--light);
  font-family: Alfont Com Alfont Com Dg Ghareeb Reg;
  font-weight: 500;
}

.error-message {
  background-color: var(--background);
  border-radius: 14px;
  margin-top: 20px;
  padding: 20px;
}

.heading-contact-c {
  text-shadow: 0 130px 0 var(--light);
  margin-bottom: 0;
  font-size: 130px;
  line-height: 100%;
}

.button {
  border: 2px solid var(--light);
  color: var(--light);
  background-color: #0000;
  border-radius: 100px;
  padding: 22px 45px;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  background-color: var(--light);
  color: var(--background);
  font-family: Alfont Com Alfont Com Dg Ghareeb Reg;
}

.button:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
}

.button.w--current {
  padding-bottom: 24px;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-weight: 400;
}

.button.ar.w--current {
  font-family: Swissra, Arial, sans-serif;
  font-size: 16px;
}

.field-label {
  color: var(--light);
  text-align: left;
  margin-bottom: 0;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 115%;
}

.field-label:lang(ar) {
  text-align: right;
  font-family: Swissra, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.brand-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1.2em;
  display: flex;
  position: relative;
}

.underline {
  background-color: var(--light);
  width: 100%;
  position: absolute;
  inset: 0%;
  transform: translate(-105%);
}

.underline.life {
  background-color: var(--border);
}

.underline.lifebluw {
  background-color: var(--blue);
}

.nav-link-2 {
  margin-left: auto;
  margin-right: auto;
  padding: .5em 1.2em;
  text-decoration: none;
  position: relative;
}

.nav-link-2.right {
  margin-left: auto;
  margin-right: auto;
}

.nav-link-2.nn, .nav-link-2.nn-copy-copy, .nav-link-2.nn-copy-copy, .nav-link-2.nn-copy-copy {
  margin-left: auto;
  font-size: 20px;
}

.nav-link-2.nn-copy-copy, .nav-link-2.nn-copy-copy-copy {
  margin-left: auto;
  padding-top: .125em;
  padding-bottom: .125em;
  font-family: Poppins, sans-serif;
  font-size: 20px;
}

.nav-link-2.nn-copy-copy-copy {
  margin-left: auto;
  font-size: 20px;
}

.nav-2 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-menu-2 {
  width: 100%;
}

.brand-mobile {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  padding: .8em;
  display: none;
  position: relative;
}

.logo-2 {
  z-index: 10;
  height: 3.4em;
  position: relative;
}

.logo-2.mobile {
  height: 1.4em;
}

.nav-text {
  z-index: 10;
  color: var(--light);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-top: .5em;
  margin-bottom: .5em;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: .8em;
  font-weight: 400;
  line-height: 1.2em;
  position: relative;
}

.nav-text:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: .75em;
}

.nav-text.nn {
  color: var(--background);
  margin-top: .125em;
  margin-bottom: .125em;
  font-family: Poppins, sans-serif;
  font-size: .5em;
}

.nav-text.nn:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: .45em;
}

.nav-text.nn.liveher {
  color: var(--blue);
  font-family: Poppins, sans-serif;
}

.nav-text.nn.liveher:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
}

.nav-text.nn.liveher.a, .nav-text.nn.arf {
  font-family: Swissra, Arial, sans-serif;
  font-size: .45em;
}

.nav-text.lift {
  color: var(--border);
}

.nav-text.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .75em;
}

.grid-navbar {
  grid-column-gap: .5em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  place-items: center stretch;
}

.block-underline {
  width: 100%;
  height: 1px;
  position: relative;
  overflow: hidden;
}

.navbar-2 {
  z-index: 500;
  background-color: #0000;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: .7em;
  padding-left: .7em;
  padding-right: .7em;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.main-video {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.main-video.mobileshowinf {
  display: none;
}

.video-wrap {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.video-cover {
  background-image: linear-gradient(#57b6b257, #fff0 73%);
  position: absolute;
  inset: 0%;
}

.background-video-2 {
  height: 100%;
}

.container-hero-v1 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1440px;
  height: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

.horizontal-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 3.2rem;
  display: flex;
  position: relative;
}

.content-wrapper.hero-v1 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: auto;
  padding-bottom: 5px;
  display: flex;
  overflow: visible;
}

.content-wrapper.hero-v1.life {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  width: 44%;
}

.content-wrapper.hero-v1-copy {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  padding-bottom: 0;
  display: flex;
  overflow: visible;
}

.content-wrapper.hero-v1-copy:lang(ar) {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
}

.heading-h1 {
  z-index: 21;
  width: 100%;
  color: var(--light);
  margin-bottom: 0;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 100%;
  position: relative;
  overflow: hidden;
}

.heading-h1:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  overflow: visible;
}

.heading-h1.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 120%;
}

.heading-h1.arp {
  margin-bottom: .5rem;
  font-family: Swissra, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 120%;
}

.button-wrap {
  grid-column-gap: .8em;
  grid-row-gap: .8em;
  line-height: 160%;
  display: flex;
  overflow: visible;
}

.icon-circle {
  aspect-ratio: 1;
  background-color: var(--light);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 1.9em;
  height: auto;
  display: flex;
}

.icon-circle.livesa {
  background-color: var(--border);
}

.image-2 {
  width: 40%;
}

.body {
  background-color: #000;
}

.paragraph-wrap.hero-v1 {
  text-align: justify;
  width: 100%;
}

.paragraph {
  color: #fff;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: .9rem;
}

.paragraph:lang(ar), .paragraph.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .8rem;
}

.about {
  background-image: linear-gradient(360deg, #000000b8, #fff0), url('../images/ImagesBird.webp');
  background-position: 0 0, 100% 100%;
  background-size: auto, auto;
  border-top: 0 #57b6b2;
  border-bottom: 0 #57b6b2;
  border-radius: 0;
  margin-top: 0;
  padding: 0;
}

.about.home {
  background-image: linear-gradient(0deg, #000, #fff0), linear-gradient(#000000b8, #fff0), url('../images/img002_1img002.webp');
  background-position: 0 0, 0 0, 50% 100%;
  background-size: auto, auto, cover;
  height: 100vh;
  padding-left: 15vh;
  padding-right: 15vh;
  position: relative;
}

.about.homedescrption {
  background-image: linear-gradient(0deg, #00000057, #fff0), linear-gradient(#00000030, #fff0), url('../images/img001_1img001.webp');
  background-position: 0 0, 0 0, 50% 100%;
  background-size: auto, auto, cover;
  height: 100vh;
  padding-left: 15vh;
  padding-right: 15vh;
  position: relative;
}

.container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.heading {
  color: #57b6b2;
  text-align: center;
  margin-bottom: 20px;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
}

.heading:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
}

.heading.abotis {
  margin-bottom: 50px;
}

.heading.story-copy {
  color: var(--light);
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.3rem;
}

.heading.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 120%;
}

.utility-padding-all-4rem {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  display: flex;
}

.paragraph-32 {
  color: #e2c376;
  font-size: calc(.75vw + 1.5rem);
  line-height: 1.25em;
}

.paragraph-32.paragraph-16.utility-margin-bottom-2rem {
  color: #fff;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 15px;
  font-family: Poppins, sans-serif;
  font-size: .9rem;
  line-height: 1.7em;
  box-shadow: 0 2px 5px #fff3;
}

.paragraph-32.paragraph-16.utility-margin-bottom-2rem:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: .9rem;
}

.paragraph-32.paragraph-16.utility-margin-bottom-2rem.ar {
  font-family: Swissra, Arial, sans-serif;
}

.paragraph-32.paragraph-16.utility-margin-bottom-2remnew {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  width: 70%;
  margin-bottom: 10px;
  padding: 15px;
  font-family: Poppins, sans-serif;
  font-size: .9rem;
  line-height: 1.7em;
  box-shadow: 0 2px 5px #fff3;
}

.paragraph-32.paragraph-16.utility-margin-bottom-2remnew:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: .9rem;
}

.paragraph-32.paragraph-16.utility-margin-bottom-2remnew.ar {
  font-family: Swissra, Arial, sans-serif;
}

.utility-image-cover {
  object-fit: cover;
  width: 75%;
  height: 75%;
  position: relative;
  inset: 0%;
}

.grid-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-layout.desktop-3-column {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-layout.desktop-3-column.tablet-2-column.mobile-landscape-1-column.grid-gap-xs.utility-margin-bottom-4rem {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.services.pga {
  margin-bottom: 0;
}

.margin-70px {
  margin-top: 70px;
  margin-left: 0;
  margin-right: 0;
}

.grid-3-columns {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.first {
  border-radius: 10px;
}

.first.tables {
  display: none;
}

.text-wrapper {
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  text-decoration: none;
  display: flex;
}

.photo-line-animation {
  border-radius: 5px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.photo-line-animation.newanim, .photo-line-animation.newleft {
  border-radius: 10px;
}

.photo-line-animation.szmslife {
  max-width: 84%;
}

.project-title-flex {
  grid-column-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.photo {
  object-fit: cover;
  border-radius: 5px;
  width: 100vw;
  height: 300px;
}

.heading-overlay {
  z-index: 2;
  background-color: #57b6b2e6;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto;
  transform: translate(0%, 102%);
}

.heading-overlay.life {
  background-color: #f9a11b94;
}

.title-flex {
  flex-flow: column;
  height: 30px;
  display: flex;
  overflow: hidden;
}

.project-title {
  color: var(--background);
  text-transform: capitalize;
  margin-bottom: 0;
  font-family: "Bodoni 72 Book", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
}

.project-title:lang(ar), .project-title.arsub {
  font-family: Swissra, Arial, sans-serif;
  font-size: .9rem;
}

.third {
  border-radius: 10px;
}

.containerfooter {
  width: 100%;
  max-width: none;
  margin-top: auto;
  margin-left: 0;
  margin-right: 0;
  padding-left: 10vh;
  padding-right: 10vh;
}

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

.footer-flex-line.second {
  height: 4.9em;
  margin-top: 2em;
}

.footer-flex-line.third {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2.1rem;
}

.footer-title-wrapper.new {
  background-image: none;
  padding: 0 0 0;
}

.footer-title {
  color: #57b6b2;
  margin-bottom: 0;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.footer-title:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.footer-title.new {
  color: #57b6b2;
  padding-top: 0;
  font-size: 22px;
}

.footer-title.new.only-here {
  background-image: none;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: "07 Brother 1816", Arial, sans-serif;
}

.footer-title.new.only-here:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 21px;
}

.footer-title.new.only-here.ar {
  font-family: Swissra, Arial, sans-serif;
  font-weight: 700;
  line-height: 140%;
}

.footer-title.lift {
  color: var(--blue);
}

.footer-title.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.link-block {
  line-height: 100%;
  text-decoration: none;
}

.link-block.mobilehidde {
  display: none;
}

.line-animation-wrapper {
  width: 100%;
  height: .12em;
  display: flex;
}

.black-line {
  background-color: #3d8280;
  width: 0%;
}

.black-line.s {
  background-color: #57b6b2;
  width: 100%;
}

.black-line.s.life {
  background-color: #fff;
}

.black-line.s.life.here {
  background-color: var(--blue);
  color: var(--blue);
}

.black-line.s.top {
  background-color: var(--light);
}

.contact-email-link {
  background-color: var(--light);
  color: #000;
  border-radius: 10px;
  flex-flow: column;
  padding: .5em 1.4em;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.contact-email-link.livesa {
  background-color: #004467;
}

.email-footer-text-wrapper {
  grid-column-gap: .3em;
  grid-row-gap: .3em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  height: 1em;
  line-height: 1.3;
  display: flex;
}

.image-3 {
  filter: invert();
  width: .6em;
}

.image-3.location {
  filter: none;
}

.contact-block-text {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: .6em;
  line-height: 100%;
}

.contact-block-text.new {
  color: #fff;
  font-size: .5em;
  line-height: 100%;
}

.contact-block-text.new.added {
  padding: 0 0 0;
}

.contact-block-text.new.added:lang(ar), .contact-block-text.new.added.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .45em;
}

.email-footer-text-animation-wrapper {
  flex-flow: column;
  height: 1em;
  display: flex;
  overflow: hidden;
}

.divider {
  background-color: var(--blue);
  width: 100%;
  height: 2px;
  margin-top: 2.4em;
  margin-bottom: 2.4em;
}

.divider.samt {
  background-color: var(--light);
}

.footer-pages-box {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.footer-section-heading {
  color: var(--light);
  text-transform: capitalize;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: .8em;
  font-weight: 400;
}

.footer-section-heading:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: .7em;
  font-weight: 500;
}

.footer-section-heading.lifesamt {
  color: var(--blue);
  font-family: Poppins, sans-serif;
}

.footer-section-heading.lifesamt:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
}

.footer-section-heading.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .7em;
  font-weight: 500;
}

.footer-links-wrapper {
  grid-column-gap: 1em;
  grid-row-gap: .5px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.link-block-3 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.image-4 {
  height: 60%;
}

.client {
  background-image: linear-gradient(#0000, #57b6b230 50%, #fff0 102%);
  background-position: 0 0;
  border-top: 0 #57b6b2;
  border-bottom: 0 #57b6b2;
  border-radius: 0;
  margin-top: 0;
  padding: 10vh 15vh;
}

.servicesone {
  background-color: #000;
  background-image: radial-gradient(circle closest-side, #000, #57b6b230 54%, #fff0);
  border-top: 0 #57b6b2;
  border-bottom: 0 #57b6b2;
  border-radius: 0;
  margin-top: 0;
  padding: 10vh;
}

.logos-component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

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

.text-size-medium.text-weight-medium.caps {
  color: var(--background);
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 15px;
  font-family: Poppins, sans-serif;
  font-size: .9rem;
  line-height: 1.6em;
  box-shadow: 0 2px 5px #fff3;
}

.text-size-medium.text-weight-medium.caps:lang(ar), .text-size-medium.text-weight-medium.caps.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .8rem;
}

.goal {
  border-top: 0 #57b6b2;
  border-bottom: 0 #57b6b2;
  border-radius: 10px;
  margin-top: 0;
  padding: 10vh;
}

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

.grid-2-columns.life {
  grid-column-gap: 39px;
  grid-template-columns: .75fr 1fr;
  grid-auto-flow: row;
  place-items: center stretch;
}

.text-wrapper-1 {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.text-wrapper-1.new {
  width: 50vh;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.text-wrapper-1.new.onlyhere {
  padding: 0;
}

.text-wrapper-1.tablet {
  display: none;
}

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

.photonew.new {
  border-radius: 10px;
  padding: 0 0 0;
}

.photonew.full {
  object-fit: contain;
  border-radius: 10px;
}

.heading-2 {
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
}

.heading-2:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2rem;
}

.heading-2.newone {
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 116%;
}

.heading-2.newone:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 131%;
}

.heading-2.newone.ar {
  font-size: 1.5rem;
  line-height: 150%;
}

.heading-2.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.margin-30px {
  width: 100%;
  margin-top: 0;
}

.paragraph-80 {
  color: var(--background);
  font-family: Poppins, sans-serif;
  font-size: 1rem;
}

.paragraph-80.new {
  color: var(--background);
  text-align: justify;
  margin-bottom: 0;
  padding: 0 0 0;
  font-size: .9rem;
}

.paragraph-80.new:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
}

.paragraph-80.new.card.ar {
  padding: 5px;
  font-family: Swissra, Arial, sans-serif;
}

.paragraph-80.szmlife {
  color: #004467;
  text-align: justify;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 10px;
  font-size: .9rem;
  box-shadow: 0 2px 5px #0003;
}

.paragraph-80.szmlife:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: .8rem;
}

.paragraph-80.szmlife.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .8rem;
  font-weight: 700;
}

.project {
  border-top: 0 #57b6b2;
  border-bottom: 0 #57b6b2;
  border-radius: 10px;
  margin-top: 0;
  padding: 10vh;
}

.project.new {
  margin-top: 0;
  padding: 10vh;
}

.blog-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 5px;
  display: grid;
  box-shadow: 0 2px 5px #57b6b254;
}

.blog-grid.life {
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 4rem;
}

.blog-grid.life.newlife {
  margin-top: 2rem;
  padding: 16px;
  box-shadow: 0 2px 5px #0003;
}

.blog-grid.pagehere {
  grid-template-columns: 1fr 1fr 1fr;
  padding: 15px;
}

.text-wrapper-project {
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  text-decoration: none;
  display: flex;
  position: relative;
}

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

.blog-content.projectcontenct {
  justify-content: flex-start;
  align-items: flex-start;
}

.heading-3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
}

.heading-3:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1rem;
}

.heading-3.new {
  color: #004467;
  text-transform: capitalize;
  background-image: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0 0;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 1rem;
  line-height: 135%;
}

.heading-3.new:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: .85rem;
  font-weight: 500;
  line-height: 137%;
}

.heading-3.new.arlife {
  font-family: Swissra, Arial, sans-serif;
  font-size: .85rem;
  font-weight: 500;
}

.heading-3.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1rem;
  line-height: 130%;
}

.readmore-wrapper {
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: static;
}

.faq-item-icon-holder {
  z-index: 12;
  width: 1.3em;
  height: 1.3em;
  padding: .5em;
  position: relative;
}

.faq-item-line-1 {
  z-index: 40;
  background-color: var(--light);
  cursor: pointer;
  border-radius: 1em;
  width: .7em;
  height: .08px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item-line-2 {
  background-color: var(--light);
  width: .6em;
  height: .08em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)rotate(90deg);
}

.readmore-text {
  color: var(--light);
  font-family: Poppins, sans-serif;
  font-size: .8em;
}

.readmore-text:lang(ar), .readmore-text.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .7em;
}

.faq-answer {
  margin-bottom: .8em;
  overflow: hidden;
}

.paragraph-82 {
  color: var(--background);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: .8rem;
  overflow: hidden;
}

.paragraph-82:lang(ar), .paragraph-82.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .7rem;
}

.image-5 {
  object-fit: contain;
  width: 100%;
}

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

.body-2 {
  background-color: var(--background);
  background-image: none;
  background-position: 0 0;
  background-size: auto;
}

.paragraph-16 {
  color: #004467;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
}

.project-link-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 92%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.grid---ratio-1x2 {
  grid-column-gap: 3%;
  grid-row-gap: 3%;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 2fr;
  place-items: start;
  width: 100%;
}

.title-wrapper-sticky {
  grid-column-gap: 5vh;
  grid-row-gap: 5vh;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 36rem;
  display: flex;
  position: sticky;
  top: 8.5rem;
}

.blog-grid2 {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-grid2.life {
  grid-column-gap: 30px;
  border-radius: 10px;
  grid-template-columns: 1fr 1fr;
  width: 73%;
  margin-top: 1.5rem;
  padding: 16px;
  box-shadow: 0 2px 5px #0003;
}

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

.blog-grid3 {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-grid3.life {
  border-radius: 10px;
  margin-top: 1rem;
  padding: 16px;
  box-shadow: 0 2px 5px #0003;
}

.text-field-2 {
  max-width: 100%;
  min-height: 48px;
  color: var(--blue);
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1.5px solid #004467;
  margin-bottom: 0;
  padding: 8px 0;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
  transition: border .3s;
  display: block;
}

.text-field-2:hover, .text-field-2:active {
  border-bottom-color: #e2c376;
}

.text-field-2::placeholder {
  color: var(--blue);
}

.text-field-2:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
}

.text-field-2.ar {
  text-align: right;
  font-family: Swissra, Arial, sans-serif;
}

.contact-links {
  color: var(--blue);
  text-transform: uppercase;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
  text-decoration: none;
  transition: all .2s;
}

.contact-links:hover {
  opacity: .8;
  text-decoration: underline;
}

.contact-links:lang(ar), .contact-links.ar {
  font-family: Swissra, Arial, sans-serif;
  font-weight: 700;
}

.heading-h2-2 {
  color: var(--light);
  margin-bottom: 1.5rem;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1em;
}

.heading-h2-2:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1em;
}

.heading-h2-2.margin-bottom-8 {
  font-family: "Bodoni 72 Book", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
}

.heading-h2-2.margin-bottom-8.onlyhere {
  color: var(--border);
  font-family: "07 Brother 1816", Arial, sans-serif;
}

.heading-h2-2.margin-bottom-8.onlyhere:lang(ar), .heading-h2-2.margin-bottom-8.onlyhere.arlife {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.heading-h2-2.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.contact-grid {
  grid-column-gap: 6vw;
  grid-row-gap: 6vw;
  grid-template-rows: auto;
  grid-template-columns: 8fr 11fr;
  width: 100%;
  max-width: 104rem;
  margin-left: 0;
  margin-right: 0;
}

.form-2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  display: grid;
}

.form-block-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.field-label-2 {
  color: var(--blue);
  margin-bottom: .5rem;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.field-label-2:lang(ar), .field-label-2.ar {
  font-family: Swissra, Arial, sans-serif;
}

.paragraph-83 {
  color: var(--blue);
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4em;
}

.paragraph-83:lang(ar), .paragraph-83.ar {
  font-family: Swissra, Arial, sans-serif;
  font-weight: 700;
}

.success-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.contact-list-icon {
  color: #e2c376;
  width: 1.5rem;
  height: 1.5rem;
}

.contact-divider-line {
  background-color: var(--blue);
  width: 100%;
  height: 1.5px;
}

.contact-list {
  grid-column-gap: 1.4rem;
  grid-row-gap: 1.4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.success-message-2 {
  color: #fff;
  background-color: #ffffff0d;
  border: 1px solid #525252;
  border-radius: .5rem;
  width: 100%;
  height: 100%;
  min-height: 30vh;
  padding: 3vw;
  font-weight: 400;
  position: relative;
}

.form-input-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.conatct-card {
  background-color: #17161200;
  border: 1px solid #004467;
  border-radius: .5rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 3vw;
  display: flex;
  position: relative;
}

.contact-list-item {
  align-items: center;
  display: flex;
}

.primary-button {
  color: #fff;
  text-transform: uppercase;
  background-color: #004467;
  border: 1.5px solid #fff;
  border-radius: 6rem;
  justify-content: center;
  align-items: center;
  padding: .75rem 1.5rem;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4em;
  transition: color .4s, border .4s, background-color .4s;
  display: flex;
}

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

.primary-button:active {
  border-color: #d4d3d1;
}

.primary-button:focus {
  border-color: #a1a09c;
}

.primary-button:lang(ar), .primary-button.ar {
  font-family: Swissra, Arial, sans-serif;
}

.contact-wrapper {
  grid-column-gap: 1.5vw;
  grid-row-gap: 1.5vw;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.contact-list-icon-wrapper {
  color: #162b4c;
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.contact-list-icon-wrapper.ar {
  margin-left: 1rem;
  margin-right: 0;
}

.container-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 20px 0 2rem;
  padding-left: 10vh;
  padding-right: 10vh;
  position: relative;
}

.error-message-2 {
  background-color: var(--border);
  border: 0 solid #ca4949;
  border-radius: .5rem;
  margin-top: 1.5rem;
  padding: 1rem;
}

.paragraph-84 {
  color: var(--background);
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
}

.paragraph-84._80 {
  width: 73%;
  color: var(--background);
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
}

.paragraph-84._80:lang(ar), .paragraph-84._80.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .8rem;
}

.col1 {
  color: var(--light);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 3px 5px 6px 3px #57b6b24a;
}

.textarea-2 {
  color: #fff;
  background-color: #0f200f;
  border: 1px solid #fff;
  border-radius: 20px;
  min-height: 144px;
  padding: 24px;
  font-family: Thicccboi, sans-serif;
  font-size: 22px;
}

.textarea-2:hover {
  border-color: #626262;
}

.textarea-2:focus {
  border-color: #c5c5c5;
}

.textarea-2.eng {
  border-width: 0 0 1px;
  border-bottom-color: var(--light);
  color: var(--light);
  background-color: #fff0;
  border-radius: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
}

.textarea-2.eng:hover {
  border-color: var(--light);
}

.textarea-2.eng:active, .textarea-2.eng::placeholder {
  color: var(--light);
}

.textarea-2.eng:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1.3rem;
}

.textarea-2.eng.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1.4rem;
}

.textarea-2.eng.ar::placeholder {
  font-size: 1rem;
}

.text-field-3 {
  color: #fff;
  background-color: #0f200f;
  border: 1px solid #fff;
  border-radius: 20px;
  min-height: 72px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 16px 24px;
  font-family: Thicccboi, sans-serif;
  font-size: 22px;
}

.text-field-3:hover {
  border-color: #626262;
}

.text-field-3:focus {
  border-color: #c5c5c5;
}

.text-field-3::placeholder {
  font-size: 20px;
}

.text-field-3.en {
  border-width: 0 0 1px;
  border-color: var(--light);
  color: var(--light);
  background-color: #fff0;
  border-radius: 0;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
}

.text-field-3.en:hover {
  border-color: var(--light);
}

.text-field-3.en:active {
  color: var(--light);
  background-color: #fff0;
}

.text-field-3.en::placeholder {
  color: var(--light);
}

.text-field-3.en:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1rem;
}

.text-field-3.en.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1.4rem;
}

.text-field-3.en.ar:active {
  font-size: 1.4rem;
}

.text-field-3.en.ar::placeholder {
  font-size: 1rem;
}

.grid-2-columns-2 {
  grid-column-gap: 28px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.mg-bottom-48px {
  color: #fff;
  margin-top: 20px;
  font-size: 1.1em;
}

.mg-bottom-48px.contact {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
}

.mg-bottom-48px.contact:lang(ar), .mg-bottom-48px.contact.ar {
  font-family: Swissra, Arial, sans-serif;
  font-weight: 700;
}

.container-4 {
  max-width: 1364px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.success-message-3 {
  background-color: #ddd0;
  min-height: 458px;
}

.grid {
  grid-column-gap: 28px;
  grid-row-gap: 18px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  place-items: center stretch;
}

.top-section {
  z-index: 1;
  padding: 8vh 0;
  position: relative;
  overflow: hidden;
}

.text-block-8 {
  color: #fff;
}

.text-block-8.eng.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 18px;
}

.submit-button-2 {
  color: #fff;
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 100px;
  margin-top: 20px;
  padding: 22px 45px;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94);
  display: inline-block;
}

.submit-button-2:hover {
  color: #0f200f;
  background-color: #fff;
}

.submit-button-2.eng {
  border-color: var(--light);
  color: var(--light);
  border-radius: 10px;
  padding: 10px 20px;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.submit-button-2.eng:hover {
  background-color: var(--light);
  color: var(--background);
}

.submit-button-2.eng:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.submit-button-2.eng.ar {
  font-family: Swissra, Arial, sans-serif;
}

.text-block-9 {
  color: #0f200f;
}

.text-block-9.eng.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 18px;
}

.col2 {
  width: 100%;
  max-width: 563px;
}

.approved {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 278px;
  display: flex;
}

.text-block-10 {
  color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-85 {
  color: var(--light);
  text-align: center;
  margin-bottom: 0;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 2.5rem;
}

.paragraph-85:lang(ar), .paragraph-85.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.section-top-2 {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 72vh;
  padding: 0 0 0;
  display: flex;
  position: relative;
}

.image-6 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: static;
}

.element2 {
  margin-top: 2rem;
  margin-bottom: 0;
}

.div-block-home {
  z-index: 3;
  background-image: linear-gradient(#000000b3, #fff0), linear-gradient(0deg, #000, #fff0);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  display: flex;
  position: absolute;
  bottom: 0;
}

.div-block-home.onlyhere {
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
}

.div-block-home.bgcolor {
  background-image: linear-gradient(#000000b3, #fff0), linear-gradient(0deg, #00000040, #fff0);
}

.heading-hero-b-3 {
  color: #fff;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 400;
  display: inline-block;
}

.heading-hero-b-3.en {
  color: var(--light);
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
}

.heading-hero-b-3.en:lang(ar), .heading-hero-b-3.en.ar {
  font-family: Swissra, Arial, sans-serif;
}

.heading-5 {
  text-align: center;
  margin-bottom: 100px;
  font-size: 3rem;
  font-weight: 400;
}

.heading-5.eng {
  margin-bottom: 40px;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
}

.heading-5.eng:lang(ar), .heading-5.eng.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.grid-2-columns-3 {
  grid-column-gap: 28px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.grid-2-columns-3.newone {
  grid-template-columns: .5fr 1fr;
}

.grid-2-columns-3.onlyhrere {
  grid-template-columns: 1fr .5fr;
}

.grid-2-columns-3.contecatus-page {
  grid-column-gap: 28px;
  grid-template-columns: .75fr 1fr;
}

.div-block-4 {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.div-block-4.ar {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: flex-end start;
  display: flex;
}

.text-block-5 {
  margin-bottom: 10px;
  text-decoration: none;
}

.text-block-5.eng {
  color: var(--light);
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.text-block-5.eng:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.text-block-5.eng.ar {
  text-align: right;
  font-family: Swissra, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.link-block-4 {
  color: #fff;
  text-align: left;
  width: 100%;
  text-decoration: none;
}

.container-5 {
  max-width: 1364px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.container-5.second {
  margin-top: 70px;
}

.col2-2 {
  width: 100%;
  max-width: 564px;
}

.col2-2.new {
  justify-content: center;
  align-items: center;
  max-width: 533px;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.col2-2.new.bottom {
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.col2-2.new.bottom.ope.onlyhere {
  max-width: none;
  padding: 0;
}

.text-block-6 {
  font-size: 24px;
  text-decoration: none;
}

.text-block-6.eng {
  color: var(--background);
  font-family: Poppins, sans-serif;
  font-size: .8rem;
  display: flex;
}

.text-block-6.eng:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: .9rem;
}

.text-block-6.eng.ar {
  text-align: right;
  font-family: Swissra, Arial, sans-serif;
  font-size: .9rem;
}

.bg-gradient {
  background-color: #0000004d;
  background-image: linear-gradient(#0000, #000000f2 100%, #000);
  position: absolute;
  inset: 0%;
}

.content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 88em;
  padding: 0 1.9em 1.9em;
  display: flex;
}

.heading-project-2 {
  font-variation-settings: "wght" 10, "wdth" 0;
  text-transform: uppercase;
  margin-bottom: .02em;
  font-size: 13em;
  font-weight: 100;
  line-height: .8em;
}

.heading-project-2.large {
  font-family: "Bodoni 72 Book", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1em;
}

.bg-img-full {
  z-index: -1;
  background-image: url('../images/CorporateImage_1CorporateImage.webp'), linear-gradient(#000, #000);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  background-attachment: fixed, scroll;
  position: absolute;
  inset: 0%;
}

.section-top-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 13em;
  padding-bottom: 10em;
  display: flex;
  position: relative;
}

.section-top-3.full {
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  padding-top: 0;
  padding-bottom: 0;
}

.bold-text-2 {
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1em;
}

.bold-text-2:lang(ar), .bold-text-2.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.new {
  background-image: linear-gradient(#0000, #57b6b230 50%, #fff0);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 10vh;
  display: flex;
}

.paragraph-87 {
  color: var(--background);
  text-align: justify;
  border-radius: 10px;
  padding: 15px;
  font-family: Poppins, sans-serif;
  font-size: .9rem;
  box-shadow: 0 2px 5px #57b6b230;
}

.paragraph-87:lang(ar), .paragraph-87.ar {
  font-family: Swissra, Arial, sans-serif;
}

.text-error {
  color: red;
  line-height: 1.4em;
}

.text-error.ar {
  font-family: Swissra, Arial, sans-serif;
}

.text-success {
  color: #00aa2d;
  line-height: 1.4em;
}

.text-success.ar {
  font-family: Swissra, Arial, sans-serif;
}

.success-message-4 {
  background-color: #00aa2d26;
  padding: 1.5em;
}

.text-field-4 {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--light);
  height: 2.6em;
  color: var(--light);
  background-color: #0000;
  margin-bottom: 0;
  padding: 0 0 .6em;
  font-family: Poppins, sans-serif;
  font-size: 1.12em;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field-4:focus {
  border-bottom-color: #fff;
}

.text-field-4::placeholder {
  color: var(--light);
  font-family: Poppins, sans-serif;
  font-size: .9em;
}

.text-field-4:lang(ar), .text-field-4.ar {
  text-align: right;
  font-family: Swissra, Arial, sans-serif;
}

.textarea-3 {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--light);
  color: #fff;
  background-color: #0000;
  width: 100%;
  min-width: 100%;
  min-height: 7em;
  max-height: 20em;
  margin-bottom: 0;
  padding: 0 0 .6em;
  font-family: Poppins, sans-serif;
  font-size: 1.12em;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.textarea-3:focus {
  border-bottom-color: #fff;
}

.textarea-3::placeholder {
  color: var(--light);
  font-family: Poppins, sans-serif;
  font-size: .9em;
}

.textarea-3:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
}

.textarea-3.ar {
  text-align: right;
  font-family: Swissra, Arial, sans-serif;
}

.error-message-3 {
  background-color: #cf000026;
  margin-top: 1.5em;
  padding: 1.5em;
}

.link-2 {
  color: var(--background);
  text-decoration: none;
  transition: color .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s cubic-bezier(.25, .46, .45, .94);
  box-shadow: inset 0 -1px #fff;
}

.link-2:hover {
  color: #000;
  box-shadow: inset 0 -24px #fff;
}

.block-field {
  grid-column-gap: 2em;
  flex-flow: column;
  margin-bottom: .6em;
  display: flex;
}

.description {
  max-width: 30em;
  color: var(--background);
  text-align: center;
  letter-spacing: 0;
  text-transform: capitalize;
  margin-top: 2.6em;
  font-family: Poppins, sans-serif;
  font-size: .94em;
  font-weight: 400;
  line-height: 1.7em;
}

.description:lang(ar), .description.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .9em;
}

.form-block-3 {
  width: 100%;
  max-width: 43em;
  margin-top: 2em;
  margin-bottom: 0;
}

.section-top-4 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 13em;
  padding-bottom: 10em;
  display: flex;
  position: relative;
}

.section-top-4.center {
  flex: 1;
  justify-content: center;
  width: 100%;
  margin-bottom: 70px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.paragraph-88 {
  color: var(--light);
  font-family: Poppins, sans-serif;
  font-size: 16px;
}

.paragraph-88:lang(ar), .paragraph-88.ar {
  font-family: Swissra, Arial, sans-serif;
}

.bg-video-work-3 {
  object-fit: cover;
  object-position: 50% 26%;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 18vw;
  display: flex;
}

.lightbox-link-3 {
  border-radius: 5px;
  width: 100%;
  text-decoration: none;
  position: relative;
}

.grid-work-3 {
  grid-column-gap: .1em;
  grid-row-gap: .1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 10vh;
  margin-bottom: 10vh;
  padding-left: 10vh;
  padding-right: 10vh;
  display: grid;
}

.bg-img-full-1 {
  z-index: -1;
  background-image: url('../images/Transition.webp'), linear-gradient(#000, #000);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  background-attachment: fixed, scroll;
  position: absolute;
  inset: 0%;
}

.bg-img-full-2 {
  z-index: -1;
  background-image: url('../images/Table_1Table.webp'), linear-gradient(#000, #000);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  background-attachment: fixed, scroll;
  position: absolute;
  inset: 0%;
}

.bg-img-full-3 {
  z-index: -1;
  background-image: url('../images/SamFlag.webp'), linear-gradient(#000, #000);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  background-attachment: fixed, scroll;
  position: absolute;
  inset: 0%;
}

.bg-img-full-4 {
  z-index: -1;
  background-image: url('../images/SocialEttiquet_1SocialEttiquet.webp'), linear-gradient(#000, #000);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  background-attachment: fixed, scroll;
  position: absolute;
  inset: 0%;
}

.bg-img-full-5 {
  z-index: -1;
  background-image: url('../images/SamGift_1SamGift.webp'), linear-gradient(#000, #000);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  background-attachment: fixed, scroll;
  position: absolute;
  inset: 0%;
}

.paragraph-89 {
  color: var(--background);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.7em;
}

.paragraph-89:lang(ar), .paragraph-89.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .8rem;
}

.card {
  grid-column-gap: 1.25vw;
  grid-row-gap: 1.25vw;
  background-color: #57b6b200;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  box-shadow: 0 2px 5px #57b6b269;
}

.card.services {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  background-color: #57b6b200;
  border-radius: 10px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2vw;
  box-shadow: 0 2px 5px #57b6b269;
}

.skills-grid {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  perspective: 1000px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  position: relative;
  transform: perspective(1000px);
}

.container-6 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.section-5 {
  background-image: radial-gradient(circle, #57b6b23d, #57b6b200);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10vh;
  position: relative;
}

.skill-title {
  color: var(--background);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3em;
}

.skill-title:lang(ar), .skill-title.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.section-topsections {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  padding: 0 0 0;
  display: flex;
  position: relative;
}

.image-6-new {
  object-fit: cover;
  object-position: 50% 86%;
  width: 100%;
  height: 100%;
  position: static;
}

.image-6-new.onlyhere {
  object-fit: cover;
  object-position: 50% 50%;
}

.element3 {
  width: 50%;
  margin-top: 2rem;
}

.text-block-2 {
  color: #fff;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: .9rem;
  font-weight: 400;
}

.text-block-2:lang(ar), .text-block-2.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .8rem;
}

.image-5-hight {
  object-fit: contain;
  width: 100%;
}

.image-5-hight.only {
  object-fit: cover;
  height: 100%;
}

.image-5-hight.only.life {
  padding-top: 0;
}

.tables {
  display: none;
}

.paragraph-90 {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  width: 70%;
  color: var(--background);
  text-align: center;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 15px;
  font-family: Poppins, sans-serif;
  font-size: .9rem;
  box-shadow: 0 2px 5px #fff3;
}

.paragraph-90:lang(ar), .paragraph-90.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .8rem;
}

.div-block-6 {
  background-color: #57b6b200;
  border-radius: 5px;
  padding: 30px 20px;
}

.div-block-6.onlyabout {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-14 {
  color: #e7e7e7;
  margin-top: 0;
  margin-bottom: 0;
  font-size: calc(.6vw + .65rem);
  font-weight: 400;
  line-height: 1.4em;
}

.paragraph-91 {
  color: #fff;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.7em;
}

.paragraph-91:lang(ar), .paragraph-91.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .8rem;
}

.avatar {
  background-color: #fff;
  border-radius: 100rem;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.flex-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  display: flex;
}

.flex-layout.y-center {
  align-items: center;
}

.flex-layout.y-center.flex-gap-xs.utility-margin-bottom-1rem {
  grid-column-gap: 1.3rem;
  grid-row-gap: 1.3rem;
  margin-bottom: 20px;
}

.card-body {
  border-radius: 10px;
  height: 100%;
  padding: 2rem;
  box-shadow: 0 2px 5px #57b6b269;
}

.bold-text-3 {
  font-family: "Bodoni 72 Book", sans-serif;
}

.bold-text-3.newone {
  color: var(--background);
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.bold-text-3.newone:lang(ar), .bold-text-3.newone.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1.1rem;
}

.headingfor {
  text-align: center;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 100%;
}

.headingfor:lang(ar) {
  color: #57b6b2;
  text-align: right;
}

.headingfor.ar {
  text-align: left;
  font-family: Swissra, Arial, sans-serif;
}

.bold-text-4 {
  font-size: 1.1rem;
}

.bold-text-4:lang(ar) {
  color: #57b6b2;
  font-family: Swissra, Arial, sans-serif;
  font-size: 1rem;
}

.copy-this-entire-section {
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: hidden;
}

.main-container {
  width: 1250px;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}

.brand-logo-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.client-logo-slider-wrapper {
  flex: none;
  width: 100%;
  display: flex;
}

.client-logo-slider {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  flex: none;
  display: flex;
}

.items {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  flex: none;
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
}

.item {
  filter: invert(0%);
  width: 140px;
}

.item.inver {
  filter: invert();
}

.empowering {
  background-image: linear-gradient(#0000, #57b6b230 50%, #fff0);
  background-position: 0 0;
  border-top: 0 #57b6b2;
  border-bottom: 0 #57b6b2;
  border-radius: 0;
  margin-top: 0;
  padding: 10vh 15vh;
}

.empoweringsection {
  justify-content: space-between;
  display: flex;
}

.s1 {
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  display: flex;
  box-shadow: 0 2px 5px #fff3;
}

.serviceheading {
  margin-bottom: 0;
  padding: 30px;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.serviceheading:lang(ar), .serviceheading.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.paragraph-92 {
  color: var(--background);
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Poppins, sans-serif;
  font-size: .9rem;
}

.paragraph-92:lang(ar), .paragraph-92.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .8rem;
}

.button-2 {
  background-color: var(--light);
  color: #fff;
  border-radius: 4px;
  padding-top: 13px;
  padding-bottom: 15px;
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 1em;
  line-height: 100%;
}

.button-2:lang(ar), .button-2.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: .9em;
  font-weight: 500;
}

.image-7 {
  max-width: 30%;
  position: relative;
  inset: 0% 0% auto;
}

.image-7.mobileonly {
  display: none;
}

.div-block-8 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 30%;
  padding-top: 5.4rem;
  display: flex;
}

.ourstory {
  background-image: linear-gradient(360deg, #000000b8, #fff0), url('../images/ImagesBird.webp');
  background-position: 0 0, 100% 100%;
  background-size: auto, auto;
  border-top: 0 #57b6b2;
  border-bottom: 0 #57b6b2;
  border-radius: 0;
  margin-top: 0;
  padding: 0;
}

.ourstory.home {
  background-image: linear-gradient(0deg, #000, #fff0), linear-gradient(#000000b8, #fff0), url('../images/img009_1img009.webp');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, cover;
  height: 100vh;
  padding-left: 15vh;
  padding-right: 15vh;
  position: relative;
}

.div-block-9 {
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 15px;
  display: flex;
  box-shadow: 2px 4px 5px 3px #57b6b230;
}

.dynamic-date {
  color: var(--background);
  font-family: Poppins, sans-serif;
  font-size: .9rem;
}

.date {
  margin-bottom: 10px;
  font-family: Alfont Com Alfont Com Dg Ghareeb Reg;
  font-size: 1.5rem;
}

.div-block-10 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  display: flex;
}

.videolife {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.video {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.heading-h1-2 {
  color: #fff;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 100%;
  overflow: hidden;
}

.heading-h1-2.life {
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-size: 3rem;
}

.heading-h1-2.life:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 130%;
}

.heading-h1-2.life.ar {
  font-family: Swissra, Arial, sans-serif;
  font-weight: 700;
  line-height: 134%;
}

.horizontal-wraplife {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.horizontal-wraplife:lang(ar) {
  justify-content: center;
  align-items: flex-end;
}

.horizontal-wraplife.ar {
  justify-content: flex-end;
  align-items: flex-end;
}

.life {
  color: #fff;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
}

.life:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.life.ar {
  font-family: Swissra, Arial, sans-serif;
  font-weight: 700;
}

.containerlife {
  max-width: 1440px;
  height: 100%;
  padding: 100px 100px 80px;
  display: flex;
}

.containerlife.samtlife {
  justify-content: space-between;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-left: 10vh;
  padding-right: 10vh;
}

.bold-text-8, .bold-text-9 {
  color: var(--background);
}

.image-8 {
  border-radius: 10px;
}

.heading-6 {
  font-family: "07 Brother 1816", Arial, sans-serif;
  font-weight: 400;
}

.heading-6:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
  font-size: 43px;
}

.heading-7 {
  font-family: "07 Brother 1816", Arial, sans-serif;
}

.heading-7:lang(ar) {
  font-family: Swissra, Arial, sans-serif;
}

.heading-7.ar {
  font-family: Swissra, Arial, sans-serif;
  font-size: 35px;
  line-height: 126%;
}

.text-span-3, .text-span-4, .text-span-5, .text-span-6 {
  color: #cca675;
}

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

.div-block-12 {
  display: flex;
}

@media screen and (min-width: 1440px) {
  .overflow.home {
    margin-bottom: 0;
  }

  .section.about.open.thispart {
    justify-content: center;
    align-items: center;
  }

  .section.newonehere {
    background-image: none;
    background-position: 0 0;
  }

  .utility-page-wrap {
    padding-top: 26vh;
  }

  .hero-c {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
  }

  .heading-hero-c {
    font-size: 2.7rem;
  }

  .heading-top {
    color: var(--light);
    font-size: 2.3rem;
  }

  .nav-link-2 {
    margin-left: auto;
  }

  .nav-2 {
    align-items: center;
  }

  .nav-text {
    font-size: .85em;
  }

  .nav-text.nn {
    font-size: .6em;
  }

  .main-video {
    max-width: 100%;
    min-height: 100vh;
  }

  .video-wrap {
    object-fit: cover;
  }

  .container-hero-v1 {
    max-width: 1600px;
  }

  .horizontal-wrap {
    padding-top: 1rem;
  }

  .heading-h1 {
    font-size: 3rem;
  }

  .icon-circle {
    width: 2.5em;
  }

  .image-2 {
    filter: none;
  }

  .body {
    background-color: #000;
  }

  .about {
    padding: 15vh;
  }

  .about.homedescrption {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 4vh;
    display: flex;
  }

  .container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .heading {
    color: var(--light);
    font-size: 2.5rem;
  }

  .heading.story-copy {
    color: var(--light);
  }

  .utility-padding-all-4rem {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-bottom: 0;
  }

  .paragraph-32.paragraph-16.utility-margin-bottom-2rem, .paragraph-32.paragraph-16.utility-margin-bottom-2remnew {
    font-size: 1rem;
  }

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

  .project-title {
    font-size: 1.2rem;
  }

  .footer-flex-line.second {
    height: 5.4em;
  }

  .footer-title-wrapper.new {
    background-image: none;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-title.new.only-here {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-email-link {
    padding-top: .7em;
    padding-bottom: .7em;
  }

  .footer-pages-box {
    grid-column-gap: .6em;
    grid-row-gap: .6em;
  }

  .footer-links-wrapper {
    grid-row-gap: 3px;
  }

  .client {
    padding-top: 10vh;
    padding-left: 15vh;
    padding-right: 15vh;
  }

  .servicesone {
    padding-left: 15vh;
    padding-right: 15vh;
  }

  .text-size-medium.text-weight-medium.caps {
    color: var(--background);
    font-size: 1rem;
    line-height: 1.5em;
    box-shadow: 0 2px 5px #fff3;
  }

  .grid-2-columns {
    grid-column-gap: 52px;
    grid-template-columns: .75fr 1fr;
  }

  .text-wrapper-1.new {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .photonew {
    height: 400px;
  }

  .photonew.new {
    height: auto;
  }

  .photonew.full {
    object-fit: contain;
    width: 32vw;
    height: auto;
  }

  .photonew.pa {
    object-fit: contain;
    border-radius: 10px;
    width: auto;
    height: auto;
  }

  .photonew.full-copy {
    object-fit: contain;
  }

  .heading-2 {
    font-size: 2.5rem;
  }

  .paragraph-80 {
    font-size: .9rem;
  }

  .paragraph-80.new {
    color: var(--background);
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 1rem;
  }

  .blog-grid.pagehere {
    padding: 15px;
  }

  .heading-3 {
    font-size: 1.2rem;
  }

  .heading-3.new {
    font-size: 1.1rem;
    line-height: 110%;
  }

  .paragraph-82 {
    font-size: .8rem;
  }

  .blog-grid2.life, .blog-grid3.life {
    margin-top: 2rem;
  }

  .heading-h2-2, .heading-h2-2.margin-bottom-8.onlyhere {
    font-size: 2.3rem;
  }

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

  .paragraph-84._80 {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .textarea-2.eng, .text-field-3.en {
    font-size: 20px;
  }

  .grid-2-columns-2 {
    grid-template-columns: 1.25fr 1fr;
    place-items: center stretch;
  }

  .container-4 {
    margin-left: 0;
    margin-right: 0;
  }

  .paragraph-85 {
    font-size: 2.9rem;
  }

  .element2 {
    margin-top: 2rem;
  }

  .div-block-home {
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }

  .heading-hero-b-3.en {
    font-size: 1.9rem;
  }

  .heading-5.eng {
    font-family: "Bodoni 72 Book", sans-serif;
    font-size: 2.3rem;
  }

  .grid-2-columns-3 {
    place-items: center stretch;
  }

  .div-block-4 {
    grid-template-rows: auto;
  }

  .text-block-5 {
    font-size: 24px;
  }

  .col2-2.new.bottom {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .text-block-6 {
    font-size: 26px;
  }

  .text-block-6.eng {
    text-align: center;
    font-size: .9rem;
  }

  .content {
    position: relative;
  }

  .bold-text-2 {
    font-size: 2.3rem;
  }

  .bold-text-2.ar {
    font-size: 2.2rem;
  }

  .new {
    background-image: linear-gradient(#0000, #57b6b230 50%, #fff0);
    padding: 10vh;
  }

  .paragraph-87 {
    font-size: .9rem;
  }

  .text-field-4, .textarea-3 {
    font-size: 1em;
  }

  .grid-work-3 {
    padding-left: 10vh;
    padding-right: 10vh;
  }

  .paragraph-89 {
    font-size: 1rem;
    line-height: 1.6em;
  }

  .skill-title {
    margin-bottom: 0;
    font-size: 1.3rem;
  }

  .element3 {
    margin-top: 2rem;
  }

  .text-block-2 {
    font-size: .9rem;
  }

  .paragraph-91 {
    font-size: 1rem;
  }

  .empowering {
    background-image: linear-gradient(#0000, #57b6b230 50%, #fff0);
    background-position: 0 0;
    padding-top: 10vh;
    padding-left: 15vh;
    padding-right: 15vh;
  }

  .image-7 {
    margin-left: 5vh;
  }

  .div-block-8 {
    padding-top: 9rem;
  }

  .ourstory {
    padding: 15vh;
  }

  .videolife {
    object-fit: cover;
  }

  .video {
    max-width: 100%;
    min-height: 100vh;
  }

  .heading-h1-2 {
    font-size: 70px;
  }

  .containerlife {
    max-width: 1600px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 22px;
  }

  .overflow {
    margin-bottom: 0;
  }

  .section {
    padding: 0;
  }

  .section.buttn-section {
    padding-left: 5vh;
    padding-right: 5vh;
  }

  .section.about.open.lastpart.hereonly {
    padding: 5vh;
  }

  .section.about.open.aboutus {
    padding: 8vh 5vh 5vh;
  }

  .section.about.open.thispart, .section.contactus {
    padding-left: 5vh;
    padding-right: 5vh;
  }

  .section-footer.life {
    min-height: 40vh;
  }

  .lightbox-link-b {
    height: 25vw;
  }

  .section-hero-c {
    padding-top: 220px;
  }

  .hero-c {
    grid-column-gap: 3vw;
    grid-row-gap: 3vw;
  }

  .heading-hero-c {
    font-size: 2.1rem;
  }

  .heading-top {
    margin-bottom: 0;
    font-size: 1.7rem;
  }

  .heading-top.new {
    padding-top: 0;
  }

  .heading-work-c {
    text-shadow: 0 50px 0 var(--light);
    font-size: 50px;
  }

  .link-contact-a {
    padding: 30px;
  }

  .heading-contact-c {
    text-shadow: 0 90px 0 var(--light);
    font-size: 90px;
  }

  .brand-2 {
    display: none;
  }

  .nav-link-2 {
    text-align: center;
    width: 100%;
  }

  .nav-link-2.nn, .nav-link-2.nn-copy-copy {
    width: auto;
    padding-bottom: 0;
    padding-left: .5em;
    padding-right: .5em;
  }

  .nav-link-2.nn-copy-copy, .nav-link-2.nn-copy-copy-copy, .nav-link-2.nn-copy-copy, .nav-link-2.nn-copy-copy-copy, .nav-link-2.nn-copy-copy-copy {
    padding-bottom: 0;
    padding-left: .5em;
    padding-right: .5em;
  }

  .nav-2 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-menu-2 {
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background-color: #70707033;
    border-radius: 1em;
    margin-top: .7em;
    margin-left: 0;
    margin-right: 0;
    padding-top: .7em;
    padding-bottom: .7em;
  }

  .brand-mobile {
    display: block;
  }

  .brand-mobile:lang(ar), .brand-mobile.w--current:lang(ar), .brand-mobile.ar.w--current {
    margin-left: auto;
    margin-right: 0;
  }

  .logo-2.mobile {
    height: 2.3em;
  }

  .nav-text {
    font-family: Poppins, sans-serif;
    font-size: .9em;
    font-weight: 400;
  }

  .nav-text.nn {
    margin-top: .125em;
    margin-bottom: .125em;
    font-size: .5em;
  }

  .nav-text.nn.liveher {
    font-size: .5em;
  }

  .nav-text.lift {
    font-family: Poppins, sans-serif;
    font-size: .9em;
    font-weight: 400;
  }

  .grid-navbar {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .menu-button-2 {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: #70707033;
    border-radius: 100%;
    transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
  }

  .menu-button-2.w--open {
    background-color: #70707066;
    border-radius: 100%;
  }

  .menu-icon {
    color: var(--border);
  }

  .menu-icon.samt {
    color: var(--light);
  }

  .container-hero-v1 {
    justify-content: center;
    align-items: center;
    margin-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .horizontal-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    padding-top: 2rem;
  }

  .content-wrapper.hero-v1.life {
    padding-top: 100px;
  }

  .heading-h1 {
    font-size: 2.5rem;
  }

  .button-wrap {
    grid-column-gap: .8em;
    grid-row-gap: .8em;
  }

  .icon-circle {
    width: 1.8em;
  }

  .icon-circle.livesa {
    width: 1.9em;
  }

  .image-2 {
    width: 46%;
  }

  .paragraph-wrap.hero-v1 {
    width: 94%;
  }

  .paragraph {
    font-size: .8rem;
  }

  .about {
    padding-bottom: 0;
  }

  .about.home, .about.homedescrption {
    padding-left: 5vh;
    padding-right: 5vh;
  }

  .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .heading {
    font-size: 1.7rem;
  }

  .heading.story-copy {
    font-size: 2rem;
  }

  .utility-padding-all-4rem {
    padding-right: 0;
  }

  .paragraph-32.paragraph-16.utility-margin-bottom-2rem {
    font-size: .9rem;
  }

  .paragraph-32.paragraph-16.utility-margin-bottom-2remnew {
    font-size: .8rem;
  }

  .grid-layout.desktop-3-column.tablet-1-column.grid-gap-s {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    place-items: start end;
  }

  .grid-layout.desktop-3-column.tablet-2-column.mobile-landscape-1-column.grid-gap-xs.utility-margin-bottom-4rem {
    grid-template-columns: 1fr;
  }

  .margin-70px {
    margin-top: 60px;
  }

  .margin-70px.serviceher {
    margin-top: 0;
  }

  .grid-3-columns {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }

  .grid-3-columns.onlyhere {
    margin-top: 16px;
  }

  .first.tables {
    display: block;
  }

  .first.hidden {
    display: none;
  }

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

  .photo-line-animation.newanim {
    justify-content: flex-start;
    align-items: center;
  }

  .photo-line-animation.newleft {
    justify-content: flex-end;
    align-items: center;
  }

  .project-title {
    font-size: 1.1rem;
  }

  .containerfooter {
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 5vh;
    padding-right: 5vh;
  }

  .footer-flex-line.second {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
  }

  .footer-title {
    font-size: 1.6rem;
  }

  .footer-title.new {
    font-size: 20px;
  }

  .footer-title.lift {
    font-size: 1.5rem;
  }

  .black-line.s {
    height: 1px;
  }

  .contact-email-link {
    padding-left: .5em;
    padding-right: .5em;
  }

  .divider {
    height: 1px;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }

  .footer-links-wrapper {
    grid-column-gap: 0em;
    grid-row-gap: 0px;
  }

  .link-block-3.w--current {
    justify-content: center;
    align-items: flex-end;
    display: flex;
  }

  .image-4 {
    height: 44%;
  }

  .client, .servicesone {
    padding: 8vh 5vh 5vh;
  }

  .servicesone.service-page {
    padding-top: 5vh;
  }

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

  .text-size-medium.text-weight-medium.caps {
    font-size: .9rem;
    line-height: 1.2;
  }

  .goal {
    padding: 8vh 5vh 5vh;
  }

  .grid-2-columns, .grid-2-columns.life {
    grid-template-columns: 1fr;
  }

  .text-wrapper-1 {
    display: none;
  }

  .text-wrapper-1.new {
    width: 80%;
  }

  .text-wrapper-1.new.tablet {
    padding: 0;
  }

  .text-wrapper-1.tablet {
    display: flex;
  }

  .text-wrapper-1.all {
    display: block;
  }

  .photonew {
    width: 70%;
    max-width: none;
    height: auto;
  }

  .photonew.new {
    width: 100%;
    padding-top: 0;
  }

  .photonew.full {
    width: 100%;
    height: auto;
  }

  .photonew.pa {
    width: 56%;
  }

  .photonew.pa.newone {
    width: 100%;
  }

  .photonew.full-copy {
    width: 100%;
    height: 100%;
  }

  .heading-2 {
    font-size: 1.7rem;
  }

  .heading-2.newone {
    font-size: 1.4rem;
    line-height: 110%;
  }

  .paragraph-80 {
    font-size: .9rem;
  }

  .paragraph-80.new {
    font-size: .9rem;
    line-height: 1.2;
  }

  .paragraph-80.new.card.ar {
    line-height: 1.5;
  }

  .paragraph-80.szmlife {
    font-size: .8rem;
  }

  .project {
    padding: 8vh 5vh 5vh;
  }

  .project.new {
    padding: 0 5vh 5vh;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
    padding: 15px;
  }

  .blog-grid.life {
    margin-top: 3rem;
  }

  .blog-grid.life.newlife.newone {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid.pagehere {
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .text-wrapper-project {
    width: auto;
  }

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

  .heading-3 {
    font-size: 1.1rem;
  }

  .heading-3.new {
    padding-top: 0;
    font-size: .9rem;
  }

  .faq-item-line-1 {
    width: .6em;
  }

  .faq-item-line-2 {
    width: .5em;
  }

  .readmore-text {
    font-size: .7em;
  }

  .paragraph-82 {
    font-size: .7rem;
  }

  .grid---ratio-1x2 {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 8fr;
  }

  .title-wrapper-sticky {
    position: relative;
    top: 0;
  }

  .blog-grid2 {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid2.life {
    display: none;
  }

  .servicesgrig {
    margin-top: 20px;
  }

  .blog-grid3 {
    grid-template-columns: 1fr 1fr;
  }

  .text-field-2 {
    font-size: .9rem;
  }

  .contact-links {
    font-size: .7em;
  }

  .heading-h2-2 {
    font-size: 1.8rem;
  }

  .heading-h2-2.margin-bottom-8 {
    font-size: 2rem;
  }

  .contact-grid {
    max-width: 100rem;
  }

  .field-label-2 {
    font-size: .9rem;
  }

  .paragraph-83 {
    font-size: .8em;
  }

  .contact-list-icon {
    width: 1.4rem;
    height: 1.4rem;
  }

  .success-message-2 {
    flex: 1;
    padding: 1.25rem;
  }

  .conatct-card {
    padding: 2rem;
  }

  .primary-button {
    padding: .75rem 1.25rem;
    font-size: .9rem;
  }

  .contact-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .container-3 {
    width: 100%;
    padding-left: 5vh;
    padding-right: 5vh;
  }

  .paragraph-84._80 {
    margin-bottom: 0;
    font-size: .9rem;
  }

  .textarea-2::placeholder {
    font-size: 18px;
  }

  .textarea-2.eng {
    font-size: 1rem;
  }

  .text-field-3 {
    font-size: 22px;
  }

  .text-field-3::placeholder {
    font-size: 18px;
  }

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

  .grid-2-columns-2 {
    grid-row-gap: 25px;
    grid-template-columns: 1fr;
    place-items: center stretch;
  }

  .mg-bottom-48px {
    font-size: .9em;
  }

  .submit-button-2 {
    font-size: 18px;
    font-weight: 400;
  }

  .submit-button-2.eng {
    font-size: 1.1rem;
  }

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

  .paragraph-85 {
    text-align: center;
    font-size: 2.2rem;
  }

  .section-top-2 {
    padding-top: 0;
  }

  .element2 {
    margin-top: 2rem;
  }

  .div-block-home {
    height: 100%;
  }

  .heading-hero-b-3 {
    font-size: 2.2rem;
  }

  .heading-hero-b-3.en {
    font-size: 1.7rem;
  }

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

  .heading-5.eng {
    font-size: 2rem;
  }

  .grid-2-columns-3 {
    grid-column-gap: 0px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr .75fr;
    place-items: center stretch;
  }

  .grid-2-columns-3.newone {
    grid-column-gap: 0px;
    grid-template-columns: .75fr 1fr;
    place-items: center stretch;
  }

  .grid-2-columns-3.onlyhrere {
    grid-row-gap: 26px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .div-block-4 {
    margin-top: 20px;
  }

  .text-block-5 {
    font-size: 1.6rem;
  }

  .text-block-5.eng {
    font-size: 1.1rem;
  }

  .col2-2 {
    width: 100%;
    max-width: none;
  }

  .col2-2.new {
    justify-content: center;
    align-items: center;
    max-width: none;
    height: 100%;
    padding: 0;
  }

  .col2-2.new.bottom {
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .col2-2.new.bottom.ope {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .text-block-6 {
    font-size: 1.4rem;
  }

  .text-block-6.eng {
    font-size: .7rem;
  }

  .heading-project-2 {
    font-size: 20vw;
  }

  .heading-project-2.large {
    font-size: 2rem;
  }

  .section-top-3 {
    padding-top: 11em;
    padding-bottom: 8em;
  }

  .section-top-3.full {
    padding-bottom: 0;
  }

  .bold-text-2 {
    font-size: 2rem;
    line-height: 1.1em;
  }

  .new {
    padding: 5vh;
  }

  .paragraph-87 {
    font-size: .8rem;
  }

  .text-field-4, .textarea-3 {
    font-size: .9em;
  }

  .description {
    font-size: .8em;
  }

  .section-top-4 {
    padding-top: 11em;
    padding-bottom: 8em;
  }

  .section-top-4.center {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 2em;
  }

  .bg-video-work-3 {
    height: 25vw;
  }

  .grid-work-3 {
    grid-row-gap: .1em;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    margin-bottom: 0;
    padding: 5vh;
  }

  .paragraph-89 {
    font-size: .8rem;
    line-height: 1.7em;
  }

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

  .container-6 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .section-5 {
    padding: 4rem 5vh 2rem;
  }

  .skill-title {
    font-size: 1.3rem;
  }

  .section-topsections {
    padding-top: 0;
  }

  .element3 {
    width: 65%;
    margin-top: 2rem;
  }

  .text-block-2 {
    font-size: .8rem;
  }

  .image-5-hight.only.life {
    object-position: 90% 50%;
    padding-top: 0;
  }

  .tables {
    display: block;
  }

  .paragraph-90 {
    text-align: center;
    font-size: .8rem;
  }

  .paragraph-91 {
    margin-bottom: 0;
    font-size: .8rem;
    line-height: 1.7em;
  }

  .card-body {
    padding: 2rem;
  }

  .bold-text-3.newone {
    font-size: 1.1rem;
  }

  .headingfor {
    font-size: 1.4rem;
  }

  .item {
    width: 100px;
  }

  .empowering {
    padding: 8vh 5vh 5vh;
  }

  .serviceheading {
    font-size: 1.3rem;
  }

  .div-block-8 {
    width: 47%;
  }

  .ourstory {
    padding-bottom: 0;
  }

  .ourstory.home {
    padding-left: 5vh;
    padding-right: 5vh;
  }

  .heading-h1-2.life {
    font-size: 2.7rem;
  }

  .horizontal-wraplife {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .life {
    font-size: .9rem;
  }

  .containerlife {
    padding-bottom: 100px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .containerlife.samtlife {
    padding-left: 5vh;
    padding-right: 5vh;
  }

  .image-8 {
    display: none;
  }
}

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

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 23px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .nav-link {
    text-transform: uppercase;
    padding: 4px 10px;
    font-size: 50px;
    font-weight: 700;
  }

  .overflow {
    margin-bottom: 25px;
  }

  .overflow.home {
    text-align: left;
    justify-content: center;
    align-items: center;
  }

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

  .section.buttn-section, .section.about.open.lastpart.hereonly {
    padding-left: 2.7vh;
    padding-right: 2.7vh;
  }

  .section.about.open.aboutus {
    padding-top: 5vh;
    padding-left: 2.7vh;
    padding-right: 2.7vh;
  }

  .section.about.open.thispart {
    padding: 5vh 2.7vh;
  }

  .section.contactus {
    padding-left: 2.7vh;
    padding-right: 2.7vh;
    overflow: hidden;
  }

  .section.onlyhere {
    padding-left: 5vh;
    padding-right: 5vh;
  }

  .lightbox-link-a {
    height: 54vw;
  }

  .section-footer {
    flex-direction: column;
    align-items: flex-end;
    padding-left: 0;
    padding-right: 0;
  }

  .lightbox-link-b {
    height: 54vw;
  }

  .section-hero-c {
    padding: 190px 2.7vw 150px;
  }

  .hero-c {
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: center;
  }

  .heading-hero-c {
    font-size: 1.8rem;
  }

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

  .lightbox-link-work-c {
    grid-row-gap: 4px;
    border-top-style: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .heading-work-c {
    text-shadow: none;
    font-size: 8vw;
  }

  .heading-contact-c {
    text-shadow: none;
    font-size: 13vw;
  }

  .button.ar.w--current {
    font-size: 14px;
  }

  .brand-2 {
    display: none;
  }

  .nav-link-2 {
    width: auto;
    margin-left: auto;
  }

  .nav-link-2.right {
    margin-right: auto;
  }

  .nav-link-2.nn {
    margin-left: auto;
    padding-left: .5em;
  }

  .nav-link-2.nn-copy-copy {
    margin-left: auto;
    padding-top: 0;
    padding-left: .5em;
  }

  .nav-link-2.nn-copy-copy-copy, .nav-link-2.nn-copy-copy, .nav-link-2.nn-copy-copy-copy, .nav-link-2.nn-copy-copy-copy {
    margin-left: auto;
    padding-left: .5em;
  }

  .nav-2 {
    flex-direction: column;
  }

  .nav-menu-2 {
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background-color: #70707033;
    border-radius: 1em;
    width: auto;
    margin-top: .7em;
    margin-left: .7em;
    margin-right: .7em;
    padding-top: .7em;
    padding-bottom: .7em;
  }

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

  .grid-navbar {
    grid-template-columns: 1fr;
    place-items: center stretch;
  }

  .menu-button-2 {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    color: #fff;
    background-color: #70707033;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    padding: .8em;
    font-size: 1.3em;
    transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
    display: flex;
  }

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

  .main-video.mobileshowinf {
    display: block;
  }

  .main-video.mobilehiide {
    display: none;
  }

  .video-wrap {
    z-index: -1;
  }

  .container-hero-v1 {
    margin-left: 0;
    padding-bottom: 0;
  }

  .horizontal-wrap {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .heading-h1 {
    font-size: 38px;
  }

  .button-wrap {
    justify-content: space-around;
    align-items: stretch;
    width: 70%;
  }

  .icon-circle.livesa {
    width: 2.1em;
  }

  .image-2 {
    width: 50%;
  }

  .paragraph-wrap.hero-v1 {
    width: 100%;
  }

  .paragraph {
    font-size: .8rem;
  }

  .about {
    padding-top: 0;
  }

  .about.home, .about.homedescrption {
    padding-left: 2.7vh;
    padding-right: 2.7vh;
  }

  .container {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .heading, .heading.story-copy {
    font-size: 1.6rem;
  }

  .utility-padding-all-4rem {
    padding: 1.5rem 0;
  }

  .paragraph-32 {
    font-size: 2rem;
  }

  .paragraph-32.paragraph-16.utility-margin-bottom-2rem, .paragraph-32.paragraph-16.utility-margin-bottom-2remnew {
    font-size: .8rem;
  }

  .utility-image-cover {
    width: 60%;
    height: 60%;
  }

  .grid-layout.desktop-3-column.tablet-1-column.grid-gap-s {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

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

  .services.pga {
    margin-bottom: 40px;
  }

  .margin-70px {
    margin-left: 0;
    margin-right: 0;
  }

  .grid-3-columns {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .photo-line-animation.newanim, .photo-line-animation.newleft {
    max-width: 75%;
  }

  .project-title {
    font-size: 1.1rem;
  }

  .containerfooter {
    padding-left: 2.7vh;
    padding-right: 2.7vh;
  }

  .footer-flex-line {
    grid-column-gap: 1.3em;
    grid-row-gap: 1.3em;
    flex-flow: column;
  }

  .footer-flex-line.second {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: flex-start;
    height: auto;
    display: grid;
  }

  .footer-title-wrapper.new {
    padding-bottom: 0;
  }

  .footer-title.new.only-here {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 19px;
  }

  .image-3 {
    width: .7em;
    font-size: .9rem;
  }

  .image-3.location {
    width: .7em;
  }

  .contact-block-text {
    font-size: .7em;
  }

  .contact-block-text.new.added {
    padding-bottom: 0;
    font-size: .7em;
  }

  .footer-pages-box {
    grid-column-gap: 1.2em;
    grid-row-gap: 1.2em;
    height: 100%;
  }

  .footer-section-heading.lifesamt {
    font-size: 1em;
  }

  .link-block-3.w--current {
    display: flex;
  }

  .image-4 {
    width: 55%;
    height: auto;
  }

  .client, .servicesone {
    padding-top: 5vh;
    padding-left: 2.7vh;
    padding-right: 2.7vh;
  }

  .servicesone.service-page {
    padding-bottom: 1vh;
  }

  .text-size-medium.text-weight-medium.caps {
    margin-bottom: 0;
    font-size: .8rem;
  }

  .goal {
    padding: 5vh 1.7vh;
  }

  .text-wrapper-1.new {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .photonew {
    width: 64%;
  }

  .photonew.new {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .photonew.pa {
    width: 57%;
  }

  .heading-2 {
    margin-top: 28px;
    font-size: 1.9rem;
  }

  .heading-2.newone {
    font-size: 1.3rem;
  }

  .paragraph-80 {
    font-size: .9rem;
  }

  .paragraph-80.new {
    padding-left: 0;
    padding-right: 0;
  }

  .project {
    padding-top: 5vh;
    padding-left: 2.7vh;
    padding-right: 2.7vh;
  }

  .project.new {
    padding-left: 2.7vh;
    padding-right: 2.7vh;
  }

  .blog-grid {
    grid-column-gap: 20px;
  }

  .blog-grid.life.newlife.newone {
    margin-top: 0;
  }

  .heading-3 {
    font-size: 1rem;
    line-height: 114%;
  }

  .heading-3.new {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: .8rem;
  }

  .paragraph-82 {
    font-size: .7rem;
  }

  .servicesgrig {
    margin-top: 20px;
  }

  .contact-links {
    font-size: .7em;
  }

  .heading-h2-2 {
    font-size: 1.8rem;
  }

  .heading-h2-2.margin-bottom-8.onlyhere {
    text-align: center;
    font-size: 1.5rem;
  }

  .contact-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 11fr;
  }

  .paragraph-83 {
    font-size: .7em;
  }

  .conatct-card {
    padding: 1.5rem;
  }

  .primary-button {
    font-size: .8rem;
  }

  .contact-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .container-3 {
    padding-left: 2.7vh;
    padding-right: 2.7vh;
  }

  .paragraph-84._80 {
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    font-size: .8rem;
  }

  .textarea-2 {
    font-size: 16px;
  }

  .textarea-2.eng {
    font-size: .9rem;
  }

  .text-field-3::placeholder {
    font-size: 14px;
  }

  .text-field-3.en {
    font-size: 1.1rem;
  }

  .top-section {
    padding-top: 64px;
    overflow: visible;
  }

  .submit-button-2 {
    font-size: 16px;
    font-weight: 400;
  }

  .submit-button-2.eng {
    font-size: .9rem;
  }

  .paragraph-85 {
    font-size: 1.8rem;
  }

  .section-top-2 {
    padding: 0 0 0;
  }

  .image-6 {
    object-fit: cover;
  }

  .heading-hero-b-3 {
    font-size: 1.9rem;
  }

  .heading-hero-b-3.en {
    font-size: 1.5rem;
  }

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

  .heading-5.eng {
    font-size: 1.8rem;
  }

  .grid-2-columns-3, .grid-2-columns-3.newone, .grid-2-columns-3.contecatus-page {
    grid-template-columns: 1fr;
  }

  .text-block-5 {
    font-size: 1.5rem;
  }

  .text-block-5.eng {
    font-size: 1rem;
  }

  .container-5.second {
    margin-top: 40px;
  }

  .col2-2.new {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .col2-2.new.bottom {
    width: 100%;
  }

  .text-block-6 {
    font-size: 1.3rem;
  }

  .text-block-6.eng {
    font-size: .7rem;
  }

  .heading-project-2.large {
    font-size: 22px;
  }

  .section-top-3 {
    padding-top: 9em;
    padding-bottom: 6em;
  }

  .bold-text-2 {
    font-size: 1.7rem;
    line-height: 1.2em;
  }

  .new {
    padding: 40px 2.7vh 2.7vh;
  }

  .paragraph-87 {
    font-size: .7rem;
  }

  .text-field-4, .textarea-3 {
    font-size: .8em;
  }

  .description {
    font-size: .7em;
  }

  .section-top-4 {
    padding-top: 9em;
    padding-bottom: 6em;
  }

  .section-top-4.center {
    margin-bottom: 0;
    padding-bottom: 4em;
  }

  .paragraph-88.ar {
    font-size: 14px;
  }

  .bg-video-work-3 {
    object-position: 50% 32%;
    height: 50vw;
  }

  .grid-work-3 {
    grid-row-gap: .1em;
    grid-template-columns: 1fr;
    padding: 2.7vh;
  }

  .paragraph-89 {
    font-size: .7rem;
  }

  .card.services {
    padding: 2rem 1.5rem;
  }

  .services-empty-space {
    display: none;
  }

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

  .container-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .section-5 {
    padding: 5vh 2.7vw 4vh;
  }

  .skill-title {
    font-size: 1.2rem;
  }

  .section-topsections {
    padding: 0 0 0;
  }

  .image-6-new {
    object-fit: cover;
  }

  .element3 {
    width: 69%;
  }

  .text-block-2 {
    font-size: .7rem;
  }

  .image-5-hight.only.life {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-90 {
    margin-bottom: 10px;
    font-size: .7rem;
  }

  .paragraph-14 {
    font-size: calc(.6vw + .75rem);
    line-height: 1.5em;
  }

  .paragraph-91 {
    font-size: .7rem;
  }

  .avatar {
    width: 3.6rem;
    height: 3.6rem;
  }

  .card-body {
    padding: 1.5rem;
  }

  .bold-text-3.newone {
    font-size: 1.1rem;
  }

  .bold-text-4 {
    font-size: 1rem;
  }

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

  .items {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .item {
    width: 96px;
  }

  .empowering {
    padding-top: 5vh;
    padding-left: 2.7vh;
    padding-right: 2.7vh;
  }

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

  .s1 {
    width: auto;
  }

  .serviceheading {
    font-size: 1.1rem;
  }

  .paragraph-92 {
    font-size: .8rem;
  }

  .button-2 {
    font-size: .9em;
  }

  .ourstory {
    padding-top: 0;
  }

  .ourstory.home {
    padding-left: 2.7vh;
    padding-right: 2.7vh;
  }

  .div-block-9 {
    justify-content: center;
    align-items: center;
  }

  .videolife {
    z-index: -1;
  }

  .heading-h1-2 {
    font-size: 39px;
  }

  .heading-h1-2.life {
    font-size: 2.5rem;
  }

  .horizontal-wraplife {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .life {
    font-size: .8rem;
  }

  .containerlife {
    padding-bottom: 60px;
  }

  .containerlife.samtlife {
    padding-left: 2.7vh;
    padding-right: 2.7vh;
  }

  .heading-7.ar {
    font-size: 27px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 21px;
  }

  h5 {
    font-size: 19px;
  }

  h6 {
    font-size: 17px;
  }

  .overflow, .overflow.home {
    margin-bottom: 0;
  }

  .overflow.home.projectpage {
    justify-content: center;
    align-items: center;
  }

  .overflow.projects101 {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .section {
    padding: 0;
  }

  .section.about.open.lastpart.hereonly, .section.about.open.aboutus, .section.about.open.thispart, .section.contactus {
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .section.onlyhere {
    margin-bottom: 0;
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .section-footer.life {
    padding-left: 1.7vw;
  }

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

  .section-hero-c.new {
    padding-left: 1.7vw;
    padding-right: 1.7vw;
  }

  .heading-hero-c {
    font-size: 1.6rem;
  }

  .heading-top {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 100%;
  }

  .heading-top.new {
    margin-bottom: 20px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .link-contact-a {
    padding: 20px;
  }

  .button.ar.w--current {
    padding: 10px 30px 12px;
    font-size: 10px;
  }

  .nav-link-2.nn {
    width: auto;
    margin-left: auto;
    padding-right: .5em;
  }

  .nav-link-2.nn-copy-copy.newonehere, .nav-link-2.nn-copy-copy.newonehere.w--current {
    padding-right: .5em;
  }

  .nav-link-2.nn-copy-copy {
    width: auto;
    padding-right: 0;
  }

  .nav-link-2.nn-copy-copy-copy {
    padding-right: .5em;
  }

  .menu-button-2 {
    background-color: #70707000;
  }

  .main-video, .main-video.mobileshowinf {
    display: block;
  }

  .container-hero-v1 {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .horizontal-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-top: 0;
  }

  .content-wrapper.hero-v1 {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .content-wrapper.hero-v1.life {
    width: 100%;
    padding-top: 0;
  }

  .content-wrapper.hero-v1-copy {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .heading-h1 {
    font-size: 35px;
  }

  .button-wrap {
    justify-content: space-around;
    align-items: stretch;
    width: 70%;
  }

  .icon-circle {
    width: 1.9em;
  }

  .icon-circle.livesa {
    width: 2.5em;
  }

  .image-2 {
    width: 48%;
  }

  .paragraph-wrap.hero-v1 {
    width: 75%;
  }

  .paragraph {
    font-size: .7rem;
  }

  .about.home {
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .about.homedescrption {
    background-position: 0 0, 0 0, 62% 100%;
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .container {
    flex-wrap: nowrap;
  }

  .heading {
    font-size: 1.4rem;
  }

  .heading.abotis {
    margin-bottom: 30px;
    font-size: 1.3rem;
    line-height: 100%;
  }

  .heading.story-copy {
    font-size: 1.4rem;
  }

  .utility-padding-all-4rem {
    padding: 0;
  }

  .paragraph-32 {
    font-size: 1.6rem;
  }

  .paragraph-32.paragraph-16.utility-margin-bottom-2rem {
    font-size: .7rem;
  }

  .paragraph-32.paragraph-16.utility-margin-bottom-2remnew {
    width: 100%;
    font-size: .7rem;
  }

  .margin-70px {
    margin-top: 40px;
  }

  .text-wrapper {
    grid-row-gap: 9px;
  }

  .photo-line-animation.newanim, .photo-line-animation.newleft {
    max-width: 100%;
  }

  .project-title {
    font-size: .9rem;
  }

  .containerfooter {
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .footer-flex-line.second {
    grid-row-gap: 29px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .footer-title-wrapper.new.hidemober {
    display: none;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-title.new {
    font-size: 13px;
  }

  .footer-title.new.only-here {
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
  }

  .link-block {
    display: block;
  }

  .link-block.mobilehidde {
    text-align: left;
    display: block;
  }

  .black-line.f {
    background-color: var(--blue);
  }

  .contact-email-link.livesa {
    padding: .8em;
  }

  .image-3 {
    width: .8em;
  }

  .image-3.location {
    width: 1em;
  }

  .contact-block-text {
    font-size: .7em;
  }

  .contact-block-text.new.added {
    font-size: .8em;
  }

  .footer-pages-box {
    grid-column-gap: 1.6em;
    grid-row-gap: 1.6em;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .footer-section-heading.lifesamt {
    font-size: 1.2em;
  }

  .footer-links-wrapper {
    align-items: center;
    width: 100%;
  }

  .image-4 {
    width: 48%;
  }

  .client {
    padding-bottom: 3vh;
  }

  .servicesone {
    padding: 5vh 1.7vh 3vh;
  }

  .logos-component {
    margin-top: 30px;
  }

  .text-size-medium.text-weight-medium.caps {
    font-size: .7rem;
  }

  .goal {
    padding-bottom: 3vh;
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .text-wrapper-1.new {
    width: auto;
  }

  .photonew.full {
    width: 82vw;
  }

  .photonew.pa {
    width: 75%;
  }

  .heading-2 {
    margin-top: 10px;
    font-size: 1.4rem;
  }

  .heading-2.newone {
    font-size: 1rem;
    line-height: 110%;
  }

  .paragraph-80, .paragraph-80.new, .paragraph-80.szmlife {
    font-size: .7rem;
  }

  .project {
    padding-bottom: 3vh;
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .project.new {
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .blog-grid, .blog-grid.life.newlife.newone, .blog-grid.pagehere {
    grid-template-columns: 1fr;
  }

  .text-wrapper-project.mobile {
    width: 82vw;
  }

  .heading-3.new {
    font-size: .8rem;
  }

  .title-wrapper-sticky {
    justify-content: flex-start;
    align-items: center;
  }

  .blog-grid2, .blog-grid3 {
    grid-template-columns: 1fr;
  }

  .text-field-2 {
    font-size: .9rem;
  }

  .contact-links {
    font-size: .6em;
  }

  .heading-h2-2 {
    font-size: 1.4rem;
  }

  .heading-h2-2.margin-bottom-8.onlyhere {
    margin-bottom: .5rem;
    font-size: 1.5rem;
  }

  .field-label-2 {
    font-size: .9rem;
  }

  .paragraph-83 {
    font-size: .7em;
  }

  .conatct-card {
    padding-top: 1.5rem;
  }

  .primary-button {
    font-size: .7rem;
  }

  .container-3 {
    flex-wrap: nowrap;
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .paragraph-84._80 {
    width: 92%;
    font-size: .7rem;
  }

  .textarea-2::placeholder {
    font-size: 15px;
  }

  .textarea-2.eng {
    font-size: .8rem;
  }

  .text-field-3, .text-field-3:hover {
    font-size: 15px;
  }

  .text-field-3:focus {
    font-size: 14px;
  }

  .text-field-3::placeholder {
    font-size: 15px;
  }

  .text-field-3.en {
    font-size: .8rem;
  }

  .grid-2-columns-2 {
    grid-row-gap: 24px;
  }

  .mg-bottom-48px.contact {
    font-size: .8rem;
  }

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

  .top-section {
    padding-top: 48px;
    padding-bottom: 5vh;
  }

  .submit-button-2 {
    margin-top: 0;
    font-size: 15px;
    font-weight: 400;
  }

  .submit-button-2.eng {
    margin-top: 10px;
    font-size: 1.1rem;
  }

  .paragraph-85 {
    font-size: 1.6rem;
  }

  .section-top-2 {
    padding-top: 0;
  }

  .image-6 {
    overflow: clip;
  }

  .element2 {
    margin-top: 2rem;
  }

  .div-block-home {
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-bottom: 20px;
  }

  .heading-hero-b-3 {
    font-size: 1.4rem;
  }

  .heading-hero-b-3.en {
    font-size: 1.1rem;
  }

  .heading-5 {
    margin-bottom: 40px;
    font-size: 1.6rem;
  }

  .heading-5.eng {
    font-size: 1.3rem;
  }

  .grid-2-columns-3 {
    grid-row-gap: 24px;
  }

  .div-block-4 {
    margin-top: 20px;
  }

  .text-block-5 {
    font-size: 1.2rem;
  }

  .text-block-5.eng {
    font-size: .9rem;
  }

  .container-5.second {
    margin-top: 40px;
  }

  .text-block-6 {
    font-size: 1rem;
  }

  .text-block-6.eng {
    font-size: .7rem;
  }

  .content {
    max-width: 88em;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-project-2.large {
    width: 100%;
    margin-bottom: 0;
  }

  .bold-text-2 {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.3em;
  }

  .new {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .paragraph-87 {
    font-size: .8rem;
  }

  .text-field-4, .textarea-3 {
    font-size: .9em;
  }

  .block-field {
    grid-row-gap: 2em;
    flex-direction: column;
  }

  .description {
    margin-top: 1.4em;
  }

  .paragraph-88.ar {
    font-size: 12px;
  }

  .bg-video-work-3 {
    height: 100vw;
  }

  .grid-work-3 {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .container-6 {
    flex-wrap: nowrap;
    padding-left: 0;
    padding-right: 0;
  }

  .section-5 {
    padding: 2rem 1.7vh 0;
  }

  .skill-title {
    font-size: 1rem;
  }

  .section-topsections {
    padding-top: 0;
  }

  .image-6-new {
    overflow: clip;
  }

  .element3 {
    width: 86%;
    margin-top: 2rem;
  }

  .text-block-2 {
    font-size: .7rem;
  }

  .image-5-hight.only.life {
    object-position: 90% 50%;
  }

  .paragraph-90 {
    width: 100%;
  }

  .div-block-6.onlyabout {
    padding-left: 0;
    padding-right: 0;
  }

  .avatar {
    margin-bottom: 16px;
  }

  .card-body {
    padding: 1.5rem;
  }

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

  .bold-text-4 {
    font-size: .8rem;
  }

  .items {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .item {
    width: 90px;
  }

  .empowering {
    padding-bottom: 3vh;
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .serviceheading {
    padding-left: 0;
    padding-right: 0;
    font-size: 1rem;
  }

  .paragraph-92 {
    font-size: .7rem;
  }

  .button-2 {
    font-size: .9em;
  }

  .image-7 {
    display: none;
  }

  .image-7.mobileonly {
    max-width: 57%;
    display: inline-flex;
  }

  .div-block-8 {
    width: 100%;
    padding-top: 3.2rem;
  }

  .ourstory.home {
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .heading-h1-2 {
    font-size: 40px;
  }

  .heading-h1-2.life {
    font-size: 2.4rem;
  }

  .horizontal-wraplife {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .life {
    font-size: .7rem;
  }

  .containerlife {
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .containerlife.samtlife {
    padding-left: 1.7vh;
    padding-right: 1.7vh;
  }

  .containerlife.samtlife.hereonly {
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 100px;
  }

  .heading-7.ar {
    font-size: 24px;
  }
}

#w-node-_0a9feed3-942c-1bea-93b4-c0a3485e84c5.w-node-f0916472-8e05-3df4-df57-651ef3fe45ef-bff77381, #w-node-_0a9feed3-942c-1bea-93b4-c0a3485e84c5.w-node-b8965338-a9a0-4114-b018-aa7594a867d5-bff77381 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_75269f27-d830-8d08-0c2b-9e95318c6d9a-7d499924, #w-node-d2ac3bb7-18b1-f895-2d9c-460b9e0151cf-9e0151ca, #w-node-d2ac3bb7-18b1-f895-2d9c-460b9e0151df-9e0151ca, #w-node-d2ac3bb7-18b1-f895-2d9c-460b9e0151e1-9e0151ca {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b1c5f4fd-948d-581b-e199-926426a5bcbc-bff77384, #w-node-b1c5f4fd-948d-581b-e199-926426a5bcc0-bff77384, #w-node-b1c5f4fd-948d-581b-e199-926426a5bcc2-bff77384, #w-node-b1c5f4fd-948d-581b-e199-926426a5bcc4-bff77384 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b1c5f4fd-948d-581b-e199-926426a5bcc6-bff77384 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-b1c5f4fd-948d-581b-e199-926426a5bcd0-bff77384 {
  justify-self: end;
}

#w-node-_4f0dc3c9-28b3-1aaa-0302-064c76513183-bff77384 {
  justify-self: auto;
}

#w-node-_5c9ee614-18dc-0f77-c443-bcd282ba0c98-bff77385, #w-node-_5c9ee614-18dc-0f77-c443-bcd282ba0c9e-bff77385, #w-node-b26a8508-fbef-0251-1368-f04226fd4d8a-bff77385 {
  align-self: start;
}

#w-node-f76b34f9-ac3e-8feb-49c1-77e1eb1edebb-eb1edeb6, #w-node-f76b34f9-ac3e-8feb-49c1-77e1eb1eded0-eb1edeb6, #w-node-f76b34f9-ac3e-8feb-49c1-77e1eb1eded2-eb1edeb6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8890dfec-02d2-cbf7-f8cb-d0ea6c1e50df-bff77386, #w-node-_8890dfec-02d2-cbf7-f8cb-d0ea6c1e50f6-bff77386, #w-node-_2ad5ceb7-301a-071a-647e-c5e6e57705d6-bff77386, #w-node-_352afe18-c39e-ed8e-2f6b-d95967ca2148-bff77386, #w-node-e881c7a3-de7b-dddb-54fe-e9e8cc2e1a09-bff77386, #w-node-_1f83e056-4eb9-75eb-e246-ccfdfb749a96-bff77386, #w-node-_2e61f6bd-63d8-4658-c259-128b40406b2a-bff77386, #w-node-c10cc326-5d08-82eb-8d6b-0d463daa493a-bff77386, #w-node-fa16ed19-a305-a152-1169-f45159ec5785-bff77386 {
  justify-self: end;
}

#w-node-_17708cb0-ce6e-6bf9-197b-6708f601788c-bff7738b, #w-node-_411c56bd-48f4-5b2d-3639-b7b62951284b-bff7738b, #w-node-bf5cfa0b-a145-2b0a-eee2-8d8c197dad2a-bff7738b, #w-node-_82ed36a6-3eee-35f6-ba77-7416977e506c-bff7738b, #w-node-_3508ab13-c1e7-d0f5-ea06-3134c3566796-bff7738b, #w-node-c84590a4-73bd-2119-e82f-52bf7d2619fd-bff7738b, #w-node-_2894d0f2-78dc-9c00-2619-674a6c674be5-bff7738b, #w-node-af32226d-ab56-c20c-e402-b7fb171ef05d-bff7738b, #w-node-df88797b-69cc-32e6-2241-f4cdc8a92983-bff7738b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a9feed3-942c-1bea-93b4-c0a3485e84c5.w-node-f0916472-8e05-3df4-df57-651ef3fe45ef-bff77392, #w-node-_0a9feed3-942c-1bea-93b4-c0a3485e84c5.w-node-b8965338-a9a0-4114-b018-aa7594a867d5-bff77392 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e650cbda-bcd4-e87c-5337-d7360d1ae34c-0d1ae320, #w-node-_0a101d3d-916a-3b43-d400-ecb02867a2b0-2867a2ab, #w-node-_0a101d3d-916a-3b43-d400-ecb02867a2c0-2867a2ab, #w-node-_0a101d3d-916a-3b43-d400-ecb02867a2c2-2867a2ab, #w-node-_17708cb0-ce6e-6bf9-197b-6708f601788c-bff7739a, #w-node-_411c56bd-48f4-5b2d-3639-b7b62951284b-bff7739a, #w-node-bf5cfa0b-a145-2b0a-eee2-8d8c197dad2a-bff7739a, #w-node-_82ed36a6-3eee-35f6-ba77-7416977e506c-bff7739a, #w-node-_3508ab13-c1e7-d0f5-ea06-3134c3566796-bff7739a, #w-node-c84590a4-73bd-2119-e82f-52bf7d2619fd-bff7739a, #w-node-_2894d0f2-78dc-9c00-2619-674a6c674be5-bff7739a, #w-node-af32226d-ab56-c20c-e402-b7fb171ef05d-bff7739a, #w-node-df88797b-69cc-32e6-2241-f4cdc8a92983-bff7739a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8890dfec-02d2-cbf7-f8cb-d0ea6c1e50df-bff7739b, #w-node-_8890dfec-02d2-cbf7-f8cb-d0ea6c1e50f6-bff7739b, #w-node-fa16ed19-a305-a152-1169-f45159ec5785-bff7739b {
  justify-self: end;
}

#w-node-b1c5f4fd-948d-581b-e199-926426a5bcbc-bff7739c, #w-node-b1c5f4fd-948d-581b-e199-926426a5bcc0-bff7739c, #w-node-b1c5f4fd-948d-581b-e199-926426a5bcc2-bff7739c, #w-node-b1c5f4fd-948d-581b-e199-926426a5bcc4-bff7739c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b1c5f4fd-948d-581b-e199-926426a5bcc6-bff7739c {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-b1c5f4fd-948d-581b-e199-926426a5bcd0-bff7739c {
  justify-self: end;
}

#w-node-_4f0dc3c9-28b3-1aaa-0302-064c76513183-bff7739c {
  justify-self: auto;
}

#w-node-_5c9ee614-18dc-0f77-c443-bcd282ba0c98-bff7739f, #w-node-_5c9ee614-18dc-0f77-c443-bcd282ba0c9e-bff7739f, #w-node-b26a8508-fbef-0251-1368-f04226fd4d8a-bff7739f {
  align-self: start;
}

#w-node-_9e8ab834-bd7e-8ec8-90c6-87f8d9fa7307-d9fa7302, #w-node-_9e8ab834-bd7e-8ec8-90c6-87f8d9fa731c-d9fa7302, #w-node-_9e8ab834-bd7e-8ec8-90c6-87f8d9fa731e-d9fa7302 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-_4f0dc3c9-28b3-1aaa-0302-064c76513183-bff77384, #w-node-_8890dfec-02d2-cbf7-f8cb-d0ea6c1e50df-bff77386, #w-node-_2ad5ceb7-301a-071a-647e-c5e6e57705d6-bff77386, #w-node-e881c7a3-de7b-dddb-54fe-e9e8cc2e1a09-bff77386, #w-node-_2e61f6bd-63d8-4658-c259-128b40406b2a-bff77386, #w-node-_8890dfec-02d2-cbf7-f8cb-d0ea6c1e50df-bff7739b, #w-node-_4f0dc3c9-28b3-1aaa-0302-064c76513183-bff7739c {
    justify-self: auto;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_0a9feed3-942c-1bea-93b4-c0a3485e84c5.w-node-f0916472-8e05-3df4-df57-651ef3fe45ef-bff77381, #w-node-_0a9feed3-942c-1bea-93b4-c0a3485e84c5.w-node-b8965338-a9a0-4114-b018-aa7594a867d5-bff77381 {
    grid-column: span 1 / span 1;
  }

  #w-node-d2ac3bb7-18b1-f895-2d9c-460b9e0151cf-9e0151ca {
    place-self: auto;
  }

  #w-node-d2ac3bb7-18b1-f895-2d9c-460b9e0151e1-9e0151ca {
    justify-self: center;
  }

  #w-node-f76b34f9-ac3e-8feb-49c1-77e1eb1edebb-eb1edeb6 {
    place-self: auto;
  }

  #w-node-f76b34f9-ac3e-8feb-49c1-77e1eb1eded2-eb1edeb6 {
    justify-self: center;
  }

  #w-node-_1f03fc33-8f26-a1c6-377b-8dd9cbe7d5f0-bff77386, #w-node-_1f03fc33-8f26-a1c6-377b-8dd9cbe7d5ff-bff77386, #w-node-_0a9feed3-942c-1bea-93b4-c0a3485e84c5.w-node-f0916472-8e05-3df4-df57-651ef3fe45ef-bff77392, #w-node-_0a9feed3-942c-1bea-93b4-c0a3485e84c5.w-node-b8965338-a9a0-4114-b018-aa7594a867d5-bff77392 {
    grid-column: span 1 / span 1;
  }

  #w-node-_0a101d3d-916a-3b43-d400-ecb02867a2b0-2867a2ab {
    place-self: auto;
  }

  #w-node-_0a101d3d-916a-3b43-d400-ecb02867a2c2-2867a2ab {
    justify-self: center;
  }

  #w-node-_1f03fc33-8f26-a1c6-377b-8dd9cbe7d5f0-bff7739b, #w-node-_1f03fc33-8f26-a1c6-377b-8dd9cbe7d5ff-bff7739b {
    grid-column: span 1 / span 1;
  }

  #w-node-_9e8ab834-bd7e-8ec8-90c6-87f8d9fa7307-d9fa7302 {
    place-self: auto;
  }

  #w-node-_9e8ab834-bd7e-8ec8-90c6-87f8d9fa731e-d9fa7302 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8b8e04c4-0388-ee16-284e-e443ccbbcdc4-bff77385, #w-node-ba94db3f-09ef-0f76-ebeb-42f8473f1687-473f1647, #w-node-bcbc75ee-ffa2-4820-8a03-c35aa6b04769-a6b04729 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b1c5f4fd-948d-581b-e199-926426a5bcc0-bff77384, #w-node-b1c5f4fd-948d-581b-e199-926426a5bcc4-bff77384 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b1c5f4fd-948d-581b-e199-926426a5bcc6-bff77384 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-b1c5f4fd-948d-581b-e199-926426a5bcc0-bff7739c, #w-node-b1c5f4fd-948d-581b-e199-926426a5bcc4-bff7739c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b1c5f4fd-948d-581b-e199-926426a5bcc6-bff7739c {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }
}


@font-face {
  font-family: 'Thicccboi';
  src: url('../fonts/THICCCBOI-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thicccboi';
  src: url('../fonts/THICCCBOI-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thicccboi';
  src: url('../fonts/THICCCBOI-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thicccboi';
  src: url('../fonts/THICCCBOI-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thicccboi';
  src: url('../fonts/THICCCBOI-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bodoni 72 Book';
  src: url('../fonts/bodoni-72-book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: '07 Brother 1816';
  src: url('../fonts/07-brother1816-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Swissra';
  src: url('../fonts/Swissra-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Swissra';
  src: url('../fonts/Swissra-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Swissra';
  src: url('../fonts/Swissra-Normal.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Swissra';
  src: url('../fonts/Swissra-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}