@font-face {
  font-family: 'fokaha';
  src: url('./../assets/arfonts-fokaha-regular/arfonts-fokaha-regular.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
}

html[lang="ar"] {
  direction: rtl;
}


body {
  font-family: "Baloo Bhaijaan 2", sans-serif;
  /* font-family: "fokaha", sans-serif; */
  background-color: white;
  color: var(--body-color);
  overflow-x: hidden;
  position: relative;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  border: none;
  outline: none;
  background: none;
}

button:active,
button:focus {
  box-shadow: none !important;
}

img {
  width: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title-color);
}

p{
margin: 0;
}

.sec-title {

  @media (max-width: 575px) {
    & {
      font-size: 30px;
    }
  }

  @media (min-width: 576px) and (max-width: 767px) {
    & {
      font-size: 33px;
    }
  }

  @media (min-width: 768px) and (max-width: 991px) {
    & {
      font-size: 38px;
    }
  }

  @media (min-width: 991px) {
    & {
      font-size: 40px;
    }
  }
}

.section-container {
  width: 97%;
  margin-inline: auto;
}

.btn-solid-main {
  cursor: pointer;
  --c: #fff;
  padding: 12px 28px;
  margin: 1em;
  position: relative;
  min-width: 12em;
  background: var(--theme-color);
  font-size: 16px;
  font-weight: bold;
  color: var(--c);
  text-align: center;
  text-transform: uppercase;
  font-family: sans-serif;
  letter-spacing: 0.1em;
  border: 1px solid var(--title-color);

  border: none;
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-solid-main i {
  transform: rotateY(180deg);
}

.btn-solid-main span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: var(--title-color);
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}

.btn-solid-main:hover {
  color: var(--c);
  border: none;
  /* -webkit-text-stroke: 1px var(--secondary-color); */

}

.btn-solid-main:hover span {
  transform: translateY(0) scale(2);
}

.btn-solid-main span:nth-child(1) {
  --n: 1;
}

.btn-solid-main span:nth-child(2) {
  --n: 2;
}

.btn-solid-main span:nth-child(3) {
  --n: 3;
}

.btn-solid-main span:nth-child(4) {
  --n: 4;
}

.btn-outline-main {
  cursor: pointer;
  --c: var(--title-color);
  padding: 12px 28px;
  margin: 1em;
  position: relative;
  min-width: 12em;
  background: transparent;
  font-size: 16px;
  font-weight: bold;
  color: var(--c);
  text-align: center;
  text-transform: uppercase;
  font-family: sans-serif;
  letter-spacing: 0.1em;
  border: 2px solid var(--c);
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-outline-main i {
  transform: rotateY(180deg);
}

.btn-outline-main span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: var(--theme-color);
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}

.btn-outline-main:hover {
  color: white;
  border-color: transparent;
}

.btn-outline-main:hover span {
  transform: translateY(0) scale(2);
}

.btn-outline-main span:nth-child(1) {
  --n: 1;
}

.btn-outline-main span:nth-child(2) {
  --n: 2;
}

.btn-outline-main span:nth-child(3) {
  --n: 3;
}

.btn-outline-main span:nth-child(4) {
  --n: 4;
}

.dropdown-item:active {
  /* color: #fff; */
  background-color: transparent;
}

/* عند تمرير الماوس على الخيار أو عند تحديده */
.nice-select .option:active,
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option.selected {
  background-color: transparent;
}

.breadcrump {
  /*background: url("./../assets/breadcrumb.webp") no-repeat center center;*/
  background-size: cover;
  height: 360px;
  padding-top: 141px;
    h1 {
    color: var(--secondary-color);
  }
}

.breadcrumb-menu li {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);

  a {
    color: var(--title-color);
    transition: color 0.3s;

    &:hover {
      color: var(--title-color);
    }

    &::after {
      content: "\f053";
      font-family: var(--icon-font);
      font-weight: 500;
      font-size: 14px;
      margin-right: 7px;
      position: relative;
    }
  }
}

.breadcrumb-menu li:not(:first-child) a::after {
  content: none;
}

  .riyal-symbol {
    display: inline-block;
    width: 20px;
  }
