@font-face {
  font-family: "Tajawal";
  src: url(../fonts/Tajawal.ttf);
}
/* Variables */
:root {
  --primary: #1d5166; /* Custom primary color */
  --secondary: #28b6be; /* Custom secondary color */
  --light-secondary: #28b6be57;
  --third-color: #016b85; /* Custom third color */
  --green-color: #7cc242;
  --warning-color: #ffc107;
  --light-warning-color: #ffc10714;
  --gray-bg: #f0f1f3; /* Custom gray background color */
  --placeholder: #afafaf; /* Custom placeholder color */
  --gradient-primary: linear-gradient(
    90deg,
    #28b6be 0%,
    #28b6be 18.74%,
    #1d5166 100%
  );
  --black: #000000;
  --white: #ffffff;
  --danger: #f24135; /* Custom danger color */
  --primary-light: #e6f0f5;
  --secondary-light: rgba(40, 182, 190, 0.05);
  --body-bg: #f0f1f3;
  --gray-text: #afafaf;
  --dark-gray-text: #5d5d5d;
  --main-padding-inline: clamp(10px, 1.5vw, 50px);
  --input-height: 40px;
  --box-shadow: 4px 4px 25px rgb(167, 167, 167);
  --border-raduis: 8px;
  --border-color: #d5d7da;
}
body {
  font-family: "Tajawal", sans-serif;
  font-weight: normal;
  margin: auto;
  font-size: 14px;
  background-color: var(--body-bg);
  color: var(--black-color);
}
* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 8px;
  height: 0;
}
::-webkit-scrollbar-track {
  background: var(--white-color);
  border-radius: 0px;
}
::-webkit-scrollbar-track-piece {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 5px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
*:focus {
  outline: none !important;
}
.w-mx-content {
  width: max-content !important;
}
a,
button,
img,
input {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.custom-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-btn {
  background-color: transparent;
  border-radius: 0;
  border: none;
  padding: 0;
  cursor: pointer;
}
.custom-anc,
.custom-anc:hover {
  text-decoration: none;
}
.custom-h,
.custom-p {
  padding: 0;
  margin: 0;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
html[dir="rtl"] [type="email"],
html[dir="rtl"] [type="number"],
html[dir="rtl"] [type="tel"],
html[dir="rtl"] [type="url"] {
  direction: rtl;
}
hr {
  border-color: #d0d4d4;
}
a {
  text-decoration: none;
}
:focus-visible {
  outline: none !important;
}
.text-start {
  text-align: start;
}
.date {
  direction: ltr;
}
.grid-4 {
  display: grid;
  -ms-grid-template-columns: repeat(auto-fit, minmax(24%, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(24%, 1fr));
  gap: 12px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid-4 {
    -ms-grid-template-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .grid-4 {
    -ms-grid-template-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
  }
}