*{
    margin: 0;
    padding: 0;
  /*  background: url(1.jpg )  no-repeat;
    background-size: contain;*/

}

body{
    background: rgb(31, 41, 55);
}

.main{
    width: 100%;
    background: rgb(31 41 55) ;
   /* background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%);
    /* url(1.jpg); */
    background-position: center;
    background-size: cover;
    height: 100vh;
}


.navbar{
    width: 1200px;
    height: 75px;
    margin: auto;
}

.icon{
    width: 200px;
    float: left;
    height: 70px;
}

.logo{
    color: blueviolet;
    font-size: 35px;
    font-family: Arial;
    padding-left: 20px;
    float: left;
    padding-top: 10px;
    margin-top: 5px
}

.menu{
    width: 400px;
    float: left;
    height: 70px;
}

ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li{
    list-style: none;
    margin-left: 62px;
    margin-top: 27px;
    font-size: 14px;
}

ul li a{
    text-decoration: none;
    color: #fff;
    font-family: Arial;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

ul li a:hover{
    color: blueviolet;
    text-decoration: underline;
    font-size: 1rem;
}

.search{
    width: 330px;
    float: left;
    margin-left: 270px;
}

.srch{
    font-family: 'Times New Roman';
    width: 200px;
    height: 40px;
    background: transparent;
    border: 1px solid blueviolet;
    margin-top: 13px;
    color: #fff;
    border-right: none;
    font-size: 16px;
    float: left;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.btn{
    width: 100px;
    height: 40px;
    background:  blueviolet;
    border: 2px solid  blueviolet;
    margin-top: 13px;
    color: #fff;
    font-size: 15px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: 0.2s ease;
    cursor: pointer;
}
.btn:hover{
    color: #000;
}

.btn:focus{
    outline: none;
}

.srch:focus{
    outline: none;
}

.topic{
    color: blueviolet;
    font-size: 27px;
    margin-top: 20px; 
}
.topic .fa-solid{
    padding-left: 1rem;
    cursor: pointer;
}
.topic .fa-solid:hover{
    color: white;
}

















/*Menu*/

.product{
    width: 100%;
    padding: 70px 0;
   /* margin-top: -9rem; */
}

.product h1{
    font-size: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
}

.product h1 span{
    color: blueviolet;
    margin-left: 15px;
}

.product h1 span::after{
    content: '';
    width: 100%;
    height: 2px;
    background: blueviolet;
    display: block;
    position: relative;
    bottom: 15px;
}

.product .product_box{
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr  1fr;
    grid-gap: 15px;
}

.product .product_box .product_card{
    width: 325px;
    height: 480px;
    padding-top: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,1);
}

.product .product_box .product_card:hover{
    animation: glowing 1.5s infinite alternate;
}
.product .product_box .product_card .product_image{
    width: 300px;
    height: 245px;
    margin: 0 auto;
    overflow: hidden;
}


.product .product_box .product_card .product_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s;
}

.product .product_box .product_card .product_image:hover img{
    transform: scale(1.1);
}

.product .product_box .product_card .small_card{
    width: 45px;
    height: 45px;
    float: right;
    position: relative;
    top: -240px;
    right: -8px;
    opacity: 0;
    border-radius: 7px;
    transition: 0.3s;
}

.product .product_box .product_card:hover .small_card{
    position: relative;
    top: -240px;
    right: 20px;
    opacity: 1;
}

.product .product_box .product_card .small_card i{
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    color: #000;
    cursor: pointer;
    text-shadow: 0 0 6px #000;
    transition: 0.2s;
}

.product .product_box .product_card .small_card i:hover{
    color: blueviolet;
}

.product .product_box .product_card .product_info h3{
    width: 60%;
    text-align: justify;
    margin: 10px auto 10px auto;
    font-size: 18px;
    color: blueviolet;
}

.product .product_box .product_card .product_info p{
    text-align: center;
    margin-top: 8px;
    line-height: 21px;
    color: white;
}
.strike{
    text-decoration: line-through;
}
.product .product_box .product_card .product_info h4{
    text-align: center;
    margin-top: 10px;
    color: white;
}

.product .product_box .product_card .product_info .product_icon{
    color: blueviolet;
    text-align: center;
    margin: 10px 0 10px 0;
}

.product .product_box .product_card .product_info .product_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    border-radius: 8px;
    background: blueviolet;
    padding: 8px 10px;
    margin: 0 80px;
    transition: 0.3s;
}
.product .product_box .product_card .product_info .product_btn:hover{
    animation: glowing 1.5s infinite alternate;
    background: white;
    border: 3px solid black;

}

.help{
    width: 100%;
    height: 60vh;
  /*  padding: 70px 0; */
    background-size: cover;
    background-position: center;
}

.help h1{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 55px;
}

.help h1 span{
    color: blueviolet;
    margin-right: 15px;
    font-family: mv boli;
}

.help h1 span::after{
    content: '';
    width: 100%;
    height: 2px;
    background:blueviolet;
    display: block;
    position: relative;
    bottom: 15px;
}

.help .order_main{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.help .order_main .order_image img{
    width: 200px;
    height: 200px;
}

.help .order_main form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 10px;
}

.help .order_main form .input p{
    line-height: 30px;
    color: white;
}

.help .order_main form .input{
    margin: 5px;
}

.help .order_main form .input input{
    width: 300px;
    height: 35px;
    padding: 0 10px;
    border: 2px solid #cccccc;
    background: #eeeeee;
    outline: none;
    border-radius: 3px;
}

.help .order_main form .input input:focus{
    border: 2px solid blueviolet;
}

.help .order_main form .order_btn{
    padding: 10px 0;
    background: blueviolet;
    color: white;
    width: 40%;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 10px;
}
.help .order_main form .order_btn:hover{
    animation: glowing 1.5s infinite alternate;
    background-color: white;
    color: #000;
    border: 3px solid black;


}

@keyframes glowing {
    0% {
      box-shadow: 0 0 10px #3498db, 0 0 20px #3498db, 0 0 30px #3498db;
    }
    100% {
      box-shadow: 0 0 20px #3498db, 0 0 30px #3498db, 0 0 40px #3498db;
    }
  }



/*footer*/


footer {
    background-color: rgb(31 41 55);
    color: white;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
  }
  footer * {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    border: none;
    outline: none;
  }
  .row {
    padding: 1em 1em;
  }
  .row.primary {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 2fr;
    align-items: stretch;
  }
  .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 2em;
    min-height: auto;
  }
  h3 {
    width: 100%;
    text-align: left;
    color: white;
    font-size: 1.4em;
    white-space: nowrap;
  }
  
  */
  .aboutF p {
    text-align: justify;
    line-height: 2;
    margin: 0;
  }
 .foot input{
    font-size: 1em;
    padding: 1em;
    width: 100%;
    height: 34px;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .buttonF {
    background-color: blueviolet;
    color: #ffffff;
    font-size: 1em;
    width: 100%;
    height: 34px;
    border-radius: 5px;
    margin-bottom: 5px;
    cursor: pointer;
  }
  .buttonF:hover {
    animation: glowing 1.5s infinite alternate;
    background-color: white;
    color: #000;
    border: 3px solid black;

  }


  div.social {
    display: flex;
    justify-content: space-around;
    font-size: 2.4em;
    flex-direction: row;
    margin-top: 0.5em;
    cursor: pointer;
  }
  .social i {
    color: blueviolet;
  }

  .social i:hover {
    color: white;
  }
  
  
  
  
  .privacy span{
  cursor: pointer;
  }


  
  ::-webkit-scrollbar{
    width: 8px;
}

::-webkit-scrollbar-track{
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

::-webkit-scrollbar-thumb{
    background: blueviolet;
    border-radius: 10px;
}