/**********************************************
    Start colors $ main style
**********************************************/
* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Almarai', sans-serif;
}

*::-moz-selection {
  background-color: #E55416;
  color: #fff;
}

*::selection {
  background-color: #E55416;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #E55416;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #a43b0f;
}

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #555;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

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

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #E55416;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, #ee9874, #E55416);
  text-align: center;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn img {
  width: 25px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}

@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar {
  position: relative;
  z-index: 9;
}

.navbar.navbar-fixed-top.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 999;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(229, 84, 22, 0.2);
          box-shadow: 0px 2px 5px 0px rgba(229, 84, 22, 0.2);
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.navbar.navbar-fixed-top.scrolled .navbar-brand img {
  width: 50px;
}

.navbar .navbar-brand img {
  width: 85px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .nav-link {
  margin: 0 10px;
  color: #333;
  font-weight: bold;
  position: relative;
  font-size: 15px;
  text-align: center;
}

.navbar .nav-link::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: rgba(229, 84, 22, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
}

.navbar .nav-link.active, .navbar .nav-link:hover {
  color: #E55416;
}

.navbar .nav-link.active::before, .navbar .nav-link:hover::before {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #E55416;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #E55416;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

footer {
  padding: 70px 0 0 0;
  position: relative;
  overflow: hidden;
}

footer .content {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

footer .content .logo {
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}

footer .content .p {
  color: #888;
  font-size: 12px;
  line-height: 1.6rem;
}

footer .content .social-links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: transparent;
  border: 1px solid #E55416;
  color: #E55416;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  text-align: center;
}

footer .content .social-links a:hover {
  background-color: #E55416;
  color: #fff;
}

footer .content .title {
  font-weight: bold;
  color: #E55416;
  margin-bottom: 25px;
}

footer .content .links a {
  display: block;
  margin: 15px 0;
  color: #888;
}

footer .content .links a:hover {
  color: #E55416;
  font-weight: bold;
}

footer .content .app-links img {
  width: 140px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 10px;
}

footer .content .app-links img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 15px 0 #ddd;
          box-shadow: 0 0 15px 0 #ddd;
}

footer .copyright {
  padding: 15px 0;
  border-top: 1px solid #ccc;
  position: relative;
  z-index: 1;
}

footer .copyright .p {
  font-weight: bold;
  color: #777;
  margin-bottom: 0;
  text-align: center;
}

footer .copyright .alyoum_link {
  color: #E55416;
  font-weight: bold;
  margin: 0 3px;
}

footer .copyright .alyoum_link:hover {
  color: #ee9874;
}

footer .item {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 170px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Public Classes
**********************************************/
.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sec-heading .subtitle {
  font-weight: bold;
  color: #E55416;
}

.sec-heading .subtitle::after {
  content: '';
  width: 50px;
  height: 1px;
  border-radius: 10px;
  display: block;
  background-color: #E55416;
  margin: 10px auto 0 auto;
}

.sec-heading .title {
  color: #061937;
  font-weight: bold;
}

.sec-heading .p {
  line-height: 1.7rem;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
header {
  position: relative;
  overflow: hidden;
}

header .header-content {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

header .header-content .header-img {
  width: 100%;
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}

header .header-content .text-box {
  padding: 2vw 3vw;
}

header .header-content .text-box .subtitle {
  color: #002140;
}

header .header-content .text-box .title {
  color: #061937;
  font-weight: bold;
  line-height: 4rem;
}

header .header-content .text-box .title b {
  color: #E55416;
  font-weight: bold;
}

header .header-content .text-box .p {
  line-height: 2rem;
  color: #002140;
}

header .header-content .text-box .form-group {
  position: relative;
}

header .header-content .text-box .form-group .form-control {
  height: 55px;
  border-radius: 25px;
  background-color: #f3f3f3;
  border: 1px solid #f3f3f3;
  padding-right: 50px;
  font-size: 13px;
  -webkit-box-shadow: 0 0 15px 0 #ddd;
          box-shadow: 0 0 15px 0 #ddd;
}

header .header-content .text-box .form-group .submit-btn {
  position: absolute;
  right: 12px;
  top: 14px;
  color: #E55416;
  background-color: transparent;
  border: transparent;
}

header .pattern {
  position: absolute;
  top: -250px;
  right: -372px;
}

header .pattern2 {
  position: absolute;
  left: -4%;
  top: 30%;
  width: 35%;
}

.features-sec {
  position: relative;
  padding: 70px 0;
}

.features-sec .feature_card .img-box {
  padding: 15px;
  border-radius: 25px;
  border: 1px solid #ddd;
  position: relative;
  width: 250px;
  height: 250px;
  display: block;
  margin: auto;
}

.features-sec .feature_card .img-box .content {
  background-color: #fff;
  -webkit-box-shadow: 0 0 100px 0 rgba(229, 84, 22, 0.3);
          box-shadow: 0 0 100px 0 rgba(229, 84, 22, 0.3);
  width: 100%;
  height: 100%;
  line-height: 200px;
  border-radius: 25px;
  text-align: center;
}

.features-sec .feature_card .img-box .content img {
  width: 170px;
  height: 125px;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
}

.features-sec .feature_card .title {
  font-weight: bold;
  color: #101010;
}

.features-sec .feature_card:hover .main-img {
  -webkit-animation: tada 2s both;
          animation: tada 2s both;
}

.features-sec .feature_card:hover .title {
  color: #E55416 !important;
}

.app-features {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.app-features .sec-content {
  position: relative;
  z-index: 1;
}

.app-features .sec-content .text-box {
  padding: 3vw 0;
}

.app-features .sec-content .text-box .title {
  font-weight: bold;
  color: #061937;
  line-height: 3.5rem;
}

.app-features .sec-content .text-box .title b {
  font-weight: bold;
  color: #E55416;
}

.app-features .sec-content .text-box .p {
  line-height: 2rem;
  color: #002140;
}

.app-features .sec-content .text-box .link-btn {
  padding: .8rem 2.35rem;
  background-color: #E55416;
  color: #fff;
  border-radius: 15px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: bold;
  -webkit-box-shadow: 0 5px 25px 0 rgba(229, 84, 22, 0.2);
          box-shadow: 0 5px 25px 0 rgba(229, 84, 22, 0.2);
}

.app-features .sec-content .text-box .link-btn:hover {
  background-color: #c14815;
}

.app-features .sec-content .main-img {
  width: 100%;
  height: 700px;
  -o-object-fit: contain;
     object-fit: contain;
}

.app-features .sec-content .main-img.img2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 55px;
  display: block;
  margin: auto;
  max-width: 100%;
}

.app-features .item1 {
  position: absolute;
  right: -8%;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  width: 18%;
}

.app-features .item2 {
  width: 40%;
  display: block;
  margin-right: auto;
  margin-top: 20%;
  -o-object-fit: contain;
     object-fit: contain;
}

.app-features .item2.item22 {
  width: 50%;
}

.app-features .pattern {
  position: absolute;
  left: -30%;
  top: -50px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.app-features .pattern2 {
  left: unset;
  right: -30%;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.delievery-sec {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.delievery-sec .sec-heading .title {
  position: relative;
}

.delievery-sec .sec-heading .title::after {
  content: '';
  width: 50px;
  height: 2px;
  border-radius: 10px;
  display: block;
  background-color: #E55416;
  margin: 10px auto 0 auto;
}

.delievery-sec .del_card {
  background-color: #fff;
  border-radius: 25px;
  padding: 2rem;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin-bottom: 30px;
}

.delievery-sec .del_card .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
  background-color: rgba(229, 84, 22, 0.2);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  overflow: hidden;
}

.delievery-sec .del_card .icon img {
  width: 50px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.delievery-sec .del_card .text-content {
  margin-top: 25px;
}

.delievery-sec .del_card .text-content .title {
  color: #061937;
  font-weight: bold;
  margin-bottom: 10px;
}

.delievery-sec .del_card .text-content .p {
  line-height: 1.7rem;
  color: #888;
  font-size: 14px;
  margin-bottom: 0;
}

.delievery-sec .del_card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 35px 0 rgba(229, 84, 22, 0.2);
          box-shadow: 0 10px 35px 0 rgba(229, 84, 22, 0.2);
}

.delievery-sec .del_card:hover .icon {
  background-color: #e55416;
}

.delievery-sec .del_card:hover .icon img {
  -webkit-filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(333deg) brightness(190%) contrast(110%);
          filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(333deg) brightness(190%) contrast(110%);
  -webkit-animation: wobble-hor-bottom 0.8s both;
          animation: wobble-hor-bottom 0.8s both;
}

.delievery-sec .item {
  position: absolute;
  right: -25px;
  -o-object-fit: contain;
     object-fit: contain;
  top: 30px;
  width: 15%;
}

.joining-sec {
  position: relative;
  padding: 100px 0;
  background-color: #FFFAF2;
}

.joining-sec .text-box .title {
  font-weight: bold;
}

.joining-sec .text-box .p {
  font-size: 16px;
  line-height: 2rem;
}

.joining-sec .text-box .btns-wrapper {
  display: inline-block;
}

.joining-sec .text-box .btns-wrapper .butn {
  padding: .8rem 3.35rem;
  background-color: #E55416;
  color: #fff;
  border-radius: 15px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: bold;
  margin: 5px;
  -webkit-box-shadow: 0 5px 25px 0 rgba(229, 84, 22, 0.2);
          box-shadow: 0 5px 25px 0 rgba(229, 84, 22, 0.2);
}

.joining-sec .text-box .btns-wrapper .butn.white-btn {
  background-color: #fff;
  color: #E55416;
}

.joining-sec .text-box .btns-wrapper .butn:hover {
  background-color: #c14815;
  color: #fff;
}

/**********************************************
    Start Edit Dark theme 
**********************************************/
.themeToggler {
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}

.themeToggler .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.themeToggler .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.themeToggler .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.themeToggler .slider:before {
  position: absolute;
  content: "Dark";
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #E55416;
  background-color: #0F0F08;
  color: #E55416;
  -webkit-box-shadow: 0 0px 15px #2020203d;
          box-shadow: 0 0px 15px #2020203d;
}

.themeToggler input:checked + .slider {
  background-color: #eee;
}

.themeToggler input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #E55416;
          box-shadow: 0 0 1px #E55416;
}

.themeToggler input:checked + .slider:before {
  content: "Light";
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  background-color: #fad8c9;
  border: 1px solid #E55416;
  color: #E55416;
}

.themeToggler .slider.round {
  border-radius: 34px;
}

.themeToggler .slider.round:before {
  border-radius: 50%;
}

.theme-dark .bg-color {
  background-color: #1E1B1B;
}

.theme-dark .sec-heading .title {
  color: #fff;
}

.theme-dark .sec-heading .p {
  color: #ccc;
}

.theme-dark .logo {
  -webkit-filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(333deg) brightness(110%) contrast(110%);
          filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(333deg) brightness(110%) contrast(110%);
}

.theme-dark .navbar.navbar-fixed-top.scrolled {
  background-color: #101010;
}

.theme-dark .navbar .nav-link {
  color: #eee;
}

.theme-dark .navbar .nav-link.active, .theme-dark .navbar .nav-link:hover {
  color: #E55416;
}

.theme-dark header .pattern {
  opacity: .1;
}

.theme-dark header .text-box .subtitle {
  color: #eee;
}

.theme-dark header .text-box .title, .theme-dark header .text-box b {
  color: #fff;
}

.theme-dark header .text-box .p {
  color: #ddd;
}

.theme-dark .features-sec .feature_card .img-box {
  border: 1px solid #191717;
}

.theme-dark .features-sec .feature_card .img-box .content {
  background-color: transparent !important;
}

.theme-dark .features-sec .feature_card .title {
  color: #fff;
}

.theme-dark .app-features .pattern {
  opacity: .1;
}

.theme-dark .app-features .sec-content .text-box .title {
  color: #fff;
}

.theme-dark .app-features .sec-content .text-box .p {
  color: #ccc;
}

.theme-dark .delievery-sec .del_card {
  background-color: #1E1B1B;
}

.theme-dark .delievery-sec .del_card .title {
  color: #fff;
}

.theme-dark .delievery-sec .del_card .p {
  color: #ddd;
}

.theme-dark .joining-sec {
  background-color: #171515;
}

.theme-dark .joining-sec .text-box .title {
  color: #fff;
}

.theme-dark .joining-sec .text-box .p {
  color: #ddd;
}
/*# sourceMappingURL=style.css.map */