@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,200&family=Roboto:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,200&family=Rancho&family=Roboto:wght@300;400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Courgette&family=Lobster&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');
:root{
    --box-shadow:0.5rem 1rem rgba(0,0,0,.1);
}
.header1
{
    font-family: 'Roboto', sans-serif;
    background-color:darkblue;
    color: white;
    font-size: 20px;
    font-weight: 500;
   top: 0;
    position: fixed;
    width: 100%;
}
header
{
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 9%;
    background: #fff;
    box-shadow: var(--box-shadow);
}
header .logo
{
    font-size: 2.5rem;
   font-weight:bolder;
    color: black;
 font-family: 'Lobster', cursive;
    text-decoration: none;
    color:darkblue;
    
}

.header .navbar a
{
font-size: 1.3rem;
margin: 0 1rem;
color: black;
font-family: 'Roboto', sans-serif;
text-decoration: none;
}
.header .icons  div
{
 height: 3.5rem;
 width: 3.5rem;
 line-height: 4.5rem;
 border-radius: .5rem;
 background: #eee;
 color: black;
font-size: 1.5rem;
 margin-right: .3rem;
 text-align: center;
 cursor: pointer;
 
}
.header .icons  div:hover
{
background: orange;
color: #fff;

}
#menu-btn
{
    display: none;
}
.header .search-form
{
    position: absolute;
    top: 110%;
    right: -110%;
    max-width: 50rem;
    height: 5rem;
    background:whitesmoke;

    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
   


}
.header .search-form.active
{
    right: 2rem;
    transition: .4s linear;
}
.header  .shopping-cart
{
    position: absolute;
    top: 110%;right: -110%;
    padding: 1rem;
    border-radius: .5rem;
    width: 30rem;
    background:whitesmoke;

}
.header  .shopping-cart .box
{ 
display: flex;
align-items: center;
gap: 1rem;
position: relative;
margin: 1rem 0;
}
.header  .shopping-cart.active
{
right: 2rem;
transition: .4s linear;
}
.header  .shopping-cart .box .content h3
{
    color: black;
    font-size: 1.7rem;
    align-items: center;
    padding-bottom: 1rem;

}
.header  .shopping-cart .box .content span
{
    color:darkblue;
    font-size: 1.6rem;
    
     
}
.header .login-form
{
    position: absolute;
    top: 110%;right: -110%;
    width: 30rem;
    padding: 2rem;
    border-radius: .5rem;
   
    text-align: center;
}
.header .login-form.active
{
   
right: 2rem;
transition: .4s linear;
}
.main
{
    width: 400px;
    height: 500px;
   
    overflow: hidden;
    background: url("../IMAGE/5bd3733997186-wallpaper-preview.jpg") no-repeat center / cover;
    border-radius: 10px;
    box-shadow: 5px 20px 50px #000;
}
#chk
{
    display: none;
}
.signup
{
    position: relative;
    width: 100%;
    height: 100%;

}
label
{
    color: #fff;
    font-size: 2.3rem;
    justify-content: center;
    display: flex;
    margin: 60px;
    font-weight: bold;
    cursor: pointer;
    transition: .5s ease-in-out;

}
input
{
    width: 60%;
    height: 20px;
    background: #e0dede;
    justify-content: center;
    display: flex;
    margin: 20px auto;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;

}
button
{
    width: 60%;
    height: 40px;
    margin: 10px auto;
    justify-content: center;
    display: block;
    color: #fff;
    background: #573b8a;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    outline: none;
    border: none;
    border-radius: 5px;
    transition: .2s ease-in;
    cursor: pointer;

}
button:hover
{
    background: #6d44b8;

}
.login
{
    height: 460px;
    background: #eee;
    border-radius: 60%/10%;
    transform: translateY(-180px);
    transition: .8s ease-in-out;
}
.login label{
    color: #573b8a;
    transform: scale(.6);
}
#chk:checked ~ .login
{
    transform: translateY(-500px);
}
#chk:checked ~ .login label
{
    transform: scale(1);
}
#chk:checked ~ .signup label
{
    transform: scale(.6);
}
@media(max-width:991px)
{
    .header1
{
    font-family: 'Roboto', sans-serif;
    background-color:darkblue;
    color: white;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
}
    .header
    {
        padding: 2rem;
        top:60px;
        
    }
    .header .navbar
    {
     position: absolute;
     top:110%;
     right: -110%;
     width:30rem;
     box-shadow: var(--box-shadow);
     border-radius: .5rem;
     background: #fff;
 }
 .header .navbar.active
 {
    right: 2rem;
    transition: .4s linear;
 }
 #menu-btn
{
    display:inline-block;
}
.header .navbar a
   {
    font-size: 2rem;
    margin: 2rem 2.5rem;
    display: block;;
   }
   .header1
{
   position: relative;
    width: 100%;
}
}
@media(max-width:768px)
{
    .header
    {
        padding: 2rem;
    }
   .header .navbar
   {
    position: absolute;
    top:120%;
    right: 2rem;
    width:30rem;
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    background: #fff;
}
.header .navbar.active
 {
    right: 2rem;
    transition: .4s linear;
 }
.header .navbar a
   {
    font-size: 2rem;
    margin: 2rem 2.5rem;
    display: block;;
   }
 .header1
 {
       width: 100%;
 }
}
@media(max-width:450px)
{
    .header1
{
   position: relative;
    width: 100%;
}
    .header
    {
        padding: 2rem;
    }
   .header .navbar
   {
    position: absolute;
    top:110%;
    right: 2rem;
    width:30rem;
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    background: #fff;
}
.header .navbar.active
 {
    right: 2rem;
    transition: .4s linear;
 }
}
.banner1,.banner2,.banner3
{
    height: 100vh;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.img1
{
    width: 100%;
    position: absolute;
    left: 50%;
    top:60%;
    transform: translate(-50%,-50%);
    animation: zoom-out 3s linear infinite;

}
@keyframes zoom-out
{
    100%
    {
        width: 100%;
    }
}

.text-box
{
   
    position: absolute;
    top: 300px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    left: 900px;
    color: crimson;
}

.text-box  h1{
    margin-bottom: 40px;
    font-size: 40px;
}
.text-box p{
    
    font-size: 30px;
    line-height: 18px;
    margin-top: 80px;
}
.text-box span
{
    background: red;
    height: 1px;
    width: 100px;
    position: absolute;
    left: 0;
}
.banner1
{
    animation: slide1 12s linear infinite;
}
.banner2
{
    animation: slide2 12s linear infinite;
}
.banner3
{
    animation: slide3 12s linear infinite;
}
@keyframes slide1
{
    0%
    {
        visibility: visible;
    }
    25%
    {
        visibility: hidden;
    }
    50%
    {
        visibility: hidden;
    }
    75%
    {
        visibility: hidden;
    }
    100%
    {
        visibility: hidden;
    }
}
@keyframes slide2
{
    0%
    {
        visibility: hidden;
    }
    25%
    {
        visibility: hidden;
    }
    50%
    {
        visibility: visible;
    }
    75%
    {
        visibility: hidden;
    }
    100%
    {
        visibility: hidden;
    }
}
@keyframes slide3
{
    0%
    {
        visibility: hidden;
    }
    25%
    {
        visibility: hidden;
    }
    50%
    {
        visibility:hidden;
    }
    75%
    {
        visibility: visible;
    }
    100%
    {
        visibility: hidden;
    }
}

@media(max-width:991px)
{
    .banner1,.banner2,.banner3
{
    height: 100vh;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.img1
{
    width: 100%;
    position: absolute;
    left: 50%;
    top:20%;
    transform: translate(-50%,-50%);
    animation: zoom-out 3s linear infinite;

}
.text-box
{
    width: 600px;
    position: absolute;
    top: 200px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    left: 400px;
    color: crimson;
}
}

.gallery
{
 position: relative;
top: 700px;
align-items: center;
}
.wrapper
{
    position: absolute;
    width: 80%;
    padding: 50px 0;
    align-items: center;
    left: 200px;
}
.section-header
{
    text-transform: uppercase;
    padding-bottom: 30px;
    font-size: 45px;
    color:goldenrod;
    letter-spacing: 3px;
}
.content
{
    padding: 10%;
}
.content h2
{
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.main-content
{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-row-gap: 25px;
    grid-column-gap:25px;


}
.main-content .box{
    position: relative;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.15);
    height: 350px;
    overflow: hidden;
}
.main-content .box ::before
{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: all 0.5s ease-in-out;
}
.main-content .box:hover::before
{
    top: 0;
    right: calc(100%-5px);
    z-index: 8;
}

.main-content .box img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-content .box .img-text
{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(225,225,225,0.9);
    width: 100%;
    height: 100%;
    top: 0;
    right:100%;
    transition: all 0.5s ease-in-out;
}
.main-content .box:hover .img-text
{
    top: 0;
    right: 0;
}
@media(max-width:991px){
    .gallery
    {
     position: relative;
    top: 500px;
    align-items: center;
    } 
    
    .wrapper
{
    position: absolute;
    width: 80%;
    padding: 50px 0;
    align-items: center;
    left: 100px;
}
}
@media(max-width:768px)
{
    .gallery
    {
     position: relative;
    top: 700px;
    align-items: center;
    } 
}
@media(max-width:450px)
{
    .gallery
    {
     position: relative;
    top: 600px;
    align-items: center;
    } 
    
    
}
.two h1 {
    text-transform: capitalize;
    color:crimson;
    font-size: 40px;
    font-weight: bolder;
 font-family: 'Acme', sans-serif;

    
  }
  .two h1:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    content: "";
    background-color: #c50000;
  }
  
  .two h1 span {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 3em;
    padding-left: 0.25em;
    color:goldenrod;
    padding-bottom: 10px;
  }
  .alt-two h1 {
    text-align:center;
  }
  .alt-two h1:before {
    left:50%; margin-left:-30px;
  }

  .offers
  {
    position: absolute;
    align-items: center;
    top: 1800px;
    width: 80%;
    left: 300px;
  }
  .offers img
  {
    width: 80%;
    align-items: center;
   
  }
  .offers .text{
    position: absolute;
    top:100px;
    left: 500px;
    color:midnightblue;
    font-size: 40px;
  }
  @media(max-width:991px){

    .offers
    {
        position: absolute;
        top:2200px;
    }
    .offers img
  {
    width: 80%;
    align-items: center;
   
  }
  .offers
  {
    left: 200px;
  }
  .offers .text{
    position: absolute;
    top:100px;
    left: 300px;
    color:midnightblue;
    font-size: 20px;
  }
}
.sgallery
{
    position: relative;
    top: 2100px;
    align-items: center;  
}
.section-header
{
    text-transform: uppercase;
    padding-bottom: 30px;
    font-size: 45px;
    color:goldenrod;
    letter-spacing: 3px;
}
.content
{
    padding: 10%;
}
.content h2
{
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.main-content
{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-row-gap: 25px;
    grid-column-gap:25px;


}
.main-content .box1{
    position: relative;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.15);
    height: 400px;
    overflow: hidden;
}
.main-content .box1 ::before
{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: all 0.5s ease-in-out;
}
.main-content .box1:hover::before
{
    top: 0;
    right: calc(100%-5px);
    z-index: 8;
}

.main-content .box1 img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-content .box1 .img-text
{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(225,225,225,0.9);
    width: 100%;
    height: 100%;
    top: 0;
    right:100%;
    transition: all 0.5s ease-in-out;
}
.main-content .box1:hover .img-text
{
    top: 0;
    right: 0;
}
@media(max-width:991px){
    .sgallery
    {
     position: relative;
    top: 2500px;
    align-items: center;
    } 
    
    .wrapper
{
    position: absolute;
    width: 80%;
    padding: 50px 0;
    align-items: center;
    left: 100px;
}
}
@media(max-width:450px)
{
    .sgallery
    {
     position: relative;
    top:900px;
    align-items: center;
    } 
    
    
}

.slider1
{
    position: absolute;
    top:2800px;
    width:98%;
main
}
{
    width: 90%;
    height: 840px;
    margin: 10px auto;
    position: relative;
    padding: 5px 0;
}
.main .text
{
    padding: 10px;
    text-align: center;
    color: #554;
}
.text h1
{
    font-size: 50px;

}
.text p
{
    width: 60%;
    padding: 5px;
margin: auto;
line-height: 30px;

}
main .header
{
    width: 90%;
    height: 60px;
    margin: 0 auto;
    align-items: center;
    display: flex;
    padding: 20px;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
}
.header p span
{
    font-size: 40px;
    margin:0 5px;
    cursor: pointer;
    color: #555;
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 19px;
    text-align: center;
    border-radius: 3px;

}
.header p span:hover
{
    background:#222;
    color: white;
}
.sslider
{
    width: 90%;
    height: 600px;
    margin: auto;
    display: flex;
    align-items: center;
    overflow-x: auto;

}
.sslider::-webkit-scrollbar
{
    display: none;
}
.sslider .product
{
    min-width: 24%;
    height: 90%;
    background: whitesmoke;
    margin: 0 20px 0 0;
    border-radius: 20px;
    position: relative;
    left: 0;
    transition: 0.5s;

}
picture
{
    width: 100%;
    height: 70%;
    padding: 20px;
    display: flex;
    overflow: hidden;
    margin-bottom: 20px;
}
picture img
{
    width: 90%;
    align-items: center;
}
.details
{
    width: 90%;
    margin: auto;
    padding:0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    font-size: 20px;
    color: #444;
}
.product a{
    text-decoration: none;
    padding: 6px 14px;
    font-size: 15px;
    margin: 5px 0 0 20px;
    display: inline-block;
    background: #6773ff;
    color: white;
}
@media(max-width:991px)
{
  
.sslider
{
    width: 50%;
    height: 600px;
    margin: auto;
    display: flex;
    align-items: center;
    overflow-x: auto;

}
.text h1{
    font-size: 35px;
}
.text p{
    width: 90%;
}
.header h1{
    font-size: 25px;
}
.header p span{
    font-size: 30px;
}
.sslider .product
{
    min-width: 40%;
    margin: 0 10px 0 0;
}
.details
{
    font-size: 16px;
}
.product a{
    padding: 6px 10px;
}
.sslider
{
    width: 200%;
   position: absolute;
   left: 30px;
    margin: auto;
    display: flex;
    overflow-x: auto;

}
.slider1
{
    position: absolute;
    top:3500px;
    width:50%;
}
}
.footer
{
    position: absolute;
    top:3500px;
    text-align: center;
    
}
.footer nav a
{
    color:antiquewhite;
    text-decoration: none;
    font-size: 25px;
}
.footer .name
{
    color: gold;
    font-size: 30px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.footer .address
{
    color: gold;
    font-size: 18px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.footer p
{
    color:antiquewhite;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 18px;
}
.footer img
{
    border-radius: 50px;
}


@media(max-width:991px)
{
    .footer
{
    position: absolute;
    top:4300px;
    text-align: center;
    
}
    
}