/* arabic font  */
@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
html,
body {
  scroll-behavior: smooth;
  font-family: "Almarai", sans-serif;
}
body {
  --primary-color: rgb(242, 208, 138);
  --primary-dark-color: rgb(226, 182, 94);
  --primary-light-color: rgb(240, 205, 132);
  --secondary-color: rgb(74, 74, 74);
  --main-text-color: #000000;
  --xmain-text-color: #ffffff;
  --first-gray-shadow: #2b2b2b;
  --second-gray-shadow: #636363;
  --third-gray-shadow: #9c9c9c;
  --fourth-gray-shadow: #c0c0c0;
  --fifth-gray-shadow: #f7f7f7;
}
/* reset items  */
a {
  text-decoration: none;
  color: inherit;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* container  */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* titles  */
.dark-section-title,
.light-section-title {
  width: fit-content;
  margin: auto;
  margin-bottom: 40px;
  padding-bottom: 10px;
  color: var(--primary-color);
  text-align: center;
  position: relative;
  cursor: default;
  font-size: 2rem;
}
.dark-section-title::before,
.light-section-title::before {
  content: "";
  width: 2px;
  height: 2px;
  background-color: var(--primary-dark-color);
  border-radius: 2px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.dark-section-title:hover::before,
.light-section-title:hover::before {
  width: 100%;
  height: 2;
  /* border-radius: 0; */
}
.light-section-title {
  color: var(--secondary-color);
}
.light-section-title::before {
  background-color: var(--secondary-color);
}
