@import url("https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap");
:target {
  scroll-margin-top: 100px;
}

.fancybox__container {
  z-index: 1999;
}

.fancybox__track,
.fancybox__content,
.carousel__track {
  direction: ltr !important;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background: #ffffff;
  height: 300px;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "El Messiri", sans-serif;
}

.preloader {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.preloader .preloaderImg {
  width: 120px;
  height: 120px;
  -webkit-mask-image: url("../images/logo.svg");
          mask-image: url("../images/logo.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: relative;
}

.preloader .preloaderImg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 200px;
  background-color: #B93730;
  z-index: 2;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-animation: slide-up 1.5s forwards;
          animation: slide-up 1.5s forwards;
}

.preloader .preloaderImg::before {
  content: "";
  width: 200px;
  height: 200px;
  background-image: url("../images/logo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(1) opacity(0.5);
          filter: grayscale(1) opacity(0.5);
}

@-webkit-keyframes slide-up {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes slide-up {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

body {
  background-color: #ffffff;
  overflow-x: hidden;
  position: relative;
}

html[lang="ar"] {
  direction: rtl;
}

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

a {
  text-decoration: none;
}

button,
input,
textarea {
  border: none;
  outline: none;
  background: none;
}

.row {
  margin: 0;
  padding: 0;
}

header {
  padding: 10px 0px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

@media screen and (max-width: 768px) {
  header {
    padding: 8px 10px;
  }
}

header nav {
  padding: 16px 0;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  header nav {
    padding: 10px 0;
  }
}

header nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header nav .logo img {
  height: 58px;
}

@media screen and (max-width: 768px) {
  header nav .logo img {
    height: 50px;
  }
}

header nav .nav_links {
  gap: 32px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header nav .nav_links a {
  color: #000;
  font-size: 1.1rem;
}

header nav .nav_links a.active {
  right: -16px;
  color: #B93730;
}

header nav .nav_links a:hover {
  color: #B93730;
}

@media screen and (max-width: 768px) {
  header nav .nav_links {
    position: absolute;
    top: -16px;
    bottom: -16px;
    right: calc(-50% - 16px);
    height: calc(100vh + 16px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: white;
    width: 50%;
    padding: 48px 32px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  header nav .nav_links a {
    color: gray;
  }
  header nav .nav_links.active {
    right: -16px;
    color: #B93730;
  }
}

header nav .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

header nav .actions button {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header nav .actions .toggler {
  display: none;
  color: #B93730;
}

@media screen and (max-width: 768px) {
  header nav .actions .toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

header nav.sticky {
  padding: 10px 42px !important;
  background: #ffffff;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

@media screen and (max-width: 768px) {
  header nav.sticky {
    padding: 10px !important;
  }
}

main .hero_section {
  width: 100%;
  position: relative;
  padding: 100px 0;
  background-color: #f6f5f8cc;
}

@media screen and (max-width: 768px) {
  main .hero_section {
    padding: 120px 0 30px 0;
  }
}

main .hero_section .hero-img {
  position: absolute;
  width: 80px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

main .hero_section .hero-img.top-left {
  top: 0px;
  left: 0px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

main .hero_section .hero-img.bottom-right {
  bottom: 0px;
  right: 0px;
}

@media screen and (max-width: 768px) {
  main .hero_section .hero-img {
    width: 50px;
  }
}

main .hero_section .container .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .hero_section .container .row .text-content h1 {
  font-size: 2.6rem;
  color: #000;
  font-weight: bold;
}

main .hero_section .container .row .text-content h1 span {
  color: #B93730;
}

main .hero_section .container .row .text-content p {
  font-size: 0.8rem;
  color: gray;
  margin: 20px 0;
}

main .hero_section .container .row .text-content .btn-primary {
  padding: 10px 20px;
  background-color: transparent;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: bold;
  font-size: 17px;
  font-family: inherit;
  text-transform: uppercase;
  color: #B93730;
  text-decoration: none;
  display: inline-block;
  z-index: 1;
  border: 1px solid #B93730;
}

main .hero_section .container .row .text-content .btn-primary::before, main .hero_section .container .row .text-content .btn-primary::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: #B93730;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

main .hero_section .container .row .text-content .btn-primary::before {
  top: -1em;
  left: -1em;
}

main .hero_section .container .row .text-content .btn-primary::after {
  left: calc(100% + 1em);
  top: calc(100% + 1em);
}

main .hero_section .container .row .text-content .btn-primary:hover {
  color: white;
}

main .hero_section .container .row .text-content .btn-primary:hover::before, main .hero_section .container .row .text-content .btn-primary:hover::after {
  height: 410px;
  width: 410px;
}

main .hero_section .container .row .text-content .btn-primary:active {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

main .hero_section .container .row .image-content img {
  margin: 60px 40px 0 0;
  max-width: 70%;
}

main .services-section {
  padding: 60px 0;
  text-align: center;
  color: gray;
}

main .services-section .section-title {
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #B93730;
  position: relative;
  display: inline-block;
}

main .services-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 4px;
  background-color: #ffcd30;
  border-radius: 3px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

main .services-section .section-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: gray;
}

main .services-section .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .services-section .service-box {
  background-color: #f6f5f8cc;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin: 10px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  max-width: 280px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  main .services-section .service-box {
    max-width: 100%;
  }
}

main .services-section .service-box:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

main .services-section .service-box i {
  font-size: 24px;
  margin-bottom: 15px;
}

main .services-section .service-box h3 {
  font-size: 1.5rem;
  color: #B93730;
  margin-bottom: 10px;
}

main .services-section .service-box p {
  font-size: 1rem;
  color: gray;
}

main .about-us {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

main .about-us .image-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

main .about-us .image-container::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url("../images/shape2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%) rotate(10deg);
          transform: translate(-50%, -50%) rotate(10deg);
}

main .about-us .image-container img {
  max-width: 320px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  -webkit-animation: moveTopBottom 2s ease-in-out infinite alternate;
          animation: moveTopBottom 2s ease-in-out infinite alternate;
}

@media (max-width: 767px) {
  main .about-us .image-container img {
    margin-top: 20px;
    max-width: 280px;
  }
}

@-webkit-keyframes moveTopBottom {
  from {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  to {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}

@keyframes moveTopBottom {
  from {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  to {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}

main .about-us h2 {
  font-weight: 700;
  font-size: 1.9rem;
  color: #B93730;
}

main .about-us p {
  color: gray;
  font-size: 1.1rem;
  margin: 30px 0px;
  line-height: 1.7;
}

main .about-us .btn-primary {
  padding: 10px 20px;
  background-color: transparent;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: bold;
  font-size: 17px;
  font-family: inherit;
  text-transform: uppercase;
  color: #B93730;
  text-decoration: none;
  display: inline-block;
  z-index: 1;
  border: 1px solid #B93730;
}

main .about-us .btn-primary::before, main .about-us .btn-primary::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: #B93730;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

main .about-us .btn-primary::before {
  top: -1em;
  left: -1em;
}

main .about-us .btn-primary::after {
  left: calc(100% + 1em);
  top: calc(100% + 1em);
}

main .about-us .btn-primary:hover {
  color: white;
}

main .about-us .btn-primary:hover::before, main .about-us .btn-primary:hover::after {
  height: 410px;
  width: 410px;
}

main .about-us .btn-primary:active {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

@media (max-width: 767px) {
  main .about-us .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

main .features-section {
  position: relative;
  padding: 60px 0;
}

main .features-section::before {
  content: "";
  position: absolute;
  top: 40%;
  right: -10px;
  width: 100px;
  height: 100%;
  background: url("../images/bg-triangle.png") no-repeat;
  background-size: contain;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  main .features-section::before {
    display: none;
  }
}

main .features-section .text-content h2 {
  font-size: 1.9rem;
  font-weight: bold;
  color: #B93730;
}

main .features-section .text-content p {
  font-size: 1.2rem;
  margin: 40px 0px;
  color: gray;
}

main .features-section .feature-card {
  background: #f6f5f8cc;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
          box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  height: 100%;
}

main .features-section .feature-card i {
  font-size: 20px;
  color: #B93730;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-bottom: 10px;
}

main .features-section .feature-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #B93730;
}

main .features-section .feature-card p {
  font-size: 1rem;
  color: gray;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

main .features-section .feature-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

main .download-section {
  padding: 80px 0 60px 0;
  color: gray;
}

main .download-section .container {
  background-color: #f6f5f8cc;
  border-radius: 15px;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  main .download-section .container {
    text-align: center;
  }
}

main .download-section .text-content h2 {
  font-size: 1.9rem;
  font-weight: bold;
  color: #B93730;
}

main .download-section .text-content p {
  font-size: 1.2rem;
  margin: 20px 0;
  color: gray;
}

main .download-section .text-content ul {
  list-style: none;
  padding: 0;
}

main .download-section .text-content ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

main .download-section .text-content .highlight {
  color: #B93730;
}

main .download-section .text-content .download-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  main .download-section .text-content .download-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

main .download-section .text-content .download-buttons .store-button {
  width: 140px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

main .download-section .text-content .download-buttons .store-button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (max-width: 768px) {
  main .download-section .text-content .download-buttons .store-button {
    width: 120px;
  }
}

main .download-section .image-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: visible;
}

main .download-section .image-content img {
  max-width: 80%;
  height: auto;
  -webkit-transform: scaleY(1.3) translateY(-20%);
          transform: scaleY(1.3) translateY(-20%);
}

@media (max-width: 768px) {
  main .download-section .image-content img {
    max-width: 100%;
  }
}

main .contact-us {
  padding: 60px 0;
}

main .contact-us .map {
  width: 100%;
  height: 260px;
  border-radius: 8px;
}

main .contact-us .header_contact h2 {
  font-size: 1.9rem;
  font-weight: bold;
  color: #B93730;
}

main .contact-us .header_contact p {
  font-size: 1.2rem;
  margin: 40px 0px;
  color: gray;
}

main .contact-us .contact-form input,
main .contact-us .contact-form textarea {
  width: 100%;
  padding: 12px;
  background-color: #f6f5f8cc;
  border: none;
  border-radius: 8px;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

main .contact-us .contact-form input:focus,
main .contact-us .contact-form textarea:focus {
  border-color: #B93730;
  -webkit-box-shadow: 0 0 5px #B93730;
          box-shadow: 0 0 5px #B93730;
}

main .contact-us .contact-form input::-webkit-input-placeholder,
main .contact-us .contact-form textarea::-webkit-input-placeholder {
  color: gray;
  opacity: 1;
}

main .contact-us .contact-form input:-ms-input-placeholder,
main .contact-us .contact-form textarea:-ms-input-placeholder {
  color: gray;
  opacity: 1;
}

main .contact-us .contact-form input::-ms-input-placeholder,
main .contact-us .contact-form textarea::-ms-input-placeholder {
  color: gray;
  opacity: 1;
}

main .contact-us .contact-form input::placeholder,
main .contact-us .contact-form textarea::placeholder {
  color: gray;
  opacity: 1;
}

main .contact-us .contact-info a,
main .contact-us .contact-info p {
  color: gray;
}

main .contact-us .contact-info .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

main .contact-us .contact-info .info-box i {
  font-size: 1.5rem;
  color: #B93730;
}

main .contact-us .btn-primary {
  padding: 10px 20px;
  background-color: transparent;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: bold;
  font-size: 17px;
  font-family: inherit;
  text-transform: uppercase;
  color: #B93730;
  text-decoration: none;
  display: inline-block;
  z-index: 1;
  border: 1px solid #B93730;
}

main .contact-us .btn-primary::before, main .contact-us .btn-primary::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: #B93730;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

main .contact-us .btn-primary::before {
  top: -1em;
  left: -1em;
}

main .contact-us .btn-primary::after {
  left: calc(100% + 1em);
  top: calc(100% + 1em);
}

main .contact-us .btn-primary:hover {
  color: white;
}

main .contact-us .btn-primary:hover::before, main .contact-us .btn-primary:hover::after {
  height: 410px;
  width: 410px;
}

main .contact-us .btn-primary:active {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.footer {
  background-color: #f6f5f8cc;
  color: #000;
  padding: 50px 0;
}

.footer .logo img {
  height: 70px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
}

.footer .footer-links li {
  margin-bottom: 10px;
}

.footer .footer-links a {
  color: gray;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer .footer-links a:hover {
  color: #B93730;
}

.footer .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer .info-box i {
  font-size: 18px;
  color: #B93730;
}

.footer .info-box a {
  color: gray;
  text-decoration: none;
}

.footer .info-box a:hover {
  color: #B93730;
}

.footer .social-icons a {
  display: inline-block;
  font-size: 20px;
  color: gray;
  margin-right: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer .social-icons a:hover {
  color: #B93730;
}

.footer .footer-bottom {
  padding-top: 20px;
  font-size: 14px;
  color: gray;
}

.footer .footer-bottom span {
  color: #B93730;
}
/*# sourceMappingURL=style.css.map */