@font-face {
  font-family: "Cairo";
  src: url("../assets/webfonts/Cairo-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Cairo";
  src: url("../assets/webfonts/Cairo-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Cairo";
  src: url("../assets/webfonts/Cairo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Cairo";
  src: url("../assets/webfonts/Cairo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Cairo";
  src: url("../assets/webfonts/Cairo-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Cairo";
  src: url("../assets/webfonts/Cairo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Cairo";
  src: url("../assets/webfonts/Cairo-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Cairo";
  src: url("../assets/webfonts/Cairo-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: "cairo";
  box-sizing: border-box !important;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #dfe9eb;
}

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

/* Remove arrows number input  for Chrome, Edge, and Safari */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows number input  for Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.align-desc {
  hyphens: auto;
  text-align: justify !important;
  word-wrap: break-word;
  word-spacing: -2px;

  &:lang(ar) {
    text-align-last: right;
  }
  &:lang(en) {
    text-align-last: left;
  }
}

.btn__primary {
  display: flex;
  height: 54px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  text-align: right;
  font-family: Cairo;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
  @media screen and (max-width: 991px) {
    width: fit-content;
    margin: auto;
    margin-top: 20px;
  }
}

/* start animations */
/* Animation for the line width */
@keyframes moveText {
  0% {
    transform: rotate(270deg) translateX(0); /* Start position */
  }
  50% {
    transform: rotate(270deg) translateX(-10px); /* Move slightly */
  }
  100% {
    transform: rotate(270deg) translateX(0); /* Return to original position */
  }
}
@keyframes pulseWidth {
  0% {
    width: 60px; /* Start at full width */
    transform: scale(1);
  }
  50% {
    width: 50px; /* Shrink to reduced width */
    transform: scale(0.7);
  }
  100% {
    width: 60px; /* Expand back to full width */
    transform: scale(1);
  }
}
/* End animations */

/* About us ANIMATION */

/* @keyframes UpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
} */

@keyframes UpDown {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-40px);
  }
  50% {
    transform: translateY(-40px); /* توقف عند الأعلى */
  }
  90% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0); /* توقف عند الأسفل */
  }
}

@keyframes ImgR_GoDown {
  0% {
    top: 0;
  }
  40% {
    top: 30%;
  }
  50% {
    top: 30%;
  }
  90% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@keyframes ImgL_GoUp {
  0% {
    top: 50%;
  }
  40% {
    top: 30%;
  }
  50% {
    top: 30%;
  }
  90% {
    top: 50%;
  }
  100% {
    top: 50%;
  }
}
@keyframes ImgB_GoLeft {
  0% {
    right: 0;
  }
  40% {
    right: 30%;
  }
  50% {
    right: 30%;
  }
  90% {
    right: 0;
  }
  100% {
    right: 0;
  }
}

@keyframes pulseWidth {
  0% {
    width: 60px; /* Start at full width */
    transform: scale(1);
  }
  50% {
    width: 50px; /* Shrink to reduced width */
    transform: scale(0.7);
  }
  100% {
    width: 60px; /* Expand back to full width */
    transform: scale(1);
  }
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li.slick-active button:before {
  color: #ebcd7d;
  font-size: 10px;
}
.slick-dots li button:before {
  color: #ffffff;
  font-size: 10px;
}

@media screen and (max-width: 700px) {
  .slick-dots {
    bottom: -50px;
  }
}

@media screen and (max-width: 500px) {
  .slick-dots {
    bottom: -70px;
  }
}
