body{
    background-repeat: repeat-x;
    background-position: center top;
    background-image: url(../img/a2.jpg) !important;
    background-attachment: fixed;  
    font-family: 'El Messiri', sans-serif;
    overflow-x: hidden; 
}
/* --------------------------------------------------------------------------------------- */



::-webkit-scrollbar {
    width: 0.2em;
  }
  
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #8cd1ff;
    outline: 1px solid #8cd1ff;
  }
  ::selection {
    background: #8cd1ff; /* WebKit/Blink Browsers */
  }
  ::-moz-selection {
    background: #8cd1ff; /* Gecko Browsers */
  }

@keyframes example {
    0%   {text-shadow: 0 0 5px #000;}
    20%   {text-shadow: 0 0 5px #005679;}
    40%   {text-shadow: 0 0 10px #005679;}
    50%   {text-shadow: 0 0 10px #fff;}
    60%   {text-shadow: 0 0 10px #005679;}
    80%   {text-shadow: 0 0 5px #005679;}
    100% {text-shadow: 0 0 5px #000;}
}
@keyframes scale {
  50% {
    transform: scale(0.7);
  }
}
@keyframes scaleUp {
  50% {
    transform: scale(1.1);
  }
}



 .inspiration {
   position: absolute;
   bottom: 10px;
   right: 10px;
   font-style: oblique;
}
 .item-menu {
    box-sizing: border-box;
    font-size: 20px;
    text-align: center;
    position: absolute;
    top: 5px;
    width: 100%;
    z-index: 10;
    height: 110px;
}
 .item-menu .real-menu {
  transform: translate3d(0, -1000px, 0);
  transition: transform ease-out 200ms;
}
.item-menu .menu-item {
    width: 80px;
    height: 80px;
    text-align: center;
    transition: transform ease-out 300ms;
    display: inline-block;
    position: relative;
    margin: 3px 1px;
    margin-bottom: 30px;
    padding: 5px;
}
 .item-menu .menu-open-button {
background: #ffffff00;
    border-radius: 100%;
    width: 90px;
    height: 90px;
    color: white;
    text-align: center;
    transition: transform ease-out 200ms;
    display: inline-block;
    position: relative;
}
 .item-menu .menu-open {
   display: none;
}
 .item-menu .plus {
   width: 18px;
   height: 2px;
   background: white;
   display: block;
   position: absolute;
   top: 50%;
   left: 50%;
   margin-left: -9px;
   margin-top: -1px;
   transition: transform 200ms;
}

 .item-menu .menu-item:hover {
   transform: scale3d(1.1, 1.1, 1.1)!important;
   transition-duration: 100ms !important;
}


 .item-menu .menu-item:nth-child(1) {
   transition-duration: 370ms;
   transform: translate3d(0, -300px, 0) scale(0.5);
}
 .item-menu .menu-item:nth-child(2) {
   transition-duration: 340ms;
   transform: translate3d(0, -300px, 0) scale(0.5);
}
 .item-menu .menu-item:nth-child(3) {
   transition-duration: 310ms;
   transform: translate3d(0, -300px, 0) scale(0.5);
}
 .item-menu .menu-item:nth-child(4) {
   transition-duration:280ms;
   transform: translate3d(0, -300px, 0) scale(0.5);
}
 .item-menu .menu-item:nth-child(5) {
   transition-duration: 250ms;
   transform: translate3d(0, -300px, 0) scale(0.5);
}
 .item-menu .menu-item:nth-child(6) {
   transition-duration: 220ms;
   transform: translate3d(0, -300px, 0) scale(0.5);
}
 .item-menu .menu-item:nth-child(7) {
   transition-duration: 190ms;
   transform: translate3d(0, -300px, 0) scale(0.5);
}
.item-menu .menu-item:nth-child(8) {
   transition-duration: 160ms;
   transform: translate3d(0, -300px, 0) scale(0.5);
}
.item-menu .menu-item:nth-child(9) {
   transition-duration: 130ms;
   transform: translate3d(0, -300px, 0) scale(0.5);
}
.item-menu .menu-item:nth-child(10) {
   transition-duration: 100ms;
   transform: translate3d(0, -300px, 0) scale(0.5);
}


 .item-menu .menu-item:after {
  content: attr(data-name);
  position: absolute;
  font-size: 0px;
  font-weight: 500;
  color: #282828;
  line-height: 25px;
  left: 50%;
  bottom: -25px;
  white-space: nowrap;
  transform: translate3d(-50%, 0, 0);
  display: none;
}
 .item-menu .menu-open-button {
   z-index: 2;
   transition-duration: 400ms;
   cursor: pointer;
}
 .item-menu .menu-open-button:hover {
   transform: scale(1.2, 1.2) translate3d(0, 0, 0);
   transition-duration: 100ms;
}
 .item-menu .menu-open:checked + .menu-open-button {
   transition-timing-function: linear;
   transition-duration: 200ms;
}
 .item-menu .menu-open:checked ~ .real-menu {
transform: translate3d(0, 5px, 0);
    margin-top: 20px;
    background: #fff;
    padding: 10px 0px;
    border: 1px solid #ddd;
    border-radius: 10px;
    z-index: 10;
   
}
 .item-menu .menu-open:checked ~ .real-menu .menu-item {
   transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
   transform: translate3d(0, 0, 0);
}

 .item-menu .menu-open:checked ~ .real-menu .menu-item:nth-child(1) {
   transition-duration: 1000ms;
}
 .item-menu .menu-open:checked ~ .real-menu .menu-item:nth-child(2) {
   transition-duration: 900ms;
}
 .item-menu .menu-open:checked ~ .real-menu .menu-item:nth-child(3) {
   transition-duration: 800ms;
}
 .item-menu .menu-open:checked ~ .real-menu .menu-item:nth-child(4) {
   transition-duration: 700ms;
}
 .item-menu .menu-open:checked ~ .real-menu .menu-item:nth-child(5) {
   transition-duration: 600ms;
}
 .item-menu .menu-open:checked ~ .real-menu .menu-item:nth-child(6) {
   transition-duration: 500ms;
}
.item-menu .menu-open:checked ~ .real-menu .menu-item:nth-child(7) {
   transition-duration: 400ms;
}
.item-menu .menu-open:checked ~ .real-menu .menu-item:nth-child(8) {
   transition-duration: 300ms;
}
.item-menu .menu-open:checked ~ .real-menu .menu-item:nth-child(9) {
   transition-duration: 200ms;
}
.item-menu .menu-open:checked ~ .real-menu .menu-item:nth-child(10) {
   transition-duration: 100ms;
}

 .item-menu .menu-open:checked ~ .real-menu .menu-item:after {
   display: block;
}
#menu-img{
  max-width: 100%;
    width: 100%;
    display: inline-block;
   border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0px 0px 3px #000;
     animation: scaleUp 2s ease-in infinite;
}
#menu-img:hover , #menu-img:focus , #menu-img:active {
     animation:unset;
}
.menu-item img{
width: 100%;
    max-width: 100%;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0px 0px 3px #000;
}

header{
  text-align: center;
  padding: 10px 10px;
  width: 100%;
  display: inline-block;
  position: relative;
}
.chsa{
  position: relative;
  width: 100%;
  display: inline-block;
  max-width: 300px;
  margin-top: 25px;
}
.chsa img{
  max-width: 100%;
}

.logo{
  width: 100%;
  display: inline-block;
  padding: 10px;
  text-align: right;
  margin-top: 30px;
}
.logo img{
  width: 300px;
  max-width: 100%;
}
.search-box{
  width: 100%;
  display: inline-block;
  padding-top: 15px;
}
.input-search{
  width: 100%;
  max-width: 280px;
  /*margin: auto;*/
  float: left;
  position: relative;
}
.sh-icon{
  position: absolute;
  width: 40px;
  right: -13px;
  top: 4px;
  cursor: pointer;
  animation: scale 1s ease-in infinite;
  z-index: 1;
}
.input-search input{
    font-size: 16px;
    padding: 5px 10px;
    padding-right: 30px;
    line-height: 0;
    background: #ffffffc7;
    width: 100%;
    display: inline-block;
    border: 3px solid #c3e9ec;
    box-shadow: 0px 0px 2px #000;
    border-radius: 5px;
    color: #868686;
    text-align: right;
    direction: rtl;
}
.twitter-typeahead{
  width: 100%;
}
.tt-dropdown-menu{
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  text-align: right;
  margin-top: 5px;
  border: 3px solid #c3e9ec;
  box-shadow: 0px 0px 2px #000;
  border-radius: 5px;
  overflow: hidden;
  height: auto;
  pointer-events: auto;
  color: #737373;
  font-weight: bold;
}
.tt-suggestion p{
  cursor: pointer;
  padding: 10px;
  margin: 0;
}
.tt-suggestion p:hover{
  background: #a5ddf85c;
}
.twitter-typeahead span{
  left: unset !important;
}
.top-brands{
  width: 100%;
  display: inline-block;
  margin-top: 10px;
}
.top-brands a{
    display: inline-block;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.top-brands a:hover , .top-brands a:focus , .top-brands a:active{
    transform: scale(1.5);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.top-brands img{
    width: 48px;
    height: 48px;
    margin: 2px 0px;
    max-width: 100%;
    -webkit-box-shadow: 0px 3px rgba(0,0,0,0.15);
    box-shadow: 0px 3px rgba(0,0,0,0.15);
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    border: 2px solid rgba(255,255,255,1.00);
    display: inline-block;
}

/*--------------------------------------------------------*/
.posts-title{
  font-size: 30px;
  font-weight: bold;
  color: #fa6a32 !important; /* تغيير اللون إلى الأبيض */
  text-shadow: 0px 0px 4px #ffffff;
  margin-bottom: 40px;
  position: relative;
}
.posts-title::after{
  content: '2025';
  position: absolute;
  bottom: -5px;
  font-size: 14px;
  right: 0;
  left: 0;
  margin: auto;
}
.posts-title img{
  width: 80px;;
  margin: 0px 10px;
}
.post-pox{
  width: 100%;
  display: inline-block;
  max-width: 400px;
  position: relative;
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
}
.new-offer{
  position: absolute;
  width: 150px;
  right: 0;
  left: 0;
  top: -12px;
  z-index: 3;
  margin: auto;
}
.post-content{
  width: 100%;
  display: inline-block;
  position: relative;
  height: 250px;
}
.post-img{
  width: 100%;
  max-width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 100%;
}
.post-desc{
  position: absolute;
  top: 25%;
  display: none;
}
.post-title{
  font-size: 20px;
  margin: 0;
  color: #770479;
  line-height: 30px;
  height: 65px;
  overflow: hidden;
}
.post-link{
  width: 100%;
  display: inline-block;
  text-decoration: none !important;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #fff;
  border-radius: 15px;
}
.post-link:hover , .post-link:focus , .post-link:active{
  transform: scale(1.1);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
figure {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
/* Shine */
 figure {
  position: relative;
}
 figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
 figure:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*--------------------------------------------------------*/
.products-title {
  font-size: 30px;
  font-weight: bold;
  color: #fa6a32 !important; /* تغيير اللون إلى الأبيض */
  text-shadow: 0px 0px 4px #ffffff !important;
  margin-bottom: 40px;
}
.products-title img{
  width: 70px;
  margin: 0px 10px;
}
.product-pox{
  width: 100%;
  display: inline-block;
  max-width: 400px;
  margin: auto;
  position: relative;
  margin-bottom: 70px;
  text-align: center;
  padding: 20px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.product-brand{
  position: absolute;
  width: 80px;
  right: 0;
  left: 0;
  margin: auto;
  top: -20px;
  z-index: 3;
  display: block;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0px 0px 3px #000;
}
.product-content{
  width: 100%;
  display: inline-block;
  position: relative;
  height: 315px;
  overflow: hidden;
}
.product-img{
  width: 100%;
  max-width: 100%;
}
.product-title{
  font-size: 20px;
  margin: 0;
  color: #222;
  height: 60px;
  line-height: 30px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
 .product-pox:hover  .product-title {
    color: #7173fc;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  }
.product-code{
  color: #909090;
  font-size: 14px;
  margin: 10px;
  height: 15px;
  overflow: hidden;
}
.product-link{
  width: 100%;
  display: inline-block;
  text-decoration: none !important;
}
.product-pox:hover , .product-pox:focus , .product-pox:active{
  transform: scale(1.1);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.product-info{
  width: 100%;
  display: inline-block;
}
.product-info p{
  color: #000;
  font-size: 16px;
  display: inline-block;
  margin: 0px 10px;
}
.product-info img{
  width: 50px;
  display: inline-block;
  margin-left: 5px;
}
.product-info hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px dashed #d6d6d6;
}
.product-desc{
  width: 100%;
  color: #062e50 !important;
  line-height: 26px;
  height: 52px;
  overflow: hidden;
}
.product-info .dotted{
  color: #062e50;
  font-size: 6px;
  display: inline-block;
  width: 100%;
}
.product-info .dotted i{
  margin: 0px 1px;
}
.price{
  width: 100%;
  color: #ff5700 !important;
  font-size: 22px !important;
  font-weight: bold;
}
.price span{
  display: inline-block;
  margin: 0px 2px;
}
.price img{
  width: 70px;
  display: inline-block;
}
.price .egp{
  font-size: 18px !important;
  color: #e64407 !important;
}
/*--------------------------------------------------------*/
.tags{
  width: 100%;
  display: inline-block;
  text-align: center;
}
.tags .tags-title{
  font-size: 24px;
  font-weight: bold;
  color: #fa6a32 !important; /* تغيير اللون إلى الأبيض */
  text-shadow: 0px 0px 4px #ffffff;
  margin-bottom: 20px;
}
.tags .tags-title img{
  width: 40px;
  margin: 0px 10px;
}
.tags a{
  display: inline-block;
  padding: 10px 15px;
  background: #ffffff;
  margin: 4px;
  font-size: 18px;
  text-decoration: none;
  line-height: 18px;
  color: #097bb7;
  border-radius: 5px;
  border: 1px dashed #a7a7a7;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tags a:hover , .tags a:focus , .tags a:active{
  color: #045a88;
  transform: scale(1.3);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/*--------------------------------------------------------*/
footer{
  width: 100%;
  display: inline-block;
  margin-top: 30px;
  padding: 20px 10px 0px 10px;
}
.footer-welcome{
  color: #000;
  font-size: 20px;
  font-weight: bold;
  color: #fa6a32 !important; /* تغيير اللون إلى الأبيض */
  text-shadow: 0px 0px 3px #ffffff;
  margin-bottom: 15px;
  line-height: 30px;
}
.footer-desc{
  background: rgb(233, 247, 255);
  color: #005963;
  text-align: right;
  padding: 15px;
  line-height: 25px;
  font-size: 16px;
  border-radius: 10px;
  border: 3px dashed hsla(0, 0%, 0%, 0.3);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(218, 255, 255) 50%, rgb(233, 247, 255) 100%);
}
.footer-copyright{

}
.copyright a{

}
/*--------------------------------------------------------*/
.call{
  display: inline-block;
  position: fixed;
  left: -80px;
  bottom: 20px;
  width: 200px;
  z-index: 1001;
  cursor: pointer;
  -webkit-animation:spin 1s linear infinite;
  -moz-animation:spin 1s linear infinite;
  animation:spin 1s linear infinite;
    -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.call:hover{ 
  left: 0;
  transform:rotate(0deg);
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
   -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.call img{
  width: 50%;
  max-width: 100%;
}
@keyframes spin {
    0% {transform:rotate(0deg);}
    25% {transform:rotate(5deg);}
    50% {transform:rotate(0deg);}
    75% {transform:rotate(-5deg);}
    100% {transform:rotate(0deg);}
}
/*--------------------------------------------------------*/
.phone{
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.phone li{
  list-style: none;
}
.phone a ,.phone a:hover , .phone a:focus , .phone a:active{
  text-decoration: none;
  font-size: 22px;
  padding: 5px;
  display: inline-block;
  width: 100%;
  letter-spacing: 2px;
  font-weight: bold;
}
/*--------------------------------------------------------*/
.space{
  width: 100%;
  display: inline-block;
  height: 10px;
}
#results{
  width: 100%;
  display: inline-block;
}
.hide-class{
  display: none !important;
}
.master-btn {
  background: rgb(0,177,187);
  background: radial-gradient(circle, rgb(17, 216, 219) 0%, rgba(17,215,217,1) 50%, rgba(0,228,255,0.8827906162464986) 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 22px;
  text-decoration: none !important;
  cursor: pointer;
  display: inline-block;
  text-shadow: 0px 0px 3px #000;
  box-shadow: 0px 1px 2px #000;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.master-btn:hover , .master-btn:focus , .master-btn:active{
  transform: scale(1.2);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #fff;
}
.modal-body{
  color: #005963;
  text-align: center;
  line-height: 25px;
  font-size: 16px;
  border-radius: 5px;
  border: 3px dashed hsla(0, 0%, 0%, 0.3);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(218, 255, 255) 50%, rgb(233, 247, 255) 100%);
}
.modal-body img{
  max-width: 100%;
}
.main{
  width: 100%;
  display: inline-block;
}
/*--------------------------------------------------------*/
.in_post_img , .in_post_data{
  width: 100%;
  display: inline-block;
  margin-top: 30px;
}
.in_post_icon{
  width: 40px;
  margin-left: 5px;
  display: inline-block;
}
.in_post_title{
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0px 0px 4px #72cff6;
  margin-bottom:10px;
  position: relative;
  line-height: 40px;
}
.in_post_desc{
  width: 100%;
  text-align: right;
  font-size: 16px;
  display: inline-block;
  line-height: 30px;
  word-wrap: break-word;
  margin: 0;
  font-family: unset;
  padding: 10px;
  word-break: break-word;
  max-width: 100%;
  white-space: pre-line;
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}
.in_post_gnt , .in_post_shp , .in_post_phn{
  width: 100%;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
}
.in_post_gnt img{
  width: 50px;
  margin-left: 5px;
}
.in_post_shp img{
  width: 70px;
  margin-left: 5px;
}
.in_post_phn img{
  width: 40px;
  margin-left: 5px;
}
.in_post_phn a{
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #3b702e;
  letter-spacing: 2px;
  display: inline-block;
}
.in_post_phn a:hover{
  color: #3b702e;
  transform: scale(1.08);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.in_post_img .post_master_img{
  max-width: 100%;
  width: 100%;
  padding: 20px;
  border-radius: 5%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.in_post_img img:hover{
  transform: scale(1.08);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.in_post_btn{
  display: inline-block;
  font-size: 20px;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.in_post_btn:hover{
    transform: scale(1.08);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.in_post_info{
  display: inline-block;
  font-size: 14px;
  margin: 10px;
}
.in_post_info i{
  margin-left: 5px;
}
/*--------------------------------------------------------*/
.product-data{
  width: 100%;
  display: inline-block;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}
.in_product_img{
  width: 100%;
  display: inline-block;
}
.product_master_img{
  width: 100%;
  max-width: 100%;
  border-radius: 5%;
}
.in_product_title{
  font-size: 24px;
  margin: 0;
  color: #222;
  line-height: 30px;
  margin-top: 10px;
}
.in_product_model{
  font-size: 18px;
  direction: ltr;
  color: #043642;
  margin-bottom: 15px;
}
.in_product_code {
    color: #909090;
    font-size: 14px;
    margin: 10px;
}
.in_product_stars{
  width: 100%;
  display: inline-block;
}
.in_product_stars img{
  width: 25px;
  cursor: pointer;
}
.in_product_details{
  width: 100%;
  display: inline-block;
  margin: 15px 0px;
  font-size: 16px;
  line-height: 30px;
}
.in_product_info{
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  text-align: center;
}
.in_product_tp{
  font-size: 18px;
  color: #5b7df9;
  margin-bottom: 30px;
  line-height: 30px;
  padding: 0px 10px;
}
.table-bordered {
    border: 1px solid #ddd;
    border-right: 0;
    border-left: 0;
    margin: 0;
}
.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
  border-right: 0 !important;
  border-bottom: 0;
  color: #777;
}
.in_product_info p{
  color: #616161;
  text-shadow: 1px 1px #a7ddf7;
}
.in_product_features{
  text-align: right;
  width: 100%;
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 10px;
}
.in_product_features h3{
  font-size: 18px;
  font-weight: bold;
  color: #777;
  margin-bottom: 15px;
}
.in_product_features ul{
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 0;
  padding-right: 10px;
}
.in_product_features li{
  list-style: none;
  padding: 5px;
  line-height: 25px;
}
.in_product_features i{
  color: #02b305;
  margin-left: 3px;
}
/*--------------------------------------------------------*/
.price-list{
  width: 100%;
  display: inline-block;
}
.price-list-title{
  font-size: 30px;
  font-weight: bold;
   color: #fa6a32 !important; /* تغيير اللون إلى الأبيض */
  text-shadow: 0px 0px 4px #ffffff;
  margin-bottom: 40px;
}
.price-list-title span{
  font-size: 14px;
  display: inline-block;
  width: 100%;
}
.price-list-title img{
  width: 70px;
  margin: 0px 10px;
}
.price-list .table{
  background: #fff;
  border-top: 0;
}
.price-list .table a{
  font-size: 16px;
  text-decoration: none;
  line-height: 25px;
}
.price-list .table a{
  text-decoration: none;
}
.price-list .table i{
  margin-left: 5px;
}
.price-list  .table-bordered {
    border: 1px solid #ddd;
    border-right: unset;
    border-left: unset;
    text-align: right;
    border-top: 0;
}
.price-list .table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
  border-right: 1px solid #ddd !important;
  padding: 15px 10px;
}
.price-list thead{
  background: #0080bf;
}
.price-list thead th{
  color: #fff !important;
  padding: 15px !important;
  font-size: 18px;
}
/*------------------ test --------------------------*/

.line {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #4b9cdb;
}
.load .line:nth-last-child(1) {animation: loadingC .6s .1s linear infinite;}
.load .line:nth-last-child(2) {animation: loadingC .6s .2s linear infinite;}
.load .line:nth-last-child(3) {animation: loadingC .6s .3s linear infinite;}
.load .line:nth-last-child(4) {animation: loadingC .6s .4s linear infinite;}
.load .line:nth-last-child(5) {animation: loadingC .6s .5s linear infinite;}
@keyframes loadingC {
    0% {transform: translate(0,0);}
    50% {transform: translate(0,15px);}
    100% {transform: translate(0,0);}
}
.mxw500{
  max-width: 600px;
  margin: auto;
}
/*--------------------------------------------------------*/
@media (max-width: 767px){
  .posts-title img ,  .products-title img , .tags .tags-title img , .price-list-title img {
    display: none;
  }
  .posts-title ,  .products-title , .price-list-title  {
    font-size: 24px;
  }
  .posts-title::after {
    bottom: -24px;
  }
  .price-list thead{
    display: none;
  }
  .price-list .table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    display: inline-block;
    width: 100%;
    border-top: 0 !important;
  }
  .price-list .table {
    background: transparent;
  }
  .price-list .table tr{
    margin-bottom: 20px;
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #ddd;
    background: #fff;
  }
  .price-list .table tr:last-child{
    margin-bottom: 0;
  }
  .price-list .table tr td:first-child{
    border-top: 1px solid #ddd !important;
  }

}


	.ahmed_whatsapp{
    display: inline-block;
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 1000;
	}
	.ahmed_whatsapp img{
    width: 65px;
    box-shadow: 0px 0px 2px #ddd;
    border-radius: 50%;
    border: 8px solid #fff;
    cursor: pointer;
    background: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
	}
  .ahmed_whatsapp img:hover {
    transform: scale(1.1);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
  }
	.ahmed_whatsapp_send{
    width: 230px;
    margin-top: 14px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    float: right;
    background-color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    position: absolute;
    top: -70px;
    right: -1000px;
    z-index: 999;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
	}
	.ahmed_whatsapp_send input{
		border: none !important;
		background-color: transparent !important;
		outline: none !important;
		padding: 6px 0 !important;
		margin: 0 !important;
		font-size: 14px !important;
		box-shadow: none !important;
		color: #000 !important;
		vertical-align: middle !important;
		display: inline-block !important;
		width: 160px !important;
    	height: auto !important;
	}
	.ahmed_whatsapp svg:not(:root) {
    	overflow: hidden;
	}
	.ahmed_whatsapp_btn{
	    cursor: pointer;
	    padding: 6px;
	    width: 28px;
	    display: inline-block;
	    vertical-align: middle;
	    user-select: none;
	}
	.ahmed_whatsapp .clicked{
		right: 0;
		-webkit-transition: all 0.8s ease-in-out;
		-moz-transition: all 0.8s ease-in-out;
		-ms-transition: all 0.8s ease-in-out;
		-o-transition: all 0.8s ease-in-out;
		transition: all 0.8s ease-in-out;
	}
	/* تصميم القائمة */
.main-nav {
    width: 100%;
    background: #005679; /* لون خلفية القائمة */
    text-align: center;
    padding: 10px 0;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    display: inline-block;
    margin: 0 15px;
}

.main-nav ul li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 15px;
    transition: 0.3s;
}

.main-nav ul li a:hover {
    background: #0080bf; /* لون عند التمرير */
    border-radius: 5px;
}

/* تصغير القائمة على الشاشات الصغيرة */
@media (max-width: 768px) {
    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .main-nav ul li {
        margin-bottom: 10px;
        display: block;
    }
}

