@import url('https://fonts.googleapis.com/css?family=Exo:400,700');

*{
    margin: 0px;
    padding: 0px;
}

body{
    font-family: 'Exo', sans-serif;
}


.context {
    width: 100%;
    position: absolute;
    z-index: 1;
    
}

.context h1{
 
}


.area{
    background: #3694c31d;  
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
    width: 100%;
    height:100vh;
    position: fixed;
   
}

.circles{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;

}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 20px;
        border: 1px solid black;
        background-color: rgba(255, 255, 255, 0.1);
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 1;
        border-radius: 20px;
        border: 1px solid black;
        background-color: rgba(255, 255, 255, 0.1);
    }

}



.navhead{
    width: 100%;
    background-color: white;
    box-sizing: border-box;
    position: fixed;
    top: 0%;
}
.nav{
    width: 95%;
    background-color: white;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto;
    padding: 20px;

}
.logo{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ff003d;
    font-weight: bolder;
    font-size: 2rem;
}
.item{
    display: flex;
    justify-content: center;
    align-items: center;
}
.item a{
    text-decoration: none;
    color: #3693c3;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 20px;
}
.item a:hover{
    color: #53c37d;
   background-color: rgba(0, 0, 0, 0.046);
}
.button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.btn1{
    width: 30px;
    background-color: white;
    border: none;
    /* padding: 10px 30px; */
}
.btn1 img{
    width: 100%;
}
.btn2{
    width: 30px;
    border: none;
    padding: 7px 7px;
    background-color: #ff4d24;
    border-radius: 30px;
}
.btn2 img{
    width: 100%;
   
}
.responsivenavbtn{
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    border: none;
    padding: 7px 7px;
    background-color: #ff4d24;
    border-radius: 30px;
  
}
.responsivenavbtn img{
    width: 100%;
}
/* card1  */
.card1{
    width: 95%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px auto;
}
.card1img{
    width: 50%;
}
.card1img img{
    width: 100%;
}
.card1item{
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 9px;
    font-family: Arial, Helvetica, sans-serif;
}
.card1item h1{
  font-size: 3rem;
}
.card1item h2{
  font-size: 3rem;
}
.card1item h3{
  font-size: 3rem;
  color: #0c9f91;
}
/* .card1item button{
    padding: 15px 50px;
    color: white;
    background-color: #ff003d;
border: none;
border-radius: 10px;
cursor: pointer;
} */



.btn-border-reveal {
  background-color: rgba(0, 0, 0, 0.178);
  color:  #ff4d24;
  border: 2px solid #ffffff;
  position: relative;
}

.btn {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
  }
.btn-border-reveal::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color:  #ff4d24;
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-border-reveal:hover::after {
  width: 100%;
}

.btn-border-reveal:hover {
  color: white;
}


/* card end  */
.cardend{
    width: 95%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0px auto;
    background-color: rgba(255, 255, 255, 0);
}
.cardendimg{
    width: 40%;
}
.cardendimg img{
    width: 100%;
}
.cardenditem{
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 9px;
    font-family: Arial, Helvetica, sans-serif;
    width: 50%;
}
.cardenditem h1{
  font-size: 2.2rem;
}
.cardenditem h2{
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.804);
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif ;
  font-weight: lighter;
}
.cardenditem button{
    padding: 15px 50px;
    color: white;
    background-color: #ff003d;
border: none;
border-radius: 10px;
cursor: pointer;
margin-top: 20px;
}



/* product card  */
.prohead{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
margin-top: 40px ;
}
.prohead h1{
    font-size: 1rem;
text-transform: capitalize;
text-align: center;
}
.prohead h2{
    font-size: 2em;
text-transform: uppercase;
text-align: center;
}
.procard{
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px;
    box-sizing: border-box;
}
.procards{
    width: 46%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    padding: 10px 0px;
    gap: 30px;
}
.proimg{
    width: 26%;
    height: 160px;
    
    
}
.proimg:hover{
    transform: scale(1.1);
    transition: 1s;
}
.proimg img{
    width: 100%;
    height: 100%;
}
.proitem{
    width: 60%;
    display: flex;
padding: 20px 0px;
  gap: 10px;
    flex-direction: column;
}
.proitem h1{
    font-size: 1.1rem;
}
.proitem h1:hover{
    color: #ff003d;
}
.proitem h2{
display: flex;
align-items: center;
gap: 8px;
}
.proitem h2 b{
    font-size: 1.4rem;
    color: #ffbf14;
}
.proitem h2 p{
    font-size: 1.1rem;
    color: #00000068;
}
.proitem hr{
    width: 85%;
   background-color: rgba(0, 0, 0, 0.196);
   height: 1px;
   border: none;
}
.proitem h3{
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.proitem h3 b{
    font-size: 1.5rem;
    font-weight: bold;
}
.proitem h3 img{
    width: 30px;
    background-color: #ff4d24;
    padding: 8px 8px;
    border-radius: 40px;
}



.allprocard{
    width: 99%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.sidepro{
    width: 30%;
}
.sidepro img{
    width: 100%;
}



/* chek card  */
.checkcard{
    width: 97%;
    margin: 70px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.checkhead{
    width: 40%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.checkhead h1{
    font-size: 1rem;
    text-transform: uppercase;
    color: #ff4d24;
}
.checkhead h3{
    font-size: 1rem;
    text-transform: uppercase;
    color: #ff4d24;
}
.checkhead h2{
    font-size: 2.7rem;
    text-transform: uppercase;
    font-weight: bold;
}
.checkhead h4{
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: bold;
}
.checkitem{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}
.checkitem h1{
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.584);
    font-weight: lighter;
    line-height: 27px;
}
.checktext{
    width: 100%;
    margin-top: 20px;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    gap: 35px;
    flex-wrap: wrap;
}
.checktext h1{
    width: 46%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    color: black;
}




/* product add cart card  */

.addcardpall{
    width: 97%;
    margin: 50px auto 70px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.addcartp{
width: 22%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 0px;
padding: 20px 20px;
background-color: white;
}
.pimg{
    width: 100%;
}
.pimg img{
    width: 100%;
    height: 300px;
}
.pname{
    font-size: 1.3rem;
    font-weight: bold;
}
.addcartbtn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.addcartbtn b{
    font-size: 1.3rem;
    font-weight: bold;
    width: 80%;
    border: 1px solid black;
    text-align: center;
    padding: 10px 0px;
}
.imgc{
   width: 10%;
   padding: 10px;
   background-color: #ff4d24;
   
}
.imgc:hover{
   width: 19%;
position: absolute;
z-index: 1;
display: flex;
justify-content: center;
align-items: center;
}
 
.imgc img{
   width: 30px;
}
 



/* customer card  */
.customer{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto 80px auto ;
    box-sizing: border-box;
}


/* review card  */
.reviewbg{
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.566);
  color: rgb(255, 249, 249);
}
.reviewp{
    width: 97%;
    box-sizing: border-box;
    margin: 40px auto;
    gap: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

}
.review{
    width: 31%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.customerR{
    display: flex;
    align-items: center;
    justify-content: space-between;
 width: 80%;  
}
.customerdet{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap:5px;
}
.customerdet h1{
    font-size: 1.3rem;
}
.customerdet h2{
    font-size: 1rem;
    font-weight: lighter;
}
.customerpara{
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(255, 255, 255);
    text-align: justify;
}


















/* full page img  */
.fullimg{
    width: 100%;
    z-index: 1;
    /* display: none; */
}
.fullimg img{
    width: 100%;
}



/* side menu  */
.sidenav{
    width: 40%;
    position: absolute;
    z-index: 10;
    top: 0%;
    left: 0%;
    bottom: 0%;
    background-color: white;
    display: none;
}
.firstnav{
    display: flex;
   margin-top: 40px;
    justify-content: center;
    flex-direction: column;

}

.firstnav h1{
   font-size:  1.3rem;
color:  #3693c3;
width: 100%;
box-sizing: border-box;
padding: 10px 10px;
font-weight: bold;
}
.firstnav h1:hover{
    color: #53c37d;
   background-color: rgba(0, 0, 0, 0.046);
}
.logos{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
}
.logos h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ff003d;
    font-weight: bolder;
    font-size: 2rem;
}





/* FAQ */
.questionp{
width: 95%;
display: flex;
align-items: center;
justify-content: center;
margin: 30px auto 60px auto;
gap: 30px;
flex-direction: column;
}
.qustion{
    display: flex;
    width: 100%;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 30px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.541);
    padding: 15px 20px;
    
}
.showitem{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
.showitem h1{
    font-size: 1.4rem;
    color: white;
    font-weight: bold;
}
.showitem button{
    font-size: 1.4rem;
    color: white;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid white;
    padding: 0px 9px;
    border-radius: 100px;
}
.showitem button:hover{
    background-color: white;
    color: rgb(0, 0, 0);
    border: 2px solid  rgb(0, 0, 0);
}
.btndshow1{
    display: none;
}
.btndshow2{
    display: none;
}
.btndshow3{
    display: none;
}
.btndshow4{
    display: none;
}
.btndshow5{
    display: none;
}
.btndshow6{
    display: none;
}
.dshowitem{
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100%;
    gap: 20px;
    flex-direction: column;
    display: none;
}
.dshowitem h1{
    font-size: 1.1rem;
   font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
}
.dshowitem ul{
display: flex;
flex-direction: column;
align-items: start;
justify-content: center;
gap: 15px;
color: rgba(255, 255, 255, 0.815);
}



/* blog card  */
.blogallcard{
    display: flex;
    width: 97%;
    margin: 30px auto;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px 20px;
    box-sizing: border-box;
}
.blogp{
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
padding: 15px 20px;
gap: 20px;
background-color: white;
}
.blogp img{
    width: 100%;
}
.blogp h1{
    display: flex;
    align-items: center;
    justify-content: center;
   gap: 20px;
   font-size: 1.1rem;
}
.blogp h2{
   font-size: 1.5rem;
   font-weight: bold;
}
.blogp h2:hover{
 text-decoration: underline;
}














/* contact form  */
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
  }
  
  .title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: #00bfff;
  }
  
  .title::before {
    width: 18px;
    height: 18px;
  }
  
  .title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
  }
  
  .title::before,
  .title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: #00bfff;
  }
  
  .message, 
  .signin {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .signin {
    text-align: center;
  }
  
  .signin a:hover {
    text-decoration: underline royalblue;
  }
  
  .signin a {
    color: #00bfff;
  }
  
  .flex {
    display: flex;
    width: 100%;
    gap: 6px;
  }
  
  .form label {
    position: relative;
  }
  
  .form label .input {
    background-color: #333;
    color: #fff;
    width: 100%;
    padding: 20px 05px 05px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
  }
  
  .form label .input + span {
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 10px;
    top: 0px;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 12.5px;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,
  .form label .input:valid + span {
    color: #00bfff;
    top: 0px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .input {
    font-size: medium;
  }
  
  .submit {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
    background-color: #00bfff;
  }
  
  .submit:hover {
    background-color: #00bfff96;
  }
  
  @keyframes pulse {
    from {
      transform: scale(0.9);
      opacity: 1;
    }
  
    to {
      transform: scale(1.8);
      opacity: 0;
    }
  }











/* responive */
@media(max-width:850px){
    .card1{
        width: 95%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        flex-wrap: wrap-reverse;
        justify-content: center;
        margin: 0px auto;
    }
    .card1img{
        width: 80%;
    }
    .card1img img{
        width: 100%;
    }
    .card1item{
        padding: 0px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 9px;
        font-family: Arial, Helvetica, sans-serif;
    }
    .card1item h1{
      font-size: 3rem;
    }
    .card1item h2{
      font-size: 3rem;
    }
    .card1item h3{
      font-size: 3rem;
      color: #0c9f91;
    }

    
    /* card end  */
    .cardend{
        width: 95%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        flex-wrap: wrap-reverse;
        justify-content: center;
        margin: 0px auto;
    }
    .cardendimg{
        width: 80%;
    }
    .cardendimg img{
        width: 100%;
    }
    .cardenditem{
        padding: 0px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 9px;
        font-family: Arial, Helvetica, sans-serif;
    }
    .cardenditem h1{
      font-size: 2.2rem;
    }
    .cardenditem h2{
        font-size: 1rem;
        color: rgba(0, 0, 0, 0.804);
        font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif ;
        font-weight: lighter;
    }
   
    .cardenditem button{
        padding: 15px 50px;
        color: white;
        background-color: #ff003d;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 20px;
    }  
    /* nav bar   */
    .item{
        display: none;
    }
    .button{
        display: none;

    }
    .responsivenavbtn{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        border: none;
        padding: 7px 7px;
        background-color: #ff4d24;
        border-radius: 30px;
      
    }
    .addcardpall{
        width: 100%;
        margin: 0px 0px;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 10px;
        overflow-y: scroll;
       overflow-x: scroll;

    }
    .addcardpall::-webkit-scrollbar{
        display: none;
    }
    .addcartp{
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0px;
        padding: 20px 20px;
        background-color: white;
        box-sizing: border-box;
        flex: 0 0 100%;
      
        }
        .prohead{
            width: 100%;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 13px;
        margin-top: 40px ;
        flex-wrap: wrap;
        }
        .procard{
            width: 99%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
            margin: 30px;
            box-sizing: border-box;
        }
        .procards{
            width: 45%;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            background-color: rgb(255, 255, 255);
            padding: 10px 0px;
            gap: 30px;
        }
        .allprocard{
            width: 99%;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .sidepro{
            width: 70%;
        }
        .proimg{
            width: 40%;
            height: 130px;
            
            
        }
        .proimg:hover{
            transform: scale(1.1);
            transition: 1s;
        }
        .proimg img{
            width: 100%;
            height: 100%;
        }
        .proitem{
            width: 100%;
            display: flex;
        padding: 20px 0px;
          gap: 10px;
            flex-direction: column;
            margin: 0px auto;
            justify-content: center;
            align-items: center;
        }
        .proitem h1{
            font-size: 1rem;
        }
        .proitem h1:hover{
            color: #ff003d;
        }
        .proitem h2{
        display: flex;
        align-items: center;
        gap: 8px;
        }
        .proitem h2 b{
            font-size: 1.1rem;
            color: #ffbf14;
            text-align: center;
        }
        .proitem h2 p{
            font-size: 1rem;
            color: #00000068;
            text-align: center;
        }
        .proitem hr{
            width: 85%;
           background-color: rgba(0, 0, 0, 0.196);
           height: 1px;
           border: none;
        }
        .proitem h3{
            width: 85%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .proitem h3 b{
            font-size: 1.1rem;
            font-weight: bold;
        }
        .proitem h3 img{
            width: 20px;
            background-color: #ff4d24;
            padding: 5px 5px;
            border-radius: 40px;
        }
        .pimg{
            width: 50%;
            margin: 0px auto;
        }
        .pimg img{
            width: 100%;
            height:  240px;
        }
        .pname{
            font-size: 1rem;
            font-weight: bold;
        }
        .addcartbtn{
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .addcartbtn b{
            font-size: 1rem;
            font-weight: bold;
            width: 80%;
            border: 1px solid black;
            text-align: center;
            padding: 10px 0px;
        }
        .checkcard{
            width: 97%;
            margin: 70px auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .checkhead{
            width: 80%;
            display: flex;
            justify-content: center;
            flex-direction: column;
            margin: 0px auto;
        }
        .checkhead h1{
            font-size: 0.9rem;
            text-transform: uppercase;
            color: #ff4d24;
        }
        .checkhead h3{
            font-size: 0.9rem;
            text-transform: uppercase;
            color: #ff4d24;
        }
        .checkhead h2{
            font-size: 2rem;
            text-transform: uppercase;
            font-weight: bold;
        }
        .checkhead h4{
            font-size: 3rem;
            text-transform: uppercase;
            font-weight: bold;
        }
        .checkitem{
            width: 80%;
            margin: 0px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        
        }
        .checkitem h1{
            font-size: 1rem;
            color: rgba(0, 0, 0, 0.584);
            font-weight: lighter;
            line-height: 27px;
        }
        .checktext{
            width: 100%;
            margin-top: 20px;
            display: flex;
            /* justify-content: center; */
            /* align-items: center; */
            gap: 10px;
            flex-wrap: wrap;
        }
        .checktext h1{
            width: 48%;
            display: flex;
            align-items: center;
            /* justify-content: center; */
            color: black;
            font-size: 0.9rem;
        }
        .customer{
            width: 90%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 30px auto;
            box-sizing: border-box;
            flex-wrap: wrap;
            gap: 30px;
        }
        .reviewbg{
            width: 100%;
            box-sizing: border-box;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.566);
            color: rgb(255, 249, 249);
          }
          .reviewp{
              width: 97%;
              box-sizing: border-box;
              margin: 40px auto;
              gap: 30px;
              display: flex;
              align-items: center;
              justify-content: center;
              gap: 40px;
              flex-wrap: wrap;
          
          }
          .review{
              width: 70%;
              display: flex;
              align-items: start;
              justify-content: center;
              flex-direction: column;
              gap: 20px;
          }
          .customerR{
              display: flex;
              align-items: center;
              justify-content: space-between;
           width: 80%;  
          }
          .customerdet{
              display: flex;
              align-items: start;
              justify-content: center;
              flex-direction: column;
              gap:5px;
          }
          .customerdet h1{
              font-size: 1.3rem;
          }
          .customerdet h2{
              font-size: 1rem;
              font-weight: lighter;
          }
          .customerpara{
              width: 100%;
              font-size: 1rem;
              font-weight: bold;
              font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
              color: rgb(255, 255, 255);
              text-align: justify;
          }
          .blogallcard{
            display: flex;
            width: 97%;
            margin: 30px auto;
            justify-content: center;
            align-items: center;
            gap: 30px;
            padding: 10px 20px;
            flex-wrap: wrap;
            box-sizing: border-box;
        }
        .blogp{
            width: 47%;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: center;
        padding: 15px 20px;
        gap: 20px;
        background-color: white;
        }
          
}
@media(max-width:650px){
    .card1{
        width: 95%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        flex-wrap: wrap-reverse;
        justify-content: center;
        margin: 0px auto;
    }
    .card1img{
        width: 70%;
        margin: 30px;
    }
    .card1img img{
        width: 100%;
    }
    .card1item{
        padding: 0px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 9px;
        font-family: Arial, Helvetica, sans-serif;
    }
    .card1item h1{
      font-size: 2.4rem;
    }
    .card1item h2{
      font-size: 2.4rem;
    }
    .card1item h3{
      font-size: 2.4rem;
      color: #0c9f91;
    }
     
    /* card end  */
    .cardend{
        width: 95%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        flex-wrap: wrap-reverse;
        justify-content: center;
        margin: 0px auto;
    }
    .cardendimg{
        width: 70%;
    }
    .cardendimg img{
        width: 100%;
    }
    .cardenditem{
        padding: 0px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 9px;
        font-family: Arial, Helvetica, sans-serif;
    }
    .cardenditem h1{
      font-size: 1.6rem;
    }
    .cardenditem h2{
        font-size: 0.8rem;
        color: rgba(0, 0, 0, 0.804);
        font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif ;
        font-weight: lighter;
    }
   
    .cardenditem button{
        padding: 15px 50px;
        color: white;
        background-color: #ff003d;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 20px;
    }  
    /* nav bar   */
    .item{
        display: none;
    }
    .pimg{
        width: 50%;
        margin: 0px auto;
    }
    .pimg img{
        width: 100%;
        height:  200px;
    }
    .reviewbg{
        width: 100%;
        box-sizing: border-box;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.566);
        color: rgb(255, 249, 249);
      }
      .reviewp{
          width: 97%;
          box-sizing: border-box;
          margin: 40px auto;
          gap: 30px;
          display: flex;
          align-items: center;
          justify-content: start;
          gap: 40px;
          overflow: scroll;
      
      }
      .review{
          width: 100%;
          display: flex;
          align-items: start;
          justify-content: center;
          flex-direction: column;
          gap: 20px;
          flex: 0 0 100%;
      }
      .customerR{
          display: flex;
          align-items: center;
          justify-content: space-between;
       width: 80%;  
      }
      .customerdet{
          display: flex;
          align-items: start;
          justify-content: center;
          flex-direction: column;
          gap:5px;
      }
      .customerdet h1{
          font-size: 1.1rem;
      }
      .customerdet h2{
          font-size: 0.8rem;
          font-weight: lighter;
      }
      .customerpara{
          width: 100%;
          font-size: 0.8rem;
          font-weight: bold;
          font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
          color: rgb(255, 255, 255);
          text-align: justify;
      }
      .showitem h1{
        font-size: 1rem;
        color: white;
        font-weight: bold;
    }
    .showitem button{
        font-size: 1rem;
        color: white;
        font-weight: bold;
        background-color: rgba(0, 0, 0, 0);
        border: 2px solid white;
        padding: 0px 9px;
        border-radius: 100px;
    }
    .dshowitem h1{
        font-size: 0.8rem;
       font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        color: white;
    }
    .dshowitem ul{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.815);
    }
    .blogallcard{
        display: flex;
        width: 97%;
        margin: 30px auto;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 10px 20px;
        box-sizing: border-box;
    }
    .blogp{
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
    padding: 15px 20px;
    gap: 20px;
    background-color: white;
    }
}
@media(max-width:480px){
    .card1{
        width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        flex-wrap: wrap-reverse;
        justify-content: center;
        margin: 0px auto;
    }
    .card1img{
        width: 100%;
        margin-top: 50px;
    }
    .card1img img{
        width: 100%;
    }
    .card1item{
        padding: 0px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 9px;
        font-family: Arial, Helvetica, sans-serif;
    }
    .card1item h1{
      font-size: 1.7rem;
    }
    .card1item h2{
      font-size: 1.7rem;
    }
    .card1item h3{
      font-size: 1.7rem;
      color: #0c9f91;
    }
    
    /* card end  */
    .cardend{
        width: 98%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        flex-wrap: wrap-reverse;
        justify-content: center;
        margin: 0px auto;
    }
    .cardendimg{
        width: 90%;
    }
    .cardendimg img{
        width: 100%;
    }
    .cardenditem{
        padding: 0px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 9px;
        font-family: Arial, Helvetica, sans-serif;
        width: 90%;
    }
    .cardenditem h1{
      font-size: 1.2rem;
    }
    .cardenditem h2{
        font-size: 0.7rem;
        color: rgba(0, 0, 0, 0.804);
        font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif ;
        font-weight: lighter;
    }
   
    .cardenditem button{
        padding: 5px 30px;
        color: white;
        background-color: #ff003d;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 20px;
    }  
    /* nav bar   */
    .item{
        display: none;
    }
    .logo{
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #ff003d;
        font-weight: bolder;
        font-size: 1.3rem;
    }

    .sidenav{
        width: 60%;
        position: absolute;
        z-index: 1;
        top: 0%;
        left: 0%;
        bottom: 0%;
        background-color: white;
        display: none;
    }
    /* animation  */
    .circles li:nth-child(1){
        left: 25%;
        width: 30px;
        height: 30px;
        animation-delay: 0s;
    }
    
    
    .circles li:nth-child(2){
        left: 10%;
        width: 50px;
        height: 50px;
        animation-delay: 2s;
        animation-duration: 12s;
    }
    
    .circles li:nth-child(3){
        left: 70%;
        width: 45px;
        height: 45px;
        animation-delay: 4s;
    }
    
    .circles li:nth-child(4){
        left: 40%;
        width: 40px;
        height: 40px;
        animation-delay: 0s;
        animation-duration: 18s;
    }
    
    .circles li:nth-child(5){
        left: 65%;
        width: 30px;
        height: 30px;
        animation-delay: 0s;
        display: none;
    }
    
    .circles li:nth-child(6){
        left: 75%;
        width: 35px;
        height: 35px;
        animation-delay: 3s;
    }
    
    .circles li:nth-child(7){
        left: 35%;
        width: 15px;
        height: 15px;
        animation-delay: 7s;
    }
    
    .circles li:nth-child(8){
        left: 50%;
        width: 25px;
        height: 25px;
        animation-delay: 15s;
        animation-duration: 45s;
        display: none;
    }
    
    .circles li:nth-child(9){
        left: 20%;
        width: 10px;
        height: 10px;
        animation-delay: 2s;
        animation-duration: 35s;
    }
    
    .circles li:nth-child(10){
        left: 85%;
        width: 20px;
        height: 20px;
        animation-delay: 0s;
        animation-duration: 11s;
        display: none;
    }
    @keyframes animate {

        0%{
            transform: translateY(0) rotate(0deg);
            opacity: 1;
            border-radius: 3px;
            border: 1px solid rgba(0, 0, 0, 0.272);
            background-color: rgba(255, 255, 255, 0.1);
        }
    
        100%{
            transform: translateY(-1000px) rotate(720deg);
            opacity: 1;
            border-radius: 3px;
            border: 1px solid rgba(0, 0, 0, 0.272);
            background-color: rgba(255, 255, 255, 0.1);
        }
    }
    .procards{
        width: 90%;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        background-color: rgb(255, 255, 255);
        padding: 10px 0px;
        gap: 30px;
    }
    .proimg{
        width: 70%;
        height: 130px;
        
        
    }
    .showitem h1{
        font-size: 0.8rem;
        color: white;
        font-weight: bold;
    }
    .showitem button{
        font-size: 0.9rem;
        color: white;
        font-weight: bold;
        background-color: rgba(0, 0, 0, 0);
        border: 2px solid white;
        padding: 0px 9px;
        border-radius: 100px;
    }
    .blogp h1{
        display: flex;
        align-items: center;
        justify-content: center;
       gap: 20px;
       font-size: 1rem;
    }
    .blogp h2{
       font-size: 1.2rem;
       font-weight: bold;
    }
}