:root {
  --moz-box-sizing: border-box;
  box-sizing: border-box;
  /* variables */
  --main-co: #242c5c;
  --sec-co: #b4925a;
  --text-co: #0e1f1f;
  --border-co: #959595;
  --white-co: #ffffff;
}

/**********************************/
/********** General CSS ***********/
/**********************************/
body {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  direction: rtl;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

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

ol {
  padding: 0rem;
  list-style: none;
}

blockquote {
  margin-bottom: 0rem;
}

/**********************************/
/*************  header ************/
/**********************************/
header {
  position: relative;
  z-index: 1500;
  box-shadow: 0px 0px 8px -6px var(--main-co);
}
header nav {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
header nav .navbar-toggler {
  margin: 1rem 0rem;
}
header nav .navbar-toggler:focus {
  box-shadow: none;
}
header nav .menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
header nav .menu ul.links {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap-reverse;
}
header nav .menu ul.links li a {
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem;
  color: var(--text-co);
}
header nav .menu ul.links li.active a,
header nav .menu ul.links li:hover a {
  color: var(--sec-co);
}
header nav .menu ul.links .join {
  display: none;
}
header nav .menu .stores {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  cursor: pointer;
}
header nav .menu .stores img {
  width: 135px;
  height: 40px;
}
header nav .logo {
  width: 130px;
  max-height: 65px;
  overflow: hidden;
}
header nav .logo img {
  width: 100%;
  height: 100%;
}
header .headFixed {
  width: 100%;
  background-color: #fcf7ed;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/**********************************/
/*************  hiro ************/
/**********************************/
.hiro {
  background-color: #fbfcfc;
}
.hiro .cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  gap: 0.5rem;
  flex-wrap: wrap-reverse;
  padding: 3rem 1rem;
}
.hiro .cont .image {
  width: 49%;
}
.hiro .cont .image img {
  max-width: 320px;
}
.hiro .cont .text {
  padding-top: 3rem;
  width: 50%;
  text-align: right;
}
.hiro .cont .text h1 {
  margin-bottom: 2rem;
  color: var(--sec-co);
}
.hiro .cont .text p {
  margin-bottom: 2rem;
  color: var(--text-co);
  line-height: 1.8;
  text-align: right;
  font-weight: 500;
  direction: rtl;
}
.hiro .cont .text .stores {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  cursor: pointer;
}
.hiro .cont .text .stores img {
  width: 135px;
  height: 40px;
}

/* ______________________________________________________________*/
/* _____________________ Media query ____________________________*/
/* ______________________________________________________________*/
@media (max-width: 450px) {
  header nav .menu {
    padding: 1rem;
    order: 2;
  }
  header nav .menu ul.links li {
    text-align: left;
    width: 100%;
  }
  header nav .logo {
    order: 1;
  }
  .hiro .cont {
    justify-content: center;
  }
  .hiro .cont .image {
    text-align: center;
    width: 100%;
  }
  .hiro .cont .text {
    width: 100%;
  }
}
@media (min-width: 451px) and (max-width: 767px) {
  header nav .menu {
    padding: 1rem;
    order: 2;
  }
  header nav .menu ul.links li {
    text-align: left;
    width: 100%;
  }
  header nav .logo {
    order: 1;
  }
  .hiro .cont {
    justify-content: center;
  }
  .hiro .cont .image {
    width: 100%;
    text-align: center;
  }
  .hiro .cont .text {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header nav .menu {
    padding: 1rem;
    order: 2;
  }
  header nav .menu ul.links li {
    text-align: left;
    width: 100%;
  }
  header nav .logo {
    order: 1;
  }
  .hiro .cont {
    justify-content: center;
  }
  .hiro .cont .image {
    text-align: center;
    width: 100%;
  }
  .hiro .cont .text {
    width: 100%;
  }
}/*# sourceMappingURL=app.css.map */
