body {
  margin: 0;
  direction: rtl;          /* الموقع عربي */
  font-family: 'Tajawal', sans-serif; /*كل الموقع بذا الخط*/
  margin-top: 0%;
}

/* navbar */
  header{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .header{
    width: 100%;
    position: relative;
    height: 80px;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    color: #fff;
    padding: 0 0 0 3em;
    z-index: 20;
  }

  .header.scrolled {
    position: fixed;      /* يصير ثابت */
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    background-color: #000000a8;
  }

  .logo img {
    cursor: pointer;
    margin: 5% 30% 0% 0%;
    width: 150px;   /* غيره مثل ما تبغى */
    height: 80%;
    object-fit: fill;
    object-position: center bottom ;
  }
      /* */
   .logo .scrolled{
    cursor: pointer;
    width: auto;   /* غيره مثل ما تبغى */
    height: auto;
    margin: 5px;
   }

  .humburger {
    display: none;
  }

  .navbar ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar ul li a{
    color: #ffff;
    text-decoration: none;
    margin: 0 20px;
    cursor: pointer;
  }

  .navbar ul li a:hover{
    color: #6e473b;
  }

  .project-but {
    color: #6e473b !important;
    font-weight: 600;
  }

  
  @media (max-width: 900px){
    .logo img {
      margin: 5% 5% 0% 0%;
      width: 120px;
    }


    .header{
      position: relative;
    }

  .humburger {
    display: block;
    cursor: pointer;
    font-size: 25px;
    width: 45px;
    height: 45px;
  }

  .humburger i {
    position: absolute;
    bottom: 33%;
    left: 7%;
    width: max-content; /*تاخذ اقصى عرض*/
    height: max-content; /*تاخذ اقصى طول*/
    opacity: 0;
    transition: 0.3s ease;
  }

  .humburger i.active {
    opacity: 1;
    transform: rotate(180deg);
  }

  .navbar{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.484);
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0 1rem;
    opacity: 0; /*نخفيها كامل*/
    transition: 0.3s ease;
  }

  .navbar.active{
    opacity: 1; /* نضهرها عند الضغط*/
  }

  .navbar ul{
    display: block;
  }
  
  .navbar ul li {
    margin: 20px 0;
    border-right: 1px solid #a4a4a4;
  }

  }

/* / navbar */

/* علامه واتس */

  .fa-square-whatsapp{
    padding: 5px;
    background-color: #ffff;
    font-size: xx-large;
    color: #2f1d0c;
    z-index: 5;
    border-radius: 49%;
    position: fixed;
    top: 90%;
    right: 95%;
  }

  @media (max-width: 600px ){
    .fa-square-whatsapp{
      padding: 5px;
      background-color: #ffff;
      font-size: xx-large;
      color: #2f1d0c;
      z-index: 5;
      border-radius: 49%;
      position: fixed;
      top: 90%;
      right: 85% !important;
    }
  }
/* علامه واتس انتهى*/

/*  السهم الي يطلعك لفوق */
  .hide{
    display: none;
  }
  #shmtob{
    color: #fff;
    background: #6e473bd2;
    border: none;
    padding: 3px ;
    height: 25px;
    width: 25px;
    position: fixed;
    z-index: 20;
    top: 80%;
    border-radius: 15px 0px 0px 15px
  }
/*  السهم الي يطلعك لفوق انتهى */

/* تنسيقات السكرول */
  /* عرض السكرول */
    ::-webkit-scrollbar {
      width: 10px;
    }

    /* الخلفية */
    ::-webkit-scrollbar-track {
      background: #414141; 
    }

    /* الجزء المتحرك */
    ::-webkit-scrollbar-thumb {
      background: #e3d8c8;
      border-radius: 10px;
    }

    /* عند المرور عليه */
    ::-webkit-scrollbar-thumb:hover {
      background: #8a5a4b;
    }
/* تنسيقات السكرول انتهى */

/* الحقوق */

  .Rights{
    display: flex;
    justify-content: space-around !important;
    width: 100%;
    font-family: 'Tajawal', sans-serif;
    color: #fff;
    background-color: #000;
  }

  .Rights a{
    text-decoration: none;
    background: linear-gradient(90deg, #00d4ff, #7b2cff, #ff2fd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 5s ease;
  }

  .Rights a:hover {
    background: linear-gradient(90deg, #ff2fd1, #7b2cff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .pasadroot{
    background: linear-gradient(90deg, #ff2fd1, #7b2cff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    transition: all 5s ease;
  }

  .pasadroot:hover {
    background: linear-gradient(90deg, #00d4ff, #7b2cff, #ff2fd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  @media (max-width: 600px ){
    .Rights p{
      text-align: center;
      font-size: smaller;
    }

  }

/* الحقوق انتهى */

.box-mores-img{
  width: 80%; height: auto;
  position: relative;
  border: none;
}
.titl-img{
  position: absolute;
  top: 20px;
  right: -8px;
  padding: 4px 17px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(#6E473B 0%, #2F1D0C 100%);
  color: #E3D8C8;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  direction: rtl;
}
.titl-img::after{
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  border-top: 8px solid #2F1D0C;
  filter: brightness(70%);
  border-right: 8px solid transparent;
  direction: rtl;
}

/* البداية: العنصر مخفي */

  .animate {
    opacity: 0;
    transition: 1s ease;
  }

  /* لما يدخل العنصر الشاشة */
  .animate.show {
    opacity: 1;
    transform: translate(0,0);
  }

  /* من اليمين لليسار */
  .right-to-left {
    transform: translateX(50px);
  }

  /* من اليسار لليمين */
  .left-to-right {
    transform: translateX(-50px);
  }

  /* من فوق لتحت */
  .top-to-bottom {
    transform: translateY(-50px);
  }

  /* من تحت لفوق */
  .bottom-to-top {
    transform: translateY(50px);
  }
