@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap');

:root{
   --purple:#000000;
   --red:#c0392b;
   --orange:#f39c12;
   --black:#333;
   --white:#fff;
   --light-color:#666;
   --light-white:#ccc;
   --light-bg:#f5f5f5;
   --border:.0.9rem solid var(--black);
   --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}
*{
   font-family: 'Rubik', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
   transition:all .2s linear;
}

*::selection{
   background-color: var(--purple);
   color:var(--white);
}

*::-webkit-scrollbar{
   height: .5rem;
   width: 1rem;
}

*::-webkit-scrollbar-track{
   background-color: transparent;
}

*::-webkit-scrollbar-thumb{
   background-color: var(--purple);
}

html{
   font-size: 62.5%;
   overflow-x: hidden;
}
body {
   font-size: 2rem;
}
section{
   padding:3rem 2rem;
}

.logo-image {
   width: 60px; 
   height: auto; 
   margin-left: 10px; 
}
@media (max-width:991px){

   html{
      font-size: 55%;
   }

}

@media (max-width:768px){

   .products-preview .preview img{
      height: 25rem;
   }

}

@media (max-width:450px){

   html{
      font-size: 50%;
   }

}
.header .header-2{
   background-color: var(--white);
   box-shadow: var(--box-shadow);
}

.header .header-2.active{
   position: fixed;
   top:0; left:0; right:0;
   z-index: 1000;
}

.header .header-2 .flex{
   padding:2rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   max-width: 1200px;
   margin:0 auto;
   position: relative;
}
.header .header-1{
   background-color: var(--light-bg);
}


.header .header-1 .flex .share a{
   font-size: 2.5rem;
   margin-right: 1.5rem;
   color:var(--black);
}

.header .header-1 .flex .share a:hover{
   color:var(--purple);
}

.header .header-1 .flex p{
   font-size: 2rem;
   color:var(--light-color);
}

.header .header-1 .flex p a{
   color:var(--purple);
}

.header .header-1 .flex p a:hover{
   text-decoration: underline;
}

.header .header-2 .flex .logo{
   font-size: 1.6rem;
   color:var(--purple);
}

.header .header-2 .flex .navbar a{
   margin:0 1rem;
   font-size: 2rem;
   color:var(--light-color);
}

.header .header-2 .flex .navbar a:hover{
   color:var(--purple);
   text-decoration: underline;
}

.header .header-2 .flex .icons > *{
   font-size: 2.5rem;
   color:var(--black);
   cursor: pointer;
   margin-left: 1.5rem;
}

.header .header-2 .flex .icons > *:hover{
   color:var(--purple);
}
h1 {
   text-align: center;
   color: #333;
}

h2 {
   font-weight: bold;
   color: #333;
   padding-bottom: 10px;
}

p {
   color: #555;
}

section {
   margin-bottom: 0px;
}

ul {
   list-style-type: none;
   padding: 0;
}

li {
   margin-bottom: 5px;
}

a {
   color: #0066cc;
   text-decoration: none;
}

a:hover {
   text-decoration: underline;
}

label {
   display: block;
   margin-bottom: 15px;
}

input[type="checkbox"] {
   margin-right: 10px;
}

button {
   padding: 15px;
   background-color: #0066cc;
   color: #fff;
   border: none;
   cursor: pointer;
   border-radius: 5px;
   display: block;
   margin-top: 15px;
   margin-left: auto;
   margin-right: auto;
   font-size: 16px;
   transition: background-color 0.3s;
}

button:disabled {
   background-color: #ccc;
   cursor: not-allowed;
}
        /* Additional style for red background when checkbox is checked */
        input[type="checkbox"]:checked+button {
         background-color: #ff0000; /* Red color */
     }
@media screen and (max-width: 600px) {
   body {
       margin: 10px;
       font-size: 16px;
   }
   .header .header-2 .flex .logo {
      font-size: 3rem;
   }
}
/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

/* Style for the back-to-top button */
#scroll-to-top {
   display: none;
   position: fixed;
   bottom: 30px;
   right: 20px;
   background-color: #2f3841;
   color: #da0d0d;
   border: none;
   border-radius: 50%;
   padding: 10px;
   cursor: pointer;
}

#scroll-to-top:hover {
   background-color: #0056b3;
}


/* media queries  */

@media (max-width:991px){

   html{
      font-size: 55%;
   }

}

@media (max-width:768px){

   #menu-btn{
      display: inline-block;
   }

   .header .header-2 .flex .navbar{
      position: absolute;
      top:99%; left:0; right:0;
      background-color: var(--white);
      border-top: var(--border);
      border-bottom: var(--border);
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   }

   .header .header-2 .flex .navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
   }

   .header .header-2 .flex .navbar a{
      display: block;
      font-size: 2.5rem;
      margin:2rem;
   }

   .home .content h3{
      font-size: 3.5rem;
   }

}

@media (max-width:450px){

   html{
      font-size: 50%;
   }

   .heading h3{
      font-size: 3.5rem;
      color: white;
   }

   .title{
      font-size: 3rem;
   }

}