:root {
  --animate-delay: 1s;
}

* {
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  box-sizing: border-box !important;
}

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

html {
  scroll-behavior: smooth;
}

.highlight__text {
  background-color: #f9722f;
}

body {
  height: 3000px;
}

/* 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: #f9722f;
}

/* 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;
  }
}

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

/* start animations */

/* Animation for the line width */
@keyframes moveText {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes pulseWidth {
  0% {
    width: 60px;
    /* Start at full width */
    /* transform: scale(1); */
  }

  50% {
    width: 30px;
    /* Shrink to reduced width */
    /* transform: scale(0.7); */
  }

  100% {
    width: 60px;
    /* Expand back to full width */
    /* transform: scale(1); */
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* End animations */

.custom-container-nav {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.custom-container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  height: 100%;
}

@media (min-width: 576px) {

  .custom-container,
  .custom-container-nav {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .custom-container,
  .custom-container-nav {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .custom-container,
  .custom-container-nav {
    max-width: calc(100% - 80px);
  }
}

@media (min-width: 1200px) {

  .custom-container,
  .custom-container-nav {
    max-width: calc(100% - 140px);
  }
}

@media (min-width: 1400px) {

  .custom-container,
  .custom-container-nav {
    max-width: calc(100% - 280px);
  }
}

/* ضبط box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* منع التكبير الأفقي */
/* html,
body {
  overflow-x: hidden;
} */

/* الحاوية الرئيسية */
.custom-container,
.custom-container-nav {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

@media (min-width: 576px) {

  .custom-container,
  .custom-container-nav {
    max-width: 600px;
    /* زيادة العرض قليلاً */
  }
}

@media (min-width: 900px) {

  .custom-container,
  .custom-container-nav {
    max-width: 750px;
    /* زيادة العرض قليلاً */
  }
}

@media (min-width: 1200px) {

  .custom-container,
  .custom-container-nav {
    max-width: 1150px;
    /* زيادة العرض قليلاً */
  }
}

@media (min-width: 1400px) {

  .custom-container,
  .custom-container-nav {
    max-width: 1350px;
    /* مثل Bootstrap */
  }
}

@media (min-width: 1900px) {

  .custom-container,
  .custom-container-nav {
    max-width: 1640px;
    /* مثل Bootstrap */
  }
}

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

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

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

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

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

.slick-slide {
  margin-right: 20px;
}

.container__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  /* flex-flow: row nowrap; */
  @media screen and (max-width: 991px) {
    flex-flow: row wrap;
  }
}

.slick-prev,
.slick-next {
  font-size: 20px;
  border-radius: 6px;
  border: 1px solid #f9722f;
  background: #fff;
  width: 44px;
  height: 44px;
  color: #f9722f !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.5s ease-in-out;

  &:hover {
    color: #f9722f;
    background-color: fff;
  }

  &::before {
    content: "" !important;
    display: none;
  }
}

/* Style for disabled arrows */
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  background-color: #f9fafb !important;
  color: black !important;
  transition: background-color 0.5s ease-in-out;

  &:hover {
    background-color: #f9fafb;
    color: black;
  }
}

.slick-arrow {
  z-index: 10;
  top: 86%;

  &:lang(ar) {
    &.slick-prev {
      right: 50%;
      /* right: 0; */
      transform: translateX(100%);
    }

    &.slick-next {
      /* left: calc(100% - 49%); */
      right: 50%;
      /* left: 0; */
      transform: translateX(-20%);
    }
  }

  &:lang(en) {
    &.slick-prev {
      left: 46.5%;
      left: 50%;
      transform: translateX(-110%);
      /* left: 50%; */
    }

    &.slick-next {
      right: calc(100% - 52.5%);
      right: 50%;
      transform: translateX(110%);
      /* right: calc(100% - 49%); */
    }
  }

  /* &.slick-prev {
    right: 50%;
  }
  &.slick-next {
    left: calc(100% - 49%);
  } */
}

.error-message {
  color: #f92f2f;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  /* 214.286% */
}

.error-input {
  border: 1px solid #f92f2f !important;
}


.quote__title {
  position: relative;

  &::after {
    content: "";
    position: absolute;
    top: -55px;
    width: 40px;
    height: 30px;
    background-image: url(../assets/images/quote.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;



  }


  &:lang(ar) {
    &::after {

      right: 0;
    }

  }

  &:lang(en) {

    &::after {

      left: 0;

      /* transform: scaleY(-1); */
    }

  }
}