@import url(variables.css);
*,
html {
  box-sizing: border-box;
}
body,
html,
ul {
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: Almarai;
  src: url("../fonts/Almarai/Almarai-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Almarai-bold;
  src: url("../fonts/Almarai/Almarai-Bold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Almarai-extra-bold;
  src: url("../fonts/Almarai/Almarai-ExtraBold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body,
html {
  font-family: Almarai, Arial, sans-serif;
  background-color: var(--white-color);
  direction: rtl;
  scroll-behavior: unset !important;
}
html {
  font-size: 62.5%;
}
ul {
  list-style: none;
}
p {
  text-align: justify;
  line-height: 1.6;
}
li,
p {
  font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
}
a {
  border: none;
  text-decoration: none;
}
a:hover {
  color: inherit;
}
img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
button:focus {
  overflow: none;
  box-shadow: none !important;
}
.loading__spinner {
  text-align: center;
  display: none;
}
#loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid #ededed;
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: 1s ease-in-out infinite spin;
  -webkit-animation: 1s ease-in-out infinite spin;
}
body {
  min-height: 100vh;
}
main {
  min-height: 55rem;
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.mobile-logo {
  display: none;
}
@media only screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
  html {
    font-size: 56.25%;
  }
  .desktop-logo {
    display: none;
  }
  .mobile-logo {
    display: block;
    width: 20rem;
  }
}
@media only screen and (max-width: 480px) {
  html {
    font-size: 50%;
  }
  .mobile-logo {
    width: 18rem;
  }
}
