
:root{
    --neongreen: #39ff14;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

html, body{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #0f0f0f;
    scroll-behavior: smooth;
}

section{
    
    padding: 2rem 9%;
}
.heading{
    text-align: center;
    font-size: 4rem;
    color: #ffffff;
    padding: 1rem;
    margin: 2rem 0;
    background: rgba(57, 255, 20, .05);
}

.heading span{
    color: var(--neongreen);
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #1a1a1a;
    color: #ffffff;
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
    border: 1px solid #2a2a2a;
}

.btn:hover{
     background: #0f0f0f;
    color: #39ff14;
    border: 1px solid #39ff14;
    box-shadow: 0 0 10px #39ff14;
}

header{
     position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .5);
}

header .logo{
    font-size: 3rem;
    color: #ffffff;
    font-weight: bolder;
}

header .logo span{
    color: var(--neongreen);
}

header .navbar a{
font-size: 2rem;
padding: 0 1.5rem;
color: #b3b3b3;
border-radius: 6px;
}

header .navbar a:hover{
    color: var(--neongreen);

}

header .icons a{
    font-size: 2.5rem;
    color: #ffffff;
    margin-left: 1.5rem;
}

header .icons a:hover{
    color: var(--neongreen);
}

header #toggler{
    display: none;
}

header .fa-bars{
    font-size: 3rem;
    color: #ffffff;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    cursor: pointer;
    border: .1rem solid #2a2a2a;
    display: none;
    border: none;
}

.home{
    display: flex;
    align-items: center;
    
    min-height: 100vh;
    background: url(bgimg.jpg) no-repeat;
    background-size:cover;
    background-position: center;
    /* abc */
    width: 100%;
    height: 100vh;
}

.home .content{
    max-width: 50rem;
    display: block;
    
}

.home .content h3{
    font-size: 6rem;
    color: #ffffff;
}

.home .content span{
    font-size: 3.5rem;
    color: var(--neongreen);
    padding: 1rem 0;
    line-height: 1.5;
}

.home .content p{
    font-size: 1.5rem;
    color: #b3b3b3;
    padding: 1rem 0;
    line-height: 1.5;
}

.about .row{
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    padding-bottom: 3rem;
background-color: #0f0f0f;
}

.about .row .video-container{
    flex: 1 1 40rem;
    position: relative;
}

.about .row .video-container video{
    width: 100%;
    border: 1rem solid #1a1a1a; 
    border-radius: 1rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .5);
    height: 100%;
    object-fit: cover;
}

.about .row .video-container h3{

position: absolute;
top: 50%; transform: translateY(-50%);
font-size: 2.5rem;
 background: #1a1a1a;
    color: #ffffff;
width: 100%;
padding: 1rem 2rem;
text-align: center;
mix-blend-mode: multiply;

}

.about .row .content{
    flex: 1 1 40rem;

}

.about .row .content h3{
    font-size: 3rem;
    color: #ffffff;
}

.about .row .content p{
    font-size: 1.5rem;
    color: #b3b3b3;
    padding: .5rem 0;
    padding-top: 1rem;
    line-height: 1.5;
}

.icons-container{
    background: #0f0f0f;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.icons-container .icons{
    background: #1a1a1a;
    border: .1rem solid #2a2a2a;
    padding: 2rem;
    display: flex;
    align-items: center;
    flex: 1 1 25rem;
}

.icons-container .icons img{
    height: 5rem;
    margin-right: 2rem;
}


.icons-container .icons h3{
    color: #ffffff;
    padding-bottom: .5rem;
    font-size: 1.5rem;
}

.icons-container .icons h3:hover{
    color: var(--neongreen);
}

.icons-container .icons span{
    color: #b3b3b3;
    font-size: 1.3rem;
}

.products .box-container{
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
}

.products .box-container .box{
    flex: 1 1 30rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .5);
    border-radius: .5rem;
    background: #1a1a1a;
    border: 1rem solid #2a2a2a;
    position: relative;
    
}

.products .box-container .box .discount{
    position: absolute;
    top: 1rem; left: 1rem;
    padding: .7rem 1rem;
    font-size: 2rem;
    color: var(--neongreen);
    background: rgba(57, 255, 20, .08);
    z-index: 1;
    border-radius: .5rem;
}

.products .box-container .box .image{
    position: relative;
    text-align: center;
    padding-top: 2rem;
    overflow: hidden;

}

.products .box-container .box .image img{
    height: 25rem;
}
.products .box-container .box:hover .image img{
    transform: scale(1.1);
}

.products .box-container .box .image .icons{
    position: absolute;
    bottom: -7rem; left: 0; right: 0;
    display: flex;
}

.products .box-container .box:hover .image .icons{
    bottom: 0;
}

.products .box-container .box .image .icons a{
    height: 5rem;
    line-height: 5rem;
    font-size: 1.5rem;
    width: 50%;
    background: var(--neongreen);
    color: #0f0f0f;
}

.products .box-container .box .image .icons .cart-btn{
    border-left: .1rem solid var(--neongreen);
    border-right: .1rem solid var(--neongreen);
width: 100%;
}

.products .box-container .box .image .icons a:hover{
    background: #0f0f0f;
    color: var(--neongreen);
}

.products .box-container .box .content{
    padding: 2rem;
    text-align: center;
}

.products .box-container .box .content h3{
    font-size: 2.5rem;
    color: #ffffff;
}

.products .box-container .box .content .price{
    font-size: 2.5rem;
    color: var(--neongreen);
    font-weight: bolder;
    padding-top: 1rem;
}

.products .box-container .box .content .price span{
    font-size: 1.5rem;
    color: #b3b3b3;
    font-weight: lighter;
    text-decoration: line-through;
}

.reviews .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 0;

}

.reviews .box-container .box{
    flex: 1 1 30rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .5);
    border-radius: .5rem;
    padding: 3rem 2rem;
    padding-bottom: 5.5rem;
    position: relative;
    border: .1rem solid #2a2a2a;
}

.reviews .box-container .box .fa-quote-right{
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    font-size: 6rem;
    color: #2a2a2a;
}

.reviews .box-container .box .star i{

color: var(--neongreen);
font-size: 2rem;

}

.reviews .box-container .box p{

color: #b3b3b3;
font-size: 1.5rem;
line-height: 1.5;
padding-top: 2rem;

}

.reviews .box-container .box .user{
    display: flex;
    align-items: center;
    padding-top: 2rem;

}

.reviews .box-container .box .user img{
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.reviews .box-container .box .user h3{
    font-size: 2rem;
    color: #ffffff;

}

.reviews .box-container .box .user span{
    font-size: 1.5rem;
    color: #b3b3b3; 
}

.contact .row{
    display: flex;
    flex-wrap:wrap-reverse ;
    gap: 1.5rem;
    align-items: center;
    min-height: 79vh;
}

.contact .row form{
    flex: 1 1 40rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .5);
    border: .1rem solid #2a2a2a;
    background: #1a1a1a;
    border-radius: .5rem;
}

.contact .row .image{
    flex: 1 1 40rem;
}

.contact .row .image img{
    width: 100%;
    background: transparent;
}

.contact .row form .box{
    padding: 1rem;
    font-size: 1.7rem;
    color: #ffffff;
    text-transform: none;
    border: .1rem solid #2a2a2a;
    border-radius: .5rem;
    margin: .7rem 0;
    width: 100%;
    background: #0f0f0f;
}

.contact .row form .box:focus{
    border-color: var(--neongreen);
}

.contact .row form textarea{
    height: 15rem;
    resize:none;
     color: #ffffff;
    background: #0f0f0f;
}

.footer .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer .box-container .box{
    flex: 1 1 25rem;
}

.footer .box-container .box h3{
    color: #ffffff;
    font-size: 2.5rem;
    padding: 1rem 0;
}

.footer .box-container .box a{
    display: block;
    color: #b3b3b3;
    font-size: 1.5rem;
    padding: 1rem 0;
}

.footer .box-container .box a:hover{
    color: var(--neongreen);
    text-decoration: underline;
}

.footer .box-container .box img{
    width: 15rem;
padding-top: 0;
margin-top: 0;
padding-left: 0;
margin-left: 0;
}

.footer .credit{
    text-align: center;
    padding: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 2rem;
    font-size: 1.8rem;
    color: #ffffff;
    border-top: .1rem solid #2a2a2a;
}

.footer .credit span{
    color: var(--neongreen);
}

/* media queries */

@media (max-width:991px){

html{
    font-size: 55%;
}

header{
    padding: 2rem;
}

section{
    padding: 2rem;
}

.home{
    background-position: left;
}

}

@media (max-width:768px){

header .fa-bars{
    display: block;
}

header .navbar{
    /* display: block; */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: .1rem solid #2a2a2a;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    border-radius: 6px;
}

header #toggler:checked ~ .navbar{
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
background : #1a1a1a;
display: block;
}

header .navbar a{
    margin: 1.5rem;
    padding: 1.5rem;
    background: #0f0f0f;
    color: #ffffff;
    border: .1rem solid #2a2a2a;
    display: block;
}

.home .content h3{
    font-size: 5rem;
}

.home .content span{
    font-size: 2.5rem;
}

.icons-container .icons h3{
    font-size: 2rem;
}

.icons-container .icons span{
    font-size: 1.7rem;
}


}
@media (max-width:450px){

html{
    font-size: 50%;
}

.heading{
    font-size: 3rem;
}

}