@font-face {
  font-family: "ArbFONTS";
  src: url("./fonts/rb-font-bold.ttf");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "ArbFONTS";
  src: url("./fonts/rb-font-light.ttf");
  font-weight: 200;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

html:lang(ar) body {
  direction: rtl;
  text-align: right;
  font-family: "ArbFONTS", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  position: relative;
  font-weight: 300;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*:not(input):not(button):not(a), html:not(input):not(button):not(a) {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1800px;
}

.blur-up {
  opacity: 0;
  transition: opacity 400ms;
}

.blur-up.lazyloaded,
.blur-up.lazyloading {
  opacity: 1;
}

.color-primary {
  color: #00CAB0;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.main-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9vw;
  z-index: 10;
}
.main-nav .bottom-nav {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}
.main-nav .bottom-nav .contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  font-weight: 300;
}
.main-nav .bottom-nav .contain .logo img {
  height: 11vw;
  width: 11vw;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -7vw;
  aspect-ratio: 161/150;
}
.main-nav .bottom-nav .contain .navbar {
  margin-bottom: 2vw;
}
.main-nav .bottom-nav .contain .navbar ul {
  display: flex;
}
.main-nav .bottom-nav .contain .navbar ul li {
  margin-inline-end: 3vw;
  text-transform: uppercase;
  font-size: 1vw;
}
.main-nav .bottom-nav .contain .navbar ul li:last-of-type {
  margin: 0;
}
.main-nav .bottom-nav .contain .navbar ul li a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.main-nav .bottom-nav .contain .navbar ul li a:hover {
  color: #00CAB0;
  transition: all 0.3s ease;
}
.main-nav .bottom-nav .contain .navbar ul li a.active {
  color: #00CAB0;
}
.main-nav .bottom-nav .contain .email {
  color: #ffffff;
  margin-bottom: 2vw;
  font-size: 1vw;
  display: flex;
  align-items: center;
}
.main-nav .bottom-nav .contain .email svg {
  width: 1.5vw;
  margin-inline-start: 0.6vw;
}
.main-nav .bottom-nav .contain .email:hover {
  color: #00CAB0;
  transition: all 0.3s ease;
}
.main-nav .bottom-nav .contain .email:hover svg {
  fill: #00CAB0;
}
.main-nav.fixed {
  position: fixed;
  height: 4vw;
  background-color: #f7f7f7;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.main-nav.fixed .bottom-nav {
  height: 4vw;
}
.main-nav.fixed .bottom-nav .contain .logo img {
  height: 4vw;
  width: 4vw;
  margin-top: 0;
}
.main-nav.fixed .bottom-nav .contain .navbar {
  margin-bottom: 0;
}
.main-nav.fixed .bottom-nav .contain .navbar ul li a {
  color: #000000;
}
.main-nav.fixed .bottom-nav .contain .navbar ul li a.active {
  color: #00CAB0;
}
.main-nav.fixed .bottom-nav .contain .email {
  margin-bottom: 0;
  color: #000000;
}
.main-nav.fixed .bottom-nav .contain .email svg {
  fill: #000000;
}

#header {
  padding-top: 6vw;
  display: flex;
  align-items: center;
  position: relative;
  min-height: calc(100vh - 20px);
}
#header .container {
  z-index: 1;
}
#header .contain {
  color: #ffffff;
  max-width: 1200px;
  margin: auto;
  padding: 10rem 0;
}
#header .contain .information {
  display: flex;
  flex-direction: column;
  margin-bottom: 2vw;
}
#header .contain .information h1 {
  font-size: 4.5vw;
}
#header .contain .information .info {
  font-size: 1.4vw;
  font-weight: 300;
}
#header .contain .information img {
  width: 300px;
  display: block;
  align-self: flex-end;
  margin-left: -200px;
  aspect-ratio: 348/37;
}
#header .down {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 3;
}
#header .down svg {
  display: block;
  width: 3vw;
  animation: MoveDown 1s linear infinite alternate;
  cursor: pointer;
}
@keyframes MoveDown {
  0% {
    transform: translateY(0.7vw);
  }
  100% {
    transform: translateY(-0.7vw);
  }
}
#header .bg-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#header .bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#header .heder-image {
  position: absolute;
  right: 5%;
  bottom: 5%;
  z-index: 2;
}
#header .heder-image img {
  display: block;
  aspect-ratio: 22/17;
}

#services {
  display: flex;
  align-items: center;
  padding: 4vw 0 2vw;
}
#services h2 {
  font-size: 2vw;
}
#services .services {
  max-width: 1150px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}
#services .services .item {
  width: 32%;
  display: flex;
  flex-direction: column;
  margin: 2vw 0 1vw;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
#services .services .item .image {
  margin-bottom: 1vw;
}
#services .services .item .image img {
  max-width: 75%;
  aspect-ratio: 16/9;
  display: block;
  margin: auto;
}
#services .services .item .title {
  font-size: 1.4vw;
  font-weight: 200;
  position: relative;
  display: inline-flex;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 1vw;
  padding-bottom: 1vw;
}
#services .services .item .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -2vw;
  width: 0;
  height: 1px;
  background: #00CAB0;
  transition: all 0.2s ease-in-out;
}
#services .services .item:hover {
  color: #00CAB0;
}
#services .services .item:hover .title:after {
  width: calc(100% + 2vw);
}
#services .services .item:last-of-type .image img {
  max-width: 60%;
  margin: 15px auto;
}

.idea {
  display: flex;
  justify-content: center;
  color: #ffffff;
  padding: 5vw 0;
  position: relative;
  overflow: hidden;
}
.idea .contain {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.idea .contain .information {
  width: 41%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.idea .contain .information h2 {
  font-size: 2.5vw;
  font-weight: bold;
}
.idea .contain .information p {
  font-size: 1.3vw;
  font-weight: 200;
}
.idea .contain .left {
  width: 27%;
}
.idea .contain .left img {
  max-width: 100%;
  aspect-ratio: 200/163;
}
.idea .contain .right {
  width: 28%;
  transform: rotateY(180deg);
}
.idea .contain .right img {
  aspect-ratio: 661/538;
  display: block;
}

#our-works {
  position: relative;
  padding: 50px 0 50px;
  overflow: hidden;
}
#our-works .contain {
  max-width: 1200px;
  margin: auto;
}
#our-works .contain h2 {
  font-size: 2vw;
}
#our-works .contain .shuffle-filter {
  display: flex;
  justify-content: center;
  font-size: 1.2vw;
}
#our-works .contain .shuffle-filter li {
  margin: 1vw 2vw;
  cursor: pointer;
}
#our-works .contain .shuffle-filter li.selected {
  color: #00CAB0;
}
#our-works .contain .shuffle-container {
  margin-top: 1.5vw;
}
#our-works .contain .shuffle-container .item {
  width: 48%;
  margin: 1%;
  cursor: pointer;
}
#our-works .contain .shuffle-container .item .image img {
  display: block;
  aspect-ratio: 576/329;
  -o-object-fit: cover;
     object-fit: cover;
}

#about-us {
  color: #ffffff;
  padding-top: 4vw;
  position: relative;
  overflow: hidden;
}
#about-us .container .contain {
  display: flex;
  justify-content: space-between;
}
#about-us .container .contain .image {
  width: 45%;
  position: relative;
}
#about-us .container .contain .image img {
  max-width: 85%;
}
#about-us .container .contain .image .icon {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 18%;
}
#about-us .container .contain .information {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#about-us .container .contain .information h2 {
  font-size: 3vw;
  font-weight: bold;
  margin-bottom: 1vw;
  color: #00CAB0;
}
#about-us .container .contain .information p {
  font-size: 1.3vw;
  font-weight: 100;
  margin-bottom: 0.4vw;
  color: #000000;
}
#about-us .container .contain .information img {
  transform: rotateY(180deg);
  max-width: 300px;
  margin-top: 1rem;
  align-self: flex-end;
}

.main-description {
  padding: 4vw 0;
}
.main-description .contain {
  text-align: center;
  max-width: 80%;
  margin: auto;
}
.main-description .contain h2 {
  font-weight: bold;
  font-size: 1.7vw;
  margin-bottom: 0.7vw;
  line-height: 1.4;
}
.main-description .contain p {
  font-size: 1.3vw;
  font-weight: 100;
  line-height: 1.8;
}
.main-description .contain p:last-of-type {
  margin-bottom: 4vw;
}
.main-description .contain strong {
  font-weight: bold !important;
}
.main-description .contain hr {
  margin: 2vw 0;
  border-top: 2px solid #000000;
}
.main-description .contain .list {
  display: flex;
  justify-content: space-between;
  text-align: initial;
}
.main-description .contain .list .item {
  display: flex;
  justify-content: space-between;
  width: 32%;
}
.main-description .contain .list .item .number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2vw;
  width: 2vw;
  height: 2vw;
  background: #00CAB0;
  color: #ffffff;
}
.main-description .contain .list .item .info {
  width: calc(100% - 2.5vw);
}
.main-description .contain .list span {
  border-left: 1px solid #000000;
}

#faq-section {
  padding: 4vw 0;
}
#faq-section .contain h2 {
  font-weight: bold;
  font-size: 1.7vw;
  margin-bottom: 2vw;
  line-height: 1.4;
}
#faq-section .contain #accordion .btn {
  border: 0;
  background: transparent;
  width: 100%;
  border-bottom: 2px solid #000000;
  text-align: initial;
  padding: 1vw 0;
  border-radius: 0;
  color: #000000;
  text-decoration: none;
  position: relative;
}
#faq-section .contain #accordion .btn svg {
  position: absolute;
  left: 0;
  top: 20px;
}
#faq-section .contain #accordion .btn[aria-expanded=true] {
  color: #00CAB0;
}
#faq-section .contain #accordion .btn[aria-expanded=true] svg {
  transform: rotateX(180deg);
  fill: #00CAB0;
}
#faq-section .contain #accordion .py-3 {
  max-width: calc(100% - 15px);
  font-weight: 200;
}

footer {
  background-color: #1B252E;
  padding: 2vw 0;
}
footer .logo {
  width: 10vw;
  margin-top: -2vw;
}
footer .socials a {
  color: #ffffff;
  font-size: 2vw;
  margin-inline-end: 1vw;
}
footer .socials a:first-of-type:hover svg {
  fill: #00CAB0;
  transition: all 0.2 ease-in-out;
}
footer .socials a:last-of-type {
  margin-inline-end: 0;
}
footer .socials a:last-of-type:hover svg path {
  fill: #00CAB0;
  transition: all 0.2 ease-in-out;
}

.img-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}

.fixed-whatsapp-bottom {
  position: fixed;
  bottom: 30px;
  left: 25px;
  display: block;
  z-index: 11000;
}
.fixed-whatsapp-bottom svg {
  width: 4vw;
  height: 4vw;
}
.fixed-whatsapp-bottom::before {
  position: absolute;
  content: " ";
  z-index: -1;
  top: 0%;
  left: 0%;
  background-color: rgba(48, 183, 0, 0.5);
  width: 4vw;
  height: 4vw;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  animation: pulse 1.5s ease-out;
  animation-iteration-count: infinite;
}

.modal-images-contain {
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  z-index: 5000;
}
.modal-images-contain .return {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  left: 5%;
  right: 5%;
  padding: 1rem;
  background: #ffffff;
  color: #000000;
  z-index: 2;
  border-bottom: 2px solid #000000;
  cursor: pointer;
}
.modal-images-contain .modal-images {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 1rem;
}
.modal-images-contain .modal-images img {
  display: block;
  max-width: 100%;
  margin-bottom: 1rem;
}
.modal-images-contain .overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  content: "";
  background: rgba(0, 0, 0, 0.8);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.7);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@media (min-width: 992px) {
  .main-nav .bottom-nav .contain .toggle-icon {
    display: none;
  }
  .main-nav .bottom-nav .contain .bg-overlay {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #header .heder-image {
    max-width: 300px;
  }
  #header .contain .information img {
    width: 250px;
    margin-left: -100px;
  }
  .main-nav .bottom-nav .contain .navbar ul li {
    font-size: 1rem;
    margin-inline-end: 1rem;
  }
  .main-nav .bottom-nav .contain .navbar ul li .nav-link {
    padding: 0.5rem;
  }
  .main-nav .bottom-nav .contain .email {
    font-size: 1rem;
  }
  #about-us .container .contain .information img {
    max-width: 250px;
  }
  .description .contain {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .container {
    width: 100%;
  }
  .main-nav {
    height: 50px;
  }
  .main-nav .bottom-nav {
    height: 50px;
  }
  .main-nav .bottom-nav .contain .toggle-icon {
    cursor: pointer;
  }
  .main-nav .bottom-nav .contain .toggle-icon svg {
    width: 30px;
    height: 40px;
    fill: #ffffff;
  }
  .main-nav .bottom-nav .contain .logo img {
    height: 90px;
    width: 90px;
    margin-top: -40px;
  }
  .main-nav .bottom-nav .contain .navbar {
    display: none;
    animation: fadeInLeft 0.3s ease-in-out;
    width: 290px;
    margin-bottom: 0;
  }
  .main-nav .bottom-nav .contain .navbar ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
  }
  .main-nav .bottom-nav .contain .navbar ul li {
    margin-inline-end: 0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .main-nav .bottom-nav .contain .navbar ul li a {
    color: #000000;
  }
  .main-nav .bottom-nav .contain .navbar.active {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    top: 0;
    background: #ffffff;
    padding: 2rem 1rem 1rem;
    z-index: 102;
  }
  .main-nav .bottom-nav .contain .bg-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
    content: "";
    background: rgba(0, 0, 0, 0.4);
    transition: none;
  }
  .main-nav .bottom-nav .contain .email {
    margin-bottom: 0;
    font-size: 0.8rem;
  }
  .main-nav .bottom-nav .contain .email svg {
    width: 1rem;
    margin-inline-start: 5px;
  }
  .main-nav.fixed {
    height: 50px;
  }
  .main-nav.fixed .bottom-nav {
    height: 50px;
  }
  .main-nav.fixed .bottom-nav .toggle-icon svg {
    fill: #000000;
  }
  .main-nav.fixed .bottom-nav .contain .logo img {
    height: 50px;
    width: 50px;
  }
  #header {
    padding-top: 0;
  }
  #header .contain {
    max-width: 500px;
    margin: auto;
    width: 100%;
    padding: 11rem 0;
    display: flex;
    justify-content: center;
  }
  #header .contain .information {
    margin-bottom: 1rem;
    max-width: 300px;
  }
  #header .contain .information h1 {
    font-size: 3.5rem;
  }
  #header .contain .information .info {
    font-size: 1.3rem;
  }
  #header .contain .information img {
    width: 150px;
    margin-left: 0;
  }
  #header .down {
    z-index: 3;
    bottom: 10px;
  }
  #header .down svg {
    width: 30px;
  }
  @keyframes MoveDown {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  #header .heder-image {
    right: 1%;
    bottom: 7%;
    max-width: 200px;
  }
  #services {
    display: flex;
    align-items: center;
    padding: 40px 0 20px;
  }
  #services h2 {
    font-size: 1.7rem;
  }
  #services .services {
    max-width: 500px;
    margin: auto;
  }
  #services .services .item {
    width: 48%;
    margin: 0;
    margin-bottom: 2rem;
  }
  #services .services .item .image {
    margin: 0.5rem 0;
  }
  #services .services .item .image img {
    max-width: 200px;
  }
  #services .services .item .title {
    font-size: 1.1rem;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #services .services .item:last-of-type .image img {
    max-width: 165px;
    margin: 10px auto;
  }
}
@media (max-width: 991.98px) and (max-width: 420.98px) {
  #services .services .item {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .idea {
    padding: 40 0;
  }
  .idea .contain {
    display: flex;
    flex-wrap: wrap;
    max-width: 300px;
    margin: auto;
  }
  .idea .contain .information {
    width: 100%;
    margin: 1rem 0 2rem;
  }
  .idea .contain .information h2 {
    font-size: 2.3rem;
  }
  .idea .contain .information > div {
    font-size: 1.1rem;
    max-width: 250px;
  }
  .idea .contain .left {
    width: 100%;
    margin-right: -30px;
  }
  .idea .contain .left img {
    max-width: 200px !important;
  }
  .idea .contain .right {
    width: 100%;
    transform: rotate(90deg) translate(-25%, 50%);
  }
  .idea .contain .right img {
    max-width: 200px !important;
  }
  #about-us {
    padding: 40px 0;
  }
  #about-us .container .contain {
    flex-wrap: wrap;
    max-width: 500px;
    margin: auto;
  }
  #about-us .container .contain .image {
    width: 100%;
    max-width: 250px;
    text-align: center;
    margin: 0 auto 1.5rem;
  }
  #about-us .container .contain .image img {
    max-width: 100%;
  }
  #about-us .container .contain .image .icon {
    display: none;
  }
  #about-us .container .contain .information {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #about-us .container .contain .information h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  #about-us .container .contain .information p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  #about-us .container .contain .information img {
    transform: none;
    max-width: 200px;
    margin-top: 0;
    align-self: flex-start;
  }
  #our-works {
    padding: 40px 0;
  }
  #our-works .contain {
    max-width: 500px;
    margin: auto;
  }
  #our-works .contain h2 {
    font-size: 1.7rem;
  }
  #our-works .contain .shuffle-filter {
    font-size: 1.1rem;
  }
  #our-works .contain .shuffle-filter li {
    margin: 1rem 0.4rem;
  }
  #our-works .contain .shuffle-container {
    margin-top: 1rem;
  }
  #our-works .contain .shuffle-container .item {
    width: 48%;
    margin: 1%;
  }
}
@media (max-width: 991.98px) and (max-width: 576PX) {
  #our-works .contain .shuffle-container .item {
    width: 98%;
    margin: 10px 1%;
  }
}
@media (max-width: 991.98px) {
  .main-description {
    padding: 40px 0;
  }
  .main-description .contain {
    text-align: initial;
    max-width: 500px;
  }
  .main-description .contain h2 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
  .main-description .contain p {
    font-size: 1rem;
  }
  .main-description .contain p:last-of-type {
    margin-bottom: 2rem;
  }
  .main-description .contain hr {
    margin: 1rem 0;
    border-top: 1px solid #000000;
  }
  .main-description .contain .list {
    flex-wrap: wrap;
  }
  .main-description .contain .list .item {
    width: 100%;
  }
  .main-description .contain .list .item .number {
    font-size: 1rem;
    width: 25px;
    height: 25px;
  }
  .main-description .contain .list .item .info {
    width: calc(100% - 30px);
  }
  .main-description .contain .list span {
    border-left: 0;
    width: 100%;
    margin: 0.6rem 0;
  }
  #faq-section {
    padding: 40px 0;
  }
  #faq-section .contain {
    max-width: 500px;
    margin: auto;
  }
  #faq-section .contain h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  #faq-section .contain #accordion .btn {
    padding: 1rem 0;
  }
  footer {
    padding: 0 0 10px;
    overflow: hidden;
  }
  footer .logo {
    width: 120px;
    margin-top: -30px;
  }
  footer .socials a {
    font-size: 1.3rem;
    margin-inline-end: 0.5rem;
  }
  .fixed-whatsapp-bottom {
    bottom: 50px;
    left: 20px;
  }
  .fixed-whatsapp-bottom svg {
    width: 55px;
    height: 55px;
  }
  .fixed-whatsapp-bottom::before {
    width: 55px;
    height: 55px;
  }
  .modal-images-contain .modal-images {
    width: 100%;
  }
  .modal-images-contain .return {
    width: 100%;
  }
  .modal-images-contain .return span {
    font-size: 1rem !important;
  }
}/*# sourceMappingURL=style.css.map */