@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dosis&family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Concert+One&display=swap");



html, body{
    font-family: "Poppins", sans-serif;
    overflow-X: hidden;
}
.mobile{
  display: none;
}
nav .mobile{
  display: none;
}

nav {
  margin: 0;
  padding: 0;
    position: relative;
    display: flex;
    top: 0.5vw;
    user-select: none;
  }
  nav a {
    position: relative;
    width: 20%;
    height: 15%;
    margin-left: 6%;
    text-decoration: none;
  }
  nav img {
    width: 75%;
    height: 75%;
  }
  nav ul {
    position: relative;
    display: flex;
    width: 50%;
    margin-left: 32vw;
    list-style: none;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  nav ul li {
    margin-left: 0.8vw;
    font-size: 1.1vw;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    cursor: pointer;
    width: 6.5vw;
    transition: 0.3s;
  }
  nav ul li a {
    color: #333;
    padding: 0 0.3vw;
  }
  
  .navhover i {
    position: relative;
    top: -0.1vw;
  
    font-size: 0.7vw;
  
    transition: 0.3s;
  }
  
  .megamenumain {
    position: absolute;
    /* display: none; */
    display: flex;
    width: 100%;
    height: 20vw;
    background: #cccbcb;
    left: -1%;
    top: 60%;
    opacity: 0;
  
    transition: opacity 0.3s ease-in-out;
  
    /* background: rgb(241, 248, 255); */
    background: rgb(255, 255, 255);
    cursor: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 0.5vw;
    z-index: -100;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
    transition: top 0.3s ease;
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px; */
  }
  
  .clicked i {
    transform: rotate(180deg);
  }
  .clicked > .megamenumain {
    display: flex;
    opacity: 100;
    z-index: 1;
    visibility: visible;
    top: 65%;
  }
  
  .megamenumain .megafirstchild {
    position: relative;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 100%;
  }
  .megamenumain .megafirstchild img {
    position: relative;
    top: 10%;
    left: 5%;
  }
  .megamenumain .midall {
    position: relative;
    display: grid;
    /* display: flex; */
    width: 70%;
    height: 100%;
    margin-right: 10px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    text-align: center;
    justify-content: center;
    align-items: center;
  
  }
  
  .megamenumain .midall div {
    
    position: relative;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #333;
    width: 80%;
    height: 60%;
    background: #f5f5f5;
    /* border: 1px solid #333; */
    transition: 0.1s;
    margin: 1vw;
    border-radius: 0.2rem;
    cursor: pointer;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    
  }
  
  .megamenumain .midall div img{
    position: relative;
    top: 15%;
    width: 50%;
    height: 44%;
    image-rendering:optimizeQuality;
    object-fit: scale-down;
    /* object-fit: cover; */
  }
  .megamenumain .midall div svg{
    position: relative;
    top: 15%;
    width: 50%;
    height: 44%;
    image-rendering:optimizeQuality;
    object-fit: scale-down;
    /* object-fit: cover; */
  }
  
  .megamenumain .midall div h1 {
    position: relative;
    text-align: center;
    font-size: 0.8vw;
    top: 15%;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    /* background: red; */
    left: 10%;
    width: 80%;
    
    /* border: 1px solid black; */
  }
  
  .megamenumain .midall div h1::after {
    content: "";
    position: absolute;
    background-color: rgb(35, 167, 211);
    height: 3px;
    width: 0%;
    left: 0%;
    bottom: -10px;
    transition: 0.3s;
   
  }
  /* .megamenumain .midall div:hover{
          box-shadow: 0 5px 25px rgba(0, 0, 0, .1);
         
          outline: 1px solid #333;
         
        
          border-radius: 0.2vw;
      } */

  .megamenumain .midall div:hover {
    box-shadow: none;
    
  }
  
  .navhover::after {
    content: "";
    position: absolute;
    background-color: rgb(35, 167, 211);
    height: 3px;
    width: 0%;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
  }
  .navhover:hover::after {
    width: 100%;
  }
  
  .searchdiv {
    position: relative;
    display: flex;
  
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: 0.1s ease all;
    width: 100%;
    top: 26vw;
  }
  .search {
    display: flex;
    border: 0.1vw solid transparent;
    padding: 0.5vw;
    border-radius: 2vw;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: 0.1s ease all;
    width: 50%;
    height: 3vw;
    left: 50vw;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
  }
  .search:hover {
    border: 0.1vw solid rgb(35, 167, 211);
  }
  
  .mainSearch {
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    font-size: 1.1vw;
    font-family: "Poppins", sans-serif;
    background: transparent;
    color: #333;
    backdrop-filter: blur(10px);
  }
  .search .fa-solid {
    padding-right: 0.4vw;
    margin-left: 0.6vw;
    color: #333;
    font-size: 1.5vw;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 50;
   
  }
  .search:hover .fa-solid {
    color: rgb(35, 167, 211);
  }













/*--------------------------------*/


.back button{
    position: absolute;
    left: 0;
    margin-left: 3.5%;
    background: transparent;
    font-size: 1.3rem;
    border: none;
    color: #333;
    z-index: 2;
    cursor: pointer;
    opacity: 50%;

}
.mainlandingpage{
    position: relative;
    width: 100%;
    display: flex;

    
}
.P-img{
 position: relative;
 top: 5rem;
 /* margin-left: 6%; */
 left: 5%;
 width: 45%;
 /* background: rgb(233, 233, 233); */
 border-radius: 10px;

 
}
.P-img img{
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease-in-out;
    border-radius: 3px;
    /* background: rgb(233, 233, 233); */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    

    /* border: 1px solid #333; */
}


.childimg {
   
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;
}
.childimg img{
    width: 24.75%;
    /* width: 10.75%; */
    /* object-fit: cover; */
    margin-left: 1px;
    cursor: pointer !important;
    border: 1px solid #fff;
    z-index: 11;
    transition: transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
   
}

.childimg img:hover {

    border: 1px solid rgb(255, 238, 238);
    
}

.P-details{
    position: relative;
    text-align: left;
    text-align: justify;
    /* direction: ltr;
    unicode-bidi: bidi-override; */
 
    height: 100%;
    top: 2rem;
    /* margin-left: 5%; */
    width: 40%;
    left: 10%;
    
  
    
}
.P-details button{
    width: 100%;
    height: 3rem;
    font-size: 1.5rem;
    background: transparent;
    cursor: pointer;
    border: 1px solid #333;
    color: #333;
    border-radius: 3px;
    margin-top: 1rem;
    
}

.P-details h2{
    margin-top: 2rem;
    color: #333;
}
.P-details h3{
    margin-top: 0.5rem;
    color: #333;
}
.P-details p{
    margin-top: 0rem;
    color: #333;
}
.line-6{
  
    position: absolute;
    text-align: left;
    left: 0.4%;
    top: 8.5%;
    width: 21%;
    height:3px;
    background: #333;
    border: none;
}
.Quantity{
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 1rem;
    justify-content: space-between;

}
.Quantity input{
    outline: none;
    width: 15%;
    border: none;
    color: #000000;
    font-size: 1.5rem;
    /* margin-left: 80%; */
}
.P-Reviews{
    display: flex;
    flex-wrap: wrap;
    
  
}
.P-Reviews .stars{
    display: flex;
    margin-left: 1%;
    margin-top: 1.8%;
    
    opacity: 0.4;
   
    opacity: 50%;
  
}
.P-Reviews .stars i{
  margin: 0;
}

.fa-backward{
color: #6e6e6e;
}

.image-transition {
  transition: opacity 0.5s ease-in-out; /* You can adjust the duration and easing function */
  opacity: 0;
}


.mid{
  position: relative;
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 50vh;
  background: transparent;
  margin-top: 2rem;
  margin-bottom: 6rem;
  
}

.mid div{
  
  width: 70%;
  height: 60%;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin-top: 3rem;
  left: 0%;
  right: 0%;
  
}
.mid div img{
  /* width: 65%;
  height: 90%; */
  width: 75%;
  height: 105%;
  /* object-fit: cover; */
}
.mid div h2{
  color: #333;
  font-size: 2.3rem;
}

.mid2{
  position: relative;
  display: flex;
  width: 100%;
  background: #fafafa;
  justify-content: center;
  gap: 5rem;
 
  
}
.mid2 .sswwwsw{
  margin-left: 2rem;

}

.mid2 .Bind{
  margin-right: 5rem;
}












footer{
  position: relative;
  margin-top: 29rem;
  width: 100%;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  text-align: center;
}
.mt-5{
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.pt-5{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  
}
.pt-5 .col-md-2{
  position: relative;
  margin: 2vw;
  font-size: 1.5rem;
  color: #333;
}
.pt-5 .col-md-2 a{
  color: #333;
  outline: none;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}
.pt-5 .col-md-2 a:hover{
  text-decoration: underline;
}

.asszzss{
  position: relative;

  font-size: 1rem;
  width: 100%;
  height: 7vw;
  text-align: center;
  justify-content: center;
  align-items: center;

}
.col-lg-8{
  position: relative;
  top: 10%;
  width: 80%;
  left: 10%;


}
.text-center i{
  color: #333;
  text-decoration: none;
  margin: 1vw;
  font-size: 1.5rem;
}
.text-center a{
  text-decoration: none;
}

.ees{
  color: #333;
}
.p-3{
  font-size: 0.9rem;
}




@media only screen and (max-width: 600px) {
  nav .mobile{
    display: block;
  }
  


  .main {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  nav ul {
    margin-left: 13vw;
  }

  nav img {
    margin-left: 0%;
  }
  nav ul {
    position: relative;
    display: flex;
    width: 50%;
    margin-left: 13vw;
    list-style: none;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  nav ul li {
    
    font-size: 0.4rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    cursor: pointer;
    width: 16rem;
    transition: 0.3s;
  }
  nav ul li a {
    color: #333;
    padding: 0 0.3vw;
  }
  .details{
    height: 13vw;
  }
  .details .Ptext {
    margin-left: 15%;
    width: 70vw;
    font-size: 0.6rem;
    
  }
}
#c2 {
  background: rgb(2, 2, 29);
}
#c2 h2 {
  color: #fff;
}
#c2 button {
  border: 1px solid #fff;
  color: #fff;
}
#c2 button a {
  color: #fff;
}

@media only screen and (max-width: 375px) {
  .mid_card {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  .mid_card img {
    width: 100%;
    height: 62%;
  }
  .mid_card .card h2 {
    font-size: 2.8vw;
  }
  .mid_card .card button {
    width: 4rem;
    height: 4.1vh;

    border-radius: 0.5rem;
    font-size: 0.7rem;
    margin-bottom: 5vw;
  }
  .mid h1 {
    font-size: 5vw;
  }
  .mid2 h1 {
    font-size: 5vw;
  }
  .mid3 h1 {
    font-size: 5vw;
  }


  .search {
    display: flex;
    border: 0.1vw solid #333;
    padding: 0.5vw;
    border-radius: 4vw;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 30vw;
    height: 4vw;
    transition: 0.1s ease all;
  }
  .search:hover {
    border: 0.1vw solid rgb(35, 167, 211);
  }

  .mainSearch {
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    font-size: 0.5rem;
    font-family: "Poppins", sans-serif;
  }
  .search .fa-solid {
    padding-right: 0.5vw;
    margin-left: 0.7vw;
    color: #333;
    font-size: 0.5rem;
    z-index: 100;
  }
  .main {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  nav ul {
    margin-left: 12vw;
  }
}

.searchedcard {
  display: block;
  width: 20vw;
  height: 20vw;
}



footer{
  position: relative;
  margin-top: 10rem;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
.mt-5{
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.pt-5{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  
}
.pt-5 .col-md-2{
  position: relative;
  margin: 2vw;
  font-size: 1.5rem;
  color: #333;
}
.pt-5 .col-md-2 a{
  color: #333;
  outline: none;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}
.pt-5 .col-md-2 a:hover{
  text-decoration: underline;
}

.asszzss{
  position: relative;

  font-size: 1rem;
  width: 100%;
  height: 7vw;
  text-align: center;
  justify-content: center;
  align-items: center;

}
.col-lg-8{
  position: relative;
  top: 10%;
  width: 80%;
  left: 10%;
  


}
.text-center i{
  color: #333;
  text-decoration: none;
  margin: 1vw;
  font-size: 1.5rem;
}
.text-center a{
  text-decoration: none;
}

.ees{
  color: #333;
}
.p-3{
  font-size: 0.9rem;
}
@media only screen and (max-width: 1440px){

  footer {
    margin-top: 28rem;
  }
  footer .fotterfonts{
    margin-top: 6rem;
  }
}





@media only screen and (max-width: 600px) {

  body{
    overflow-x: hidden;
  }

  .mainlandingpage{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    

    
}
.P-img{
  position: relative;
  top: 2rem;
  left: 0%;
  width: 90%;
 
 
  
 }

 
 .childimg {
    
     position: relative;
     display: flex;
     text-align: center;
     justify-content: center;
 }
 .childimg img{
     width: 24.2%;
     /* width: 24.75%; */
  
    
 }
 

 .P-details{
  position: relative;
  text-align: left;
  top: 2rem;
  width: 100%;
  padding-right: 2.2rem;
}
.P-details button{
  width: 90%;
  height: 3rem;
  font-size: 1.5rem;
  background: transparent;
  cursor: pointer;
  border: 1px solid #333;
  color: #333;
  border-radius: 3px;
  margin-top: 1rem;
  
}

.P-details h2{
  margin-top: 2rem;
  color: #333;
}
.P-details h3{
  margin-top: 0.5rem;
  color: #333;
}
.P-details p{
  margin-top: 0rem;
  text-align: justify;
  color: #333;
  width: 90%;
  
}
.line-6{

  position: absolute;
  text-align: left;
  left: 0%;
  top: 6.3%;
  width: 40%;
  height:3px;
  background: #333;
  border: none;
}
.Quantity{
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 1rem;
  justify-content: space-between;

}
.Quantity input{
  outline: none;
  width: 15%;
  border: none;
  color: #000000;
  font-size: 1.5rem;
  margin-left: 80%;
}
.P-Reviews{
  display: flex;
  flex-wrap: wrap;
  

}
.P-Reviews .stars{
  display: flex;
  margin-left: 1%;
  margin-top: 3.6%;
  
  opacity: 0.4;
 
  opacity: 50%;

}
.P-Reviews .stars i{
margin: 0;
}

.fa-backward{
color: #6e6e6e;
}

.image-transition {
transition: opacity 0.5s ease-in-out; /* You can adjust the duration and easing function */
opacity: 0;
}



.mid div{

width: 95%;
height: 58%;


}
.mid div img{

width: 100%;
height: 54%;
/* object-fit: cover; */
}
.mid div h2{
color: #333;
font-size: 1.4rem;
}

.mid2{
  flex-wrap: wrap;
  padding-left: 0.5rem;
}
.mid2 .retail{
text-align: justify;
}
.mid2 .retail ul li{
  padding-right: 1.5rem;
}
.mid2 .sswwwsw{
  margin-left: 2rem;

}

.mid2 .Bind{
  margin-right: 2rem;
}


.mid2 .Bind{
  text-align: justify;
}







  footer{
    position: relative;
    margin-top:10rem;
    
   
  }
  footer .ptag{
   text-align: justify;

  }
  .col-lg-8{
    top: 5%;
  }
  footer .asszzss{
  height: 32.5rem;
  
 

  }

 
  .fotterfonts{
    position: relative;
    padding-top: 3.5rem;
    margin-bottom: 1rem;
  
   
  }
  
  .pt-5{
    font-size: 1vw;

  }
  .fdfe22{
    display: none;
  }
  nav {
    padding-top: 0.2rem;
    border-bottom: 1px solid #d5d9e0;
    /* box-shadow:  0 0 0 1px #d5d9e0; */
  }
  nav img{
    height: 100%;
    /* height: 100%; */
    width: 120%;
    /* width: 128%; */
    margin-top: 0.4rem;
    /* background: red; */
  
  }
  nav a{
    margin-left: 2%;
  }
  nav i{
    position: absolute;
    right: 0;
    margin-right: 1.5rem;
    margin-top:0.85rem;
    color: #333;
    font-size: 1.4rem;
  }
  .mobile{
    display: block;
  }
 .minimenu{
    position: absolute;
    right: 100%;
    top: 1;
    z-index: 0;
    width: 100%;
    height: 93.5svh;
    background-color: #ffffff65;
    backdrop-filter: blur(25px);
    
    transition: 0.3s ease ;
    /* background: red; */
  }
 
 .minimenu .mobilenavmenuchild a{
    text-align: left;
  text-decoration: none;
  color: #333;
  margin-left: 10px;
 
  }
.minimenu .mobilenavmenuchild h1{
  font-family: "Poppins", sans-serif;
  padding-left: 20px;
  font-size: 1.2rem;

  }


  .openminimenu{
    
    right: 0%;
    z-index: 25;
   
  }








  .navmenu{
    position: relative;
    display:block;
    /* margin-top: 5.5%; */
    margin-top: 5.9%;
    margin-left: 5.5%;
    width: 2rem;
    /* height: 0.16rem; */
    height: 2px;
    background: #444;
    cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none; 
  transition: transform 0.01s linear;
  border-radius: 10px;
  }
  .navmenu::before{
    content:"";
    position: absolute;
    top: -0.6rem;
    left: 0;
    width: 1.76rem;
    height: 0.12rem;
    background: #444;
    transition: transform 0.05s ease-in-out;
    border-radius: 10px;
    box-sizing: border-box;
  }
  .navmenu::after{
    content:"";
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 1.76rem;
    height: 0.12rem;
    background: #444;
    transition: transform 0.05s ease-in-out;
    border-radius: 10px;
    box-sizing: border-box;
  }
  .navmenu::before {
    transform: translateY(0) rotate(0);
  }
  
  .navmenu::after {
    transform: translateY(0) rotate(0);
  }
  
  /* Active state - cross */
  .navmenu:checked::before {
    transform: translateY(0.59rem) rotate(45deg);
    height: 0.14rem;
  }
  
  .navmenu:checked::after {
    transform: translateY(-0.59rem) rotate(-45deg);
    height: 0.14rem;
  }
  .navmenu:checked {
    background: transparent;
  }
  .mobilebtn{
    position: absolute;

    right: 0;
    top: 0;
    margin-right: 4rem;
    margin-top: 0.5rem;
    width: 5.3rem;
    height: 2.3rem;
    border-radius: 10px;
    background: transparent;
    color: #333;
    outline: none;
    border: 1px solid #333;
    z-index: -5;

  }
  .mobilebtn a{
    color: #333;
  }
  .mobilebtn:hover{
    background: rgb(0, 195, 255);
    border: none;
    color: #fff;
  }
  .mobilebtn a:hover{
    color: #fff;
  }

  nav ul li{
    display: none;
  }
 
  .tag-list h3{
    font-size: 0.6rem;
  }
  .details .Ptext{
    width: 80%;
    font-size: 0.6rem;
    margin-left: 11%;
    color: #414040;
  }
}

@media only screen and (max-width: 375px) {


  body{
    overflow-x: hidden;
  }

  nav img{
    height: 100%;
    /* height: 100%; */
    width: 140%;
    z-index: -10;
    /* width: 128%; */
    margin-top: 0.4rem;
    /* background: red; */
  
  }
  .mobilebtn{
   margin-top: 0.5rem;
   
  }


  .mainlandingpage{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    

    
}
.P-img{
  position: relative;
  top: 2rem;
  left: 0%;
  width: 90%;
 
 
  
 }

 
 .childimg {
    
     position: relative;
     display: flex;
     text-align: center;
     justify-content: center;
 }
 .childimg img{
     width: 24.2%;
     /* width: 24.75%; */
  
    
 }
 

 .P-details{
  position: relative;
  text-align: left;
  top: 2rem;
  width: 100%;
  padding-right: 2.2rem;
}
.P-details button{
  width: 90%;
  height: 3rem;
  font-size: 1.5rem;
  background: transparent;
  cursor: pointer;
  border: 1px solid #333;
  color: #333;
  border-radius: 3px;
  margin-top: 1rem;
  
}

.P-details h2{
  margin-top: 2rem;
  color: #333;
}
.P-details h3{
  margin-top: 0.5rem;
  color: #333;
}
.P-details p{
  margin-top: 0rem;
  text-align: justify;
  color: #333;
  width: 90%;
  
}
.line-6{

  position: absolute;
  text-align: left;
  left: 0%;
  top: 5.6%;
  width: 45%;
  height:3px;
  background: #333;
  border: none;
}
.Quantity{
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 1rem;
  justify-content: space-between;

}
.Quantity input{
  outline: none;
  width: 15%;
  border: none;
  color: #000000;
  font-size: 1.5rem;
  margin-left: 80%;
}
.P-Reviews{
  display: flex;
  flex-wrap: wrap;
  

}
.P-Reviews .stars{
  display: flex;
  margin-left: 1%;
  margin-top: 3.6%;
  
  opacity: 0.4;
 
  opacity: 50%;

}
.P-Reviews .stars i{
margin: 0;
}

.fa-backward{
color: #6e6e6e;
}

.image-transition {
transition: opacity 0.5s ease-in-out; /* You can adjust the duration and easing function */
opacity: 0;
}



.mid div{

width: 95%;
height: 60%;


}
.mid div img{

width: 100%;
height: 54%;
/* object-fit: cover; */
}
.mid div h2{
color: #333;
font-size: 1.4rem;
}

.mid2{
  flex-wrap: wrap;
  padding-left: 0.5rem;
  /* text-align: center; */

}
.mid2 .retail{
text-align: justify;
}
.mid2 .retail ul li{
  padding-right: 1.5rem;
}
.mid2 .sswwwsw{
  font-size: 1.7rem;

}

.mid2 .Bind{
  margin-right: 2rem;
}


.mid2 .Bind{
  text-align: justify;
}







  footer{
    position: relative;
    margin-top:10rem;
    
   
  }
  footer .ptag{
   text-align: justify;

  }
  .col-lg-8{
    top: 5%;
  }
  footer .asszzss{
  height: 35.5rem;

  
 

  }

 
  .fotterfonts{
    position: relative;
    padding-top: 5.5rem;
    margin-bottom: 1rem;
   
  
   
  }
  
  .pt-5{
    font-size: 1vw;

  }
  .fdfe22{
    display: none;
  }

  .Ptext{
    position: relative;
    /* font-size: 1px; */
    overflow:visible;
   
   
  }
  .Ptext p{
    font-size: 0.5rem;
  }
 
  .tag-list h3{
    font-size: 0.6rem;
  }
  .Server {
    
   margin-top: 53.5rem;
   
  }

  footer {
    margin-top: 5rem;
  }
  


  footer .fotterfonts{
    padding: 0;
    margin-top: 10rem;
  }
}
@media only screen and (max-width: 768px){
  
}


