@font-face {
  font-family: "Light";
  src: url(../fonts/alfont_com_sst-arabic-light.ttf);
}

@font-face {
  font-family: "Medium";
  src: url(../fonts/alfont_com_AlFont_com_SST-Arabic-Medium.ttf);
}

@font-face {
  font-family: "Bold";
  src: url(../fonts/alfont_com_AlFont_com_SST-Arabic-Bold-1.ttf);
}

* {
  font-family: "Medium";
  direction: rtl;
  text-align: right;
}

body {
  background-color: #f9f9f9;
}

body header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

body header .navbar {
  background-color: transparent !important;
  padding-block: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 768px) {
  body header .navbar {
    background-color: #ffffff !important;
    -webkit-box-shadow: 1px 0 5px rgba(96, 96, 96, 0.35);
            box-shadow: 1px 0 5px rgba(96, 96, 96, 0.35);
  }
}

body header .navbar.scrolled {
  background-color: #ffffff !important;
  -webkit-box-shadow: 1px 0 5px rgba(96, 96, 96, 0.35);
          box-shadow: 1px 0 5px rgba(96, 96, 96, 0.35);
}

body header .navbar .contactBtn {
  background-color: #3f1758;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 30px;
  font-size: 14px;
}

@media (max-width: 768px) {
  body header .navbar .contactBtn {
    margin: 0 auto;
    padding: 10px 50px;
  }
}

body header .navbar .navbar-nav {
  margin-right: 2rem;
}

body header .navbar .navbar-nav .nav-item {
  margin-left: 30px;
}

@media (max-width: 768px) {
  body header .navbar .navbar-nav .nav-item {
    margin-bottom: 20px;
  }
}

body header .navbar .navbar-nav .nav-item .nav-link {
  color: #707070;
  font-size: 14px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 768px) {
  body header .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}

body header .navbar .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  background-color: #3f1758;
  height: 2px;
  width: 0%;
  bottom: 0;
  right: 8px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body header .navbar .navbar-nav .nav-item .nav-link.active {
  color: #3f1758;
}

body header .navbar .navbar-nav .nav-item .nav-link.active::before {
  width: 40%;
}

body main {
  overflow: hidden;
}

body main .homepage .intro {
  background-image: url(../images/path.png);
  background-repeat: no-repeat;
  background-position: center 110%;
  background-size: 90%;
  min-height: 100vh;
  padding-top: 16vh;
}

@media (max-width: 768px) {
  body main .homepage .intro {
    padding-top: 10vh;
    background-image: none;
    min-height: auto;
  }
}

body main .homepage .intro .introCon {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  body main .homepage .intro .introCon {
    padding: 20px;
  }
}

body main .homepage .intro .introCon .introImg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  height: 70vh;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 768px) {
  body main .homepage .intro .introCon .introImg {
    height: 200px;
    margin-bottom: 10px;
  }
}

body main .homepage .intro .introCon .introText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: right;
      -ms-flex-align: right;
          align-items: right;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

body main .homepage .intro .introCon .introText .introTitle {
  font-family: Bold;
  font-size: 40px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  body main .homepage .intro .introCon .introText .introTitle {
    font-size: 35px;
  }
}

body main .homepage .intro .introCon .introText .introDes {
  color: #747474;
  font-size: 14px;
  font-family: Light;
  margin-bottom: 20px;
  width: 80%;
}

@media (max-width: 768px) {
  body main .homepage .intro .introCon .introText .introDes {
    width: 100%;
  }
}

body main .homepage .intro .introCon .introText .exploarMore {
  border-radius: 12px;
  background-color: #3f1758;
  padding: 10px 40px;
  color: #ffffff;
  text-decoration: none;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body main .homepage .ourServices {
  padding: 10vh 0;
}

@media (max-width: 768px) {
  body main .homepage .ourServices {
    padding: 10vh 0 5vh;
  }
}

body main .homepage .ourServices .title {
  font-family: Bold;
  text-align: center;
  font-size: 40px;
  margin-bottom: 30px;
}

body main .homepage .ourServices .serviceCard {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 40px 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .homepage .ourServices .serviceCard:hover {
  -webkit-box-shadow: 0px 3px 35px rgba(96, 96, 96, 0.35);
          box-shadow: 0px 3px 35px rgba(96, 96, 96, 0.35);
}

body main .homepage .ourServices .serviceCard .cardImg {
  margin-bottom: 10px;
}

body main .homepage .ourServices .serviceCard .cardTitle {
  color: #3f1758;
  font-size: 25px;
  font-family: Bold;
  margin-bottom: 10px;
}

body main .homepage .ourServices .serviceCard .cardDes {
  color: #929292;
  font-size: 12px;
  line-height: 25px;
}

body main .homepage .dowanloadApp {
  padding: 10vh 0;
  min-height: 100vh;
}

@media (max-width: 768px) {
  body main .homepage .dowanloadApp {
    padding: 10vh 0;
    min-height: 100vh;
  }
}

body main .homepage .dowanloadApp .dowanloadText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: right;
      -ms-flex-align: right;
          align-items: right;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

body main .homepage .dowanloadApp .dowanloadText .title {
  font-family: Bold;
  font-size: 40px;
  margin-bottom: 20px;
}

body main .homepage .dowanloadApp .dowanloadText .des {
  font-family: Bold;
  font-size: 16px;
  color: #929292;
  margin-bottom: 40px;
}

body main .homepage .dowanloadApp .dowanloadText .appLink {
  display: inline-block;
  margin-left: 20px;
}

body main .homepage .dowanloadApp .dowanloadText .appLink img {
  width: 160px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

body main .homepage .dowanloadApp .downloadImg {
  width: 100%;
  height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 768px) {
  body main .homepage .dowanloadApp .downloadImg {
    height: 300px;
    margin-top: 20px;
  }
}

body main .products {
  padding-top: 20vh;
}

@media (max-width: 768px) {
  body main .products {
    padding-top: 12vh;
  }
}

body main .products .searchForm {
  background-color: #e9e9e9;
  border-radius: 12px;
  padding: 20px 60px;
  position: relative;
  font-size: 14px;
  color: #0e0e0e;
  margin-bottom: 20px;
}

body main .products .searchForm input {
  width: 100%;
  background-color: transparent;
  border: none;
}

body main .products .searchForm input::-webkit-input-placeholder {
  color: #989898;
}

body main .products .searchForm input:-ms-input-placeholder {
  color: #989898;
}

body main .products .searchForm input::-ms-input-placeholder {
  color: #989898;
}

body main .products .searchForm input::placeholder {
  color: #989898;
}

body main .products .searchForm input:focus {
  outline: none;
}

body main .products .searchForm button {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

body main .products .searchForm button.filter {
  left: 20px;
}

body main .products .searchForm button.submitBtn {
  right: 20px;
}

body main .products .productCard {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIj48cmVjdCB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHJ4PSIxMSIgcnk9IjExIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJub25lIiBzdHJva2U9IiMzZjE3NTgiIHN0cm9rZS13aWR0aD0iNCIgc3Ryb2tlLWRhc2hhcnJheT0iNiwgMTQiIHN0cm9rZS1kYXNob2Zmc2V0PSIwIiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+PC9zdmc+");
  background-size: 100%;
  min-height: 200px;
  width: 100%;
  padding: 25px;
  display: inline-block;
  border-radius: 11px;
  background-color: #ffffff;
  position: relative;
  margin-bottom: 20px;
}

body main .products .productCard .disCount {
  position: absolute;
  top: 40px;
  left: 40px;
  color: #ffffff;
  font-size: 14px;
  background-color: #f8485e;
  padding: 5px 20px;
  border-radius: 3px;
}

body main .products .productCard .cardImg {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  object-fit:cover;
}

body main .products .productCard .cardText {
  color: #0e0e0e;
  font-size: 20px;
}

body main .products .productCard .price {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main .products .productCard .price .before {
  font-size: 22px;
  font-family: Bold;
  color: #3f1758;
  margin-left: 20px;
}

body main .products .productCard .price .after {
  color: #717171;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body main .products .productCard .price .after::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #3f1758;
  position: absolute;
  top: 55%;
  left: 0;
}

body main .products .productCard .buyCon .buyBtn {
  background-color: #3f1758;
  border-radius: 5px;
  width: 100%;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  font-family: Light;
  border: none;
}

body main .products .productCard .buyCon .reportBtn {
  font-family: Light;
  border: none;
  background-color: transparent;
  padding: 5px 20px;
  border-bottom: 2px solid #3f1758;
  margin: 0 auto;
}

body main .products .seeMore {
  border: none;
  background-color: #3f1758;
  padding: 15px 80px;
  border-radius: 15px;
  color: #ffffff;
  margin: 0 auto;
  display: block;
  margin-bottom: 10vh;
}

body main .products .seeMore img {
  width: 15px;
  margin-right: 10px;
}

body footer {
  background-image: url(../images/path.png);
  background-repeat: no-repeat;
  background-position: center -10%;
  background-size: 90%;
  min-height: 100vh;
  padding: 10vh 0 5vh;
}

@media (max-width: 768px) {
  body footer {
    min-height: auto;
    background-image: none;
    padding: 0 0 5vh;
  }
}

body footer .footerBox {
  min-height: 85vh;
  background-color: #3f1758;
  border-radius: 20px;
  padding: 20px;
}

@media (max-width: 768px) {
  body footer .footerBox {
    min-height: auto;
  }
}

body footer .footerBox .susgBox {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px 40px;
}

@media (max-width: 768px) {
  body footer .footerBox .susgBox {
    padding: 30px;
  }
}

body footer .footerBox .susgBox .susgText .subtitle {
  color: #3f1758;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  body footer .footerBox .susgBox .susgText .subtitle {
    margin-bottom: 20px;
  }
}

body footer .footerBox .susgBox .susgText .title {
  font-size: 35px;
  font-family: Bold;
  color: #000;
}

@media (max-width: 768px) {
  body footer .footerBox .susgBox .susgText .title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}

body footer .footerBox .susgBox .footerForm .formItem {
  position: relative;
  width: 100%;
}

body footer .footerBox .susgBox .footerForm .formItem .inputIcon {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

body footer .footerBox .susgBox .footerForm .formItem input,
body footer .footerBox .susgBox .footerForm .formItem textarea {
  background-color: #efefef;
  border: none;
  border-radius: 10px;
  padding: 18px 20px;
  padding-right: 45px;
  width: 100%;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-size: 14px;
  resize: none;
}

body footer .footerBox .susgBox .footerForm .formItem input::-webkit-input-placeholder,
body footer .footerBox .susgBox .footerForm .formItem textarea::-webkit-input-placeholder {
  color: #bbbbbb;
}

body footer .footerBox .susgBox .footerForm .formItem input:-ms-input-placeholder,
body footer .footerBox .susgBox .footerForm .formItem textarea:-ms-input-placeholder {
  color: #bbbbbb;
}

body footer .footerBox .susgBox .footerForm .formItem input::-ms-input-placeholder,
body footer .footerBox .susgBox .footerForm .formItem textarea::-ms-input-placeholder {
  color: #bbbbbb;
}

body footer .footerBox .susgBox .footerForm .formItem input::placeholder,
body footer .footerBox .susgBox .footerForm .formItem textarea::placeholder {
  color: #bbbbbb;
}

body footer .footerBox .susgBox .footerForm .formItem textarea {
  padding-right: 20px;
}

body footer .footerBox .susgBox .footerForm .formItem .submitBtn {
  border: none;
  background-color: #3f1758;
  color: #ffffff;
  border-radius: 11px;
  padding: 8px 40px;
  position: absolute;
  bottom: -10px;
  left: -10px;
  border: 7px solid white;
}

body footer .footerBox .susgBox .footerForm .formItem .submitBtn img {
  margin-right: 5px;
}

body footer .footerBox .footerLinksCon {
  padding-block: 10vh;
}

@media (max-width: 768px) {
  body footer .footerBox .footerLinksCon {
    padding-block: 5vh;
  }
}

body footer .footerBox .footerLinksCon .footerLogo {
  margin: 0 auto;
  display: block;
  width: 40%;
  margin-bottom: 5px;
}

body footer .footerBox .footerLinksCon .coName {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}

body footer .footerBox .footerLinksCon .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body footer .footerBox .footerLinksCon .media .mediaLink {
  background-color: #ffffff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  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;
  margin: 0 7px;
}

body footer .footerBox .footerLinksCon .contactCon {
  margin-top: 20px;
}

body footer .footerBox .footerLinksCon .contactCon .contactLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  font-family: Bold;
  -webkit-text-decoration: center;
          text-decoration: center;
  margin-bottom: 20px;
}

body footer .footerBox .footerLinksCon .contactCon .contactLink .imgCon {
  background-color: #ffffff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  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;
  margin-left: 10px;
}

body footer .footerBox .footerLinksCon .LinksCon .title {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 15px;
  font-family: Bold;
}

body footer .footerBox .footerLinksCon .LinksCon .link {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.8;
  display: block;
  text-decoration: none;
}

body footer .footerBox .copyRight {
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 5vh;
}
/*# sourceMappingURL=style.css.map */