@font-face {
  font-family: "light";
  src: url(../Fonts/tajawal/Tajawal-Light.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../Fonts/cairo/Cairo-Regular.ttf);
}

@font-face {
  font-family: "medium";
  src: url(../Fonts/tajawal/Tajawal-Medium.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../Fonts/tajawal/Tajawal-Bold.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'light';
}

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

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

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

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

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

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

/***************************** Global Style *****************************/
h1, h2, h3 {
  font-family: "bold";
}

h4, h5, h6 {
  font-family: "medium";
}

p {
  font-size: 15px;
  font-family: 'regular';
  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;
}

/***************************** Animations *****************************/
@-webkit-keyframes loading {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    background: #e51d28;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background: white;
  }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    background: #e51d28;
  }
}
@keyframes loading {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    background: #e51d28;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background: white;
  }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    background: #e51d28;
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
/***************************** Start Edit Coming Soon Page *****************************/
header {
  overflow: hidden;
  height: 100vh;
  background-color: #efe736;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .inner {
  text-align: center;
}

header .inner .logo {
  width: 270px;
  -o-object-fit: contain;
     object-fit: contain;
}

header .inner h3 {
  font-size: 3.5rem;
  color: #000;
}

header .inner .loading {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 25px auto 0 auto;
}

header .inner .loading li {
  height: 0;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 0;
  margin: 0;
  height: 10px;
  width: 10px;
  border: 3px solid #e51d28;
  border-radius: 100%;
  -webkit-transform: transformZ(0);
          transform: transformZ(0);
  -webkit-animation: loading 2s infinite;
          animation: loading 2s infinite;
}

header .inner .loading li:nth-child(1n) {
  left: -20px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

header .inner .loading li:nth-child(2n) {
  left: 0;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

header .inner .loading li:nth-child(3n) {
  left: 20px;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
/*# sourceMappingURL=style.css.map */