@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');
@import url('http://fonts.googleapis.com/css?family=Cairo');

body{
    margin:0px;
    padding: 0px;
    font-family: 'cairo';
    background-color: #ffffff;
}
*{
    box-sizing: border-box;
}





/* header */
.header {
    background: #f5f7f8;
    position: relative;
    width: 100%;
  
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 1;
  }
  .header a {
    text-decoration: none;
    color: #000000;
    font-size: 20px;
  }
  .header ul {
    list-style: none;
  }
  .logo img{
    height: 100px;
    right: 0px;
  }
  .menu-items {
    display: flex;
    align-items: center;
  }
  .menu-items li {
    padding: 0.5rem 1rem;
    transition: background 0.3s ease-in-out;
  }
  .menu-items li:hover {
    background-color: #e8effd;
  }
  


.title-content strong{
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #1b1919;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 40px;
    padding: 5px 30px;
    border: 1px solid #e0e0e0;
}
.strong{
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #1b1919;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 40px;
    padding: 5px 30px;
    border: 1px solid #e0e0e07e;
    font-family: 'cairo', cursive;
}


.title-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.title-content strong{
    color: #ffffff;
    background-color: #202020;
    font-weight: 500;
}

.strong{
    color: #ffffff;
    background-color: #076ce0;
    font-weight: 500;
}
.strong:hover {
    color: rgb(25, 43, 63);
    background-color: rgb(120, 185, 247);
}
.title-content p{
    color: #606369;
    margin: 10px;
    font-size: 1.9rem;
}
.product-container{
    width:90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.product-box{
    width:20%;
    max-width: 250px;
    height: 300px;
    display: flex;
    flex-grow: 0.5;
    flex-direction: column;
    align-items: center;
    border: 1px solid #dddddd;
    border-radius: 10px;
    margin: 20px;
    cursor: pointer;
}
.product-box:hover{
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.521);
}
.product-img {
    width: 250px;
    height: 250px;
    background-color: #ccc;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product-img img{
    width:100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid #f3f3f3;
}
.p-name{
    color: #727272;
    font-size: 20px;
}
.p-price{
    color: #333333;
    font-size: 1.2rem;
    font-weight: 400;
}
.product-box:hover{
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.521);
}
.new-arrival{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-bar {
    width:90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.menu-bar > div {
    width:15%;
    max-width: 200px;
    height: 70px;
    display: flex;
    flex-grow: 0.5;
    flex-direction: column;
    align-items: center;
    border: 1px solid #c2bfbfea;
    border-radius: 10px;
    margin: 20px;
    font-weight: 500;
    cursor: pointer;
}
.menu-bar > div:hover{
    box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
}

.customers {
    width: 100%;
    height: 550px;
    padding: 20px;
    margin: 20px 0 20px;
}
.customers img {
    width: 100%;
    height: 350px;
}


.blogs-container{
    width:90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.blog-box{
    width:50%;
    max-width: 600px;
    height: 100px;
    display: flex;
    flex-grow: 0.5;
    flex-direction:column;
    border: 1px solid #dddddd;
    border-radius: 10px;
    margin: 20px;
    cursor: pointer;
}
.blog-img {
    width:30%;
    height: 100px;
    background-color: #ccc;
    background-size: cover;
    background-repeat: no-repeat;
    background-position:right;
}
.blog-img img{
    width:100%;
    height: 100%;
    object-fit: contain;
    object-position:right;
}

.blog-details{
    display: flex;
    flex-direction: column;
    align-items:flex-end;
    width: 70%;
    padding: 10px 20px;
    border-top: 1px solid #f3f3f3;
}
.blog-name{
    color: #727272;
    font-size: 24px;
}
.blog-price{
    color: #333333;
    font-size: 1.2rem;
    font-weight: 400;
}
.blog-box:hover{
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.521);
}


.so_media {
    height: 100px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, rgba(68, 124, 245, 0.596), rgb(5, 118, 224));
}

.so_media a{
    margin: 0px 5px;
    color: rgba(238, 238, 238, 0.7);
    font-size: 2.9rem;
}
.so_media a:hover{
    color: white;
}



.social-call{
    height: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}
.social a{
    margin: 0px 5px;
    color: rgba(0,0,0,0.7);
    font-size: 0.9rem;
}
















.main {
    max-height: 500px;;
    background-color: #0562be;
    color: white;
    font-size: 38pt;
    text-align: center;
    line-height: 550px;
   }
   footer{
    bottom: 0;
   }
   .footer-distributed{
    background-color: #0353a3;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    font-family: 'cairo', cursive;
    text-align: right;
    font: bold 16px sans-serif;
    
    padding: 55px 50px;
    margin-top: 80px;
   }
    
   .footer-distributed .footer-left,
   .footer-distributed .footer-center,
   .footer-distributed .footer-right{
    display: inline-block;
    vertical-align: top;
   }
    
   .footer-distributed .footer-left{
    width: 40%;
   }
    
   .footer-distributed h3{
    color:  #ffffff;
    font: normal 36px 'cairo', cursive;
    margin: 0;
   }
    
   .footer-distributed h3 span{
    color:  #659eff;
   }
    
    
   .footer-distributed .footer-links{
    color:  #ffffff;
    margin: 20px 0 12px;
    padding: 0;
    font-family: 'cairo', cursive;
   }
    
   .footer-distributed .footer-links a{
    display:inline-block;
    line-height: 1.8;
    text-decoration: none;
    color:  inherit;
   }
    
   .footer-distributed .footer-company-name{
    color:  #8f9296;
    font-size: 18px;
    font-weight: normal;
    margin: 0;
    font-family: 'cairo', cursive;
   }
    
    
   .footer-distributed .footer-center{
    width: 35%;
   }
    
   .footer-distributed .footer-center i{
    background-color:  #1fa5f8;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
   }
    
   .footer-distributed .footer-center i.fa-envelope{
    font-size: 17px;
    line-height: 38px;
   }
    
   .footer-distributed .footer-center p{
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin:0;
   }
    
   .footer-distributed .footer-center p span{
    display:block;
    font-weight: normal;
    font-size:14px;
    line-height:2;
   }
    
   .footer-distributed .footer-center p a{
    color:  #5383d3;
    text-decoration: none;;
   }
    
   .footer-distributed .footer-right{
    width: 20%;
   }
    
   .footer-distributed .footer-company-about{
    line-height: 20px;
    color:  #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
   }
    
   .footer-distributed .footer-company-about span{
    display: block;
    color:  #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
   }
    
   .footer-distributed .footer-icons{
    margin-top: 25px;
   }
    
   .footer-distributed .footer-icons a{
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color:  #1190df;
    border-radius: 2px;
    
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    
    margin-right: 3px;
    margin-bottom: 5px;
   }
    
    
   @media (max-width: 880px) {
       
      .header{
      display: block;
      
      }
      .mega-menu .content{
        display: block;
        
        }
    
    .footer-distributed{
    font: bold 14px sans-serif;
    
    }
    
    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right{
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
    }
    
    .footer-distributed .footer-center i{
    margin-left: 0;
    }
    .main {
    line-height: normal;
    font-size: auto;
    }
    
   }

     @media (max-width: 660px) {
      
      .mega-menu .content{
      display: block;
      
      }
  }
  @media (max-width: 880px) {
      
    .menu-items {
    display: block;
    }
}




.container-form input[type=text],
.container-form input[type=password],
.container-form input[type=date],
.container-form input[type=tel],
.container-form textarea[name=shipping_info],
.container-form textarea[class=txt-style] {
    margin: 20px 0;
    margin-right: 55px;
    margin-left: 55px;
    width: 90%;
    font-family: 'Tajawal', sans-serif;
    font-size: 18px;
    border: 3px solid #DCE4EC;
    background-color: #efefef;
    padding: 10px 15px;
    display: block;
    text-align: center;
}

.container-form input[type=submit] {
    color: white;
    font-family: 'Tajawal', sans-serif;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid #2C3E50;
    background-color: #2C3E50;
    padding: 10px 15px;
    cursor: pointer;
    margin-right: 45%;
}








.product-img {
    width: 250px;
    height: 250px;
    background-color: #ccc;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.product-title {
    margin: 10px;
    font-size: 20px;
    font-weight: 500;
}

.end_offer {
    margin: 10px;
    font-size: 26px;
    font-weight: 500;
    width: 50%;
    height: 50px;
    padding-top: 5px;
    color: tomato;
    background-color: rgba(5, 125, 224, 0.144);
}

.product-prices {
    margin: 10px;
    font-size: 20px;
    font-weight: 500;
}

.product-prices .original-price {
    color: #E52F54;
    font-weight: bold;

}

.product-prices .old-price {
    color: #999;
    font-size: 16px;
}

.show_prd {
    margin: 50px auto;
    width: 96%;
    height: auto;
}

.show_prd > div {
    width: 100%;
}

.show_prdc {
    margin: 50px auto;
    width: 96%;
    height: auto;
    display: flex;
}

.show_prdc > div {
    width: 100%;
}

.title_shw_prd {
    font-size: 28px;
    font-weight: bold;
}

.price_shw_prd {
    margin: 10px;
    font-size: 26px;
    font-weight: 500;
    color: #3e3f41;
    width: 30%;
    height: 50px;
    padding-top: 5px;
    background-color: rgba(5, 125, 224, 0.11);
}

.old_price_shw_prd {
    color: #BEBEBE;
    font-size: 30px;
    text-decoration: line-through;
}

#shw_img_main1 {
    width: 100%;
}


.show_prdc {
    margin: 50px auto;
    width: 96%;
    height: auto;
    display: flex;
}

.show_prdc > div {
    width: 100%;
}
.first_div {
    width: 70%;
}

.title_shw_prdc {
    font-size: 28px;
    font-weight: bold;
}

.price_shw_prdc {
    margin: 10px;
    font-size: 26px;
    font-weight: 500;
    color: #3e3f41;
    width: 30%;
    height: 50px;
    padding-top: 5px;
    background-color: rgba(5, 125, 224, 0.11);
}

.old_price_shw_prdc {
    color: #BEBEBE;
    font-size: 30px;
    text-decoration: line-through;
}

#shw_img_main {
    width: 350px;
    height: 300px;
}

#shw_img_mainii {
    width: 500px;
    height: 300px;
}


.content {
    margin: 20px auto 50px auto;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
}

.product-pack {
    margin: 10px;
    width: 250px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s all;
}

.product-pack:hover {
    box-shadow: 2px 2px 4px #ccc;
}

.product-img {
    width: 250px;
    height: 250px;
    background-color: #ccc;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.product-title {
    margin: 10px;
    font-size: 20px;
    font-weight: 500;
}

.product-prices {
    margin: 10px;
    font-size: 20px;
    font-weight: 500;
}

.product-prices .original-price {
    color: #E52F54;
    font-weight: bold;
}

.product-prices .old-price {
    color: #999;
    font-size: 16px;
}


img{
    float: left;
    padding: 5px;
}


@media(max-width:1200px){
    .model-bg{
        display: none;
    }
    .model{
        width:400px;
        height: 400px;
        right: 5%;
        transform: translate(-5%,-50%);
    }
    .main-text{
        left: 10%;
        transform: translate(-10%,-50%);
    }
}
@media(max-width:1000px){
    .navigation{
        justify-content: space-between;
        height: 65px;
        padding:35px 25px;
    }
    .navigation .menu{
        display: none;
        position: absolute;
        top: 65px;
        left: 0px;
        background-color: #111111;
        border-bottom: 4px solid #1b1b1b;
        width:100%;
        padding:0px;
        margin: 0px;
    }
    .navigation .menu li{
        width:100%;
        margin: 0px;
        padding: 0px;
    }
    .navigation .menu li a{
        width:100%;
        height: 40px;
        display: flex;
        align-items: center;
        margin: 0px;
        padding: 30px 20px;
        border: 1px solid rgba(38,38,38,0.03);
    }
    .navigation .menu li a:hover{
        color: #ffffff;
        background-color: #2065cc;
    }
    .menu-icon{
        display: block;
    }
    .model{
        display: none;
    }
    .main-text{
        left: 50%;
        transform: translate(-50%,-50%);
    }
}


    .ssslad{
        display: none;
    }

@media(max-width:600px){
    .navigation{
        padding: 10px;
        display: flow-root;
        text-align: center;
    }
    .carrass1{
        display: none;
    }
    .ssslad{
        display: block;
    }
    .product-box {
        width: 90%;
        height: 350px;
    }
    .nav1igation{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 45px;
    }
    .logo img{
        height: 100px;
        padding-right: 5px;
    }
    .menu{
        display: flow-root;
    }
    .menu li{
        position: relative;
        margin: 15px;
        display: flex;
        text-transform: uppercase;
        font-weight: 500;
    }
    .menu li a{
        color: #555555;
    }
    .main-text {
        display: flexbox;
        text-align: center;
        padding: 20;
        width: 100%;
    }
    .model {
        display: none;  
    }
    .show_prdc {
         display: block;
    }

}