html{
  height: fit-content ;
  overflow-x: hidden !important;


}
.c-w{
  color: white;
}
body{
    background-color: black;
    display: flex !important;
    padding: 0 !important;
    flex-direction: column !important;

    height:  fit-content;
    background-image: url("/damon-lam-UBpM_NPeYTw-unsplash.webp");
    background-size: 100% 100%;
    width: 100%;
    min-height: 1100px;
    overflow-x: hidden ;
        /* Center and scale the image nicely */
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
      
        /* Needed to position the navbar */
    
        z-index: 2;
      


}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;;
}


/* ===== Colours ===== */
:root{
    --body-color: #E4E9F7;
    --nav-color: transparent;
    --side-nav: black;
    --text-color: #FFF;
    --search-bar: #F2F2F2;
    --search-text: #010718;
}


nav{
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background-color: var(--nav-color);
    z-index: 1000000;
}



nav .nav-bar{
    position: relative;
    height: 100%;
    margin-top: 40px;
    max-width: 1000px;
    width: 100%;
    background-color: var(--nav-color);
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .nav-bar .sidebarOpen{
    color: var(--text-color);
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    display: none;
}

nav .nav-bar .logo a{
    font-size: 35px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}

.menu .logo-toggle{
    display: none;
}

.nav-bar .nav-links{
    display: flex;
    align-items: center;
}

.nav-bar .nav-links li{
    margin: 0 20px;
    list-style: none;
}

.nav-links li a{
    position: relative;
    font-size: 35px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
}

.nav-links li a::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links li:hover a::before{
    opacity: 1;
}

.nav-bar .darkLight-searchBox{
    display: flex;
    align-items: center;
}
@media (max-width: 790px) {
    nav .nav-bar .sidebarOpen{
        display: block;
    }

    .menu{
        position: fixed;
        height: 100%;
        width: 320px;
        left: -100%;
        top: 0;
        padding: 20px;
        background-color: var(--side-nav);
        z-index: 1000000;
        transition: all 0.4s ease;
    }

    nav.active .menu{
        left: -0%;
    }

    nav.active .nav-bar .navLogo a{
        opacity: 0;
        transition: all 0.3s ease;
    }

    .menu .logo-toggle{
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-toggle .siderbarClose{
        color: var(--text-color);
        font-size: 24px;
        cursor: pointer;
    }

    .nav-bar .nav-links{
        flex-direction: column;
        padding-top: 30px;
    }

    .nav-links li a{
        display: block;
        margin-top: 20px;
    }
}
.-dis{
  cursor: not-allowed;
  color: #2f3533;
  text-decoration: none;
  
}
.-dis:hover{
  cursor: not-allowed;
  color: #2f3533;
  text-decoration: none;
  
}

.navlink {

  position: relative;


}

.navlink-dis:hover {
  text-decoration: none;
  cursor: not-allowed;
  color: #2f3533;
}

.navlink::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transform-origin: left;
  transition: transform 0.3s ease-out;
}

.navlink:hover::after {
  transform: scaleX(1);
  transform-origin:  left;   
}
.navlink:hover{
  color: #ffff;
  text-decoration: none;
}
.active{
  font-weight: bold;
  text-shadow: 2px;
  color: rgb(0, 0, 0) !important;
}
.activee{
  font-weight: bold;
  text-shadow: 2px;
  color: rgb(0, 0, 0) !important;
  display: flex;
}
.bg-img {
    /* The image used */
    background-image: url("/Rectangle\ 4.png");
    background-size: 100% 100%;
    width: 100% !important;
    min-height: 900px;
    margin-top: -50px;
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  
    /* Needed to position the navbar */


  }

  /*navbar*/
  :root {

    --bg-primary: hsl(195, 20%, 86%);
    --border-clr: hsl(195, 16%, 82%);

    --text-primary: hsl(180, 6%, 38%);
    --text-accent: hsl(195, 2%, 78%);

    --header: 3.5rem;
    --full-width: 100%;
    --padding-space: calc(var(--full-width) - 2rem);
    --max-width: 80rem;
    --min-width: 22.5rem;

    --bd-radius: 0.5em;
    --space-025: 0.25rem;
    --space-05: 0.5rem;
    --space-1: 1rem;
}

a {
    text-decoration: none;
}




.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 1.5rem; 
  overflow: hidden;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; 
  border-radius: 5%;

}

.gallery__item--1 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;

  /** Alternative Syntax **/
  /* grid-column: 1 / span 2;  */
  /* grid-row: 1 / span 2; */
}

.gallery__item--2 {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 2;

  /** Alternative Syntax **/
  /* grid-column: 3 / span 2;  */
  /* grid-row: 1 / span 2; */
}

.gallery__item--3 {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 3;

  /** Alternative Syntax **/
  /* grid-column: 5 / span 4;
  grid-row: 1 / span 5; */
}

.gallery__item--4 {
  grid-column-start: 4;
  grid-column-end: 5;
  grid-row-start: 2;
  grid-row-end: 3;

  /** Alternative Syntax **/
  /* grid-column: 1 / span 4;  */
  /* grid-row: 3 / span 3; */
}

.gallery__item--5 {
  grid-column-start: 5;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 3;

  /** Alternative Syntax **/
  /* grid-column: 1 / span 4; */
  /* grid-row: 6 / span 3; */
}

.gallery__item--6 {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 6;
  grid-row-end: 9;

  /** Alternative Syntax **/
  /* grid-column: 5 / span 4; */
  /* grid-row: 6 / span 3; */
}


.slogan-topnav{
  font-weight:700;
  font-size: 5rem;

}
.slogan-downbody{
  font-size: 48px;
}

@media (max-width: 1000px) {

  .logo-topnav{
    display: none;
  }
.slogan-topnav{
  font-weight:600;
  font-size: 5rem;

}
  .btn-products{
    font-size: 20px ;
  }
  .bg-img {
    min-height: 600px;

  }
  .slogan-topnav{
    font-size: 3rem;
    font-weight: 500;

  }
  .nav-item{
    margin: auto;
  }
    .header-content--left {
        justify-content: space-between;
    }

    .header-content--right {
      height: auto;
    }

    .nav-toggle {
        visibility: visible;
    }

    .nav__list {

        background-color: transparent;
        border-radius: var(--bd-radius);
        border: 1px solid var(--border-clr);
 
        grid-auto-flow: row;
        box-shadow: var(--shadow);
        visibility: hidden;
        opacity: 3;
        width: 100%;
    }

    .nav__list[aria-expanded="true"] {
        visibility: visible;
        transform-origin: top center;
        opacity: 1;
        transition: visibility 0ms, transform 166ms ease, opacity 166ms linear;
    }
    .slogan-downbody{
      font-size: 28px;
    }
    
.product-card ,.container-prod {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 250px !important;
  min-width: 220px !important ;
  height: 700px !important;

  margin: 0;
  text-align: left;
  font-family: arial;
  padding: 15px;
  border-radius: 50px;
  display: block;
}
.product-card-img{
  max-height: 230px;
  max-width: 230px;
}
.card-text {
  line-height: 19px;
  margin-left: 5px;
  font-size: 17px;
  color: white;
  font-weight: 200;
}

.parent-carousel{
  padding: 0 !important;
}
.header__content--flow {
  /* block-size: inherit; */
  display: flex;
  flex-direction: row-reverse;
  margin-top: 80px;
   gap: 0 ; 
}

}

@media (max-width:650px) {

  .product-card-img{
    max-height: 220px;
  }
  .btn-products{
    font-size: 10px !important;
  }
  .h-products{
    font-weight:300;
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
    font-size: 18px;
    text-align: center;
  }

  
.button-product{

  padding: 30px;
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-areas: 
  "g1 g2 g3 g4"
  "g5 g6 g7 g8";
  margin-top: 20px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  gap: 10px 10px !important;
  width: 100% !important;
}
  
}



  .navbar{
    z-index: 40;
  }
  /* Position the navbar container inside the image */
  .container-navbar {
    width: 100%;
    margin-top: 50px;
    text-align: center;
    padding: auto;
    overflow: visible;

  }

.body-down{
/* top: -518px;*/
 position: relative;
}
.feature-product-cards{
  display: flex;
  align-self: center;
  align-items: center;
  padding-left: auto;
  padding-right: auto;
  margin-top: 900px;
  justify-content: center;
  z-index: 1;
 
}
.low-price{
  width: 400px;
  height: 350px;
  padding: 20px;
  margin: 10px !important;
  color: rgb(0, 0, 0);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font: roboto;
  font-weight: bolder;
  background-color: white;
  text-align: center;
  margin-left: auto ;
  margin-right: auto;
  border-radius: 25px;
}
.feature-product-card-icon{
  width: 55px;
}

.img-stack{  
  padding: 30px;
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "left-img left-img middle-top-img middle-top-img right-img right-img"
    "left-img left-img middle-top-img middle-top-img right-img right-img"
    "left-img left-img bottom-midle bottom-middle right-img right-img";
}

.left-img-stack { grid-area: left-img; }

.middle-top-img-stack { grid-area: middle-top-img; }

.bottom-left-stack { grid-area: bottom-midle; }

.bottom-right-stack { grid-area: bottom-middle; }

.right-img-stack { grid-area: right-img; }

.products {
  align-items: center;
  justify-content: center;
}
.button-product{

  padding: 30px;
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-areas: 
  "g1 g2 g3 g4"
  "g5 g6 g7 g8";
  margin-top: 20px;
  margin-left: 15%;
  margin-right: 15%;
  gap: 30px 30px;
  width: 70%;
}
.btn-products{
  border: 2px solid whitesmoke;
  font-size: 25px;
  font-weight: 300;
  width: 100%;
  color: white;
  border-radius: 30px;
  padding: 10px;
  background: transparent;
}
.btn-products:active{
  background: #fff5f5;

}

.h-products{
  font-weight:600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: white;
  font-size: 48px;
  text-align: center;
}

.our-story{
  max-width:  1200px;
  display: flex;
  flex-direction: row;
  padding: 20px;
  margin: auto;
}
.our-story-txt{
  align-items: center;
  font-size: 20px;
  color: white;
  flex-wrap: wrap;
  margin-top: 50px;
  font-weight: 500;
  text-wrap: wrap;
  text-align: justify;

}

.footer{
  margin: auto;
  padding: 40px;
  display: flex;
  flex-direction: row;
  
}

.footer-link{
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 20px;

}
.quick-links{
  margin: auto;
  color: white;
  font-weight: 400;
  font-size: 20px;
}

.contact-us{
  margin: auto;
  color: white;
  font-weight: 400;
  font-size: 20px;
}
ul {
  margin: 0px;
  padding: 0px;
}
.footer-section {
background: transparent;
position: relative;
}
.footer-cta {
border-bottom: 1px solid white;
}
.single-cta i {
color: #ff5e14;
font-size: 30px;
float: left;
margin-top: 8px;
}
.cta-text {
padding-left: 15px;
display: inline-block;
}
.cta-text h4 {
color: #fff;
font-size: 20px;
font-weight: 600;
margin-bottom: 2px;
}
.cta-text span {
color: white;
font-size: 15px;
}
.footer-content {
position: relative;
z-index: 2;
}
.footer-pattern img {
position: absolute;
top: 0;
left: 0;
height: 330px;
background-size: cover;
background-position: 100% 100%;
}
.footer-logo {
margin-bottom: 30px;
}
.footer-logo img {
  max-width: 200px;
}
.footer-text p {
margin-bottom: 14px;
font-size: 14px;
    color: white;
line-height: 28px;
}
.footer-social-icon span {
color: #fff;
display: block;
font-size: 20px;
font-weight: 700;
font-family: 'Poppins', sans-serif;
margin-bottom: 20px;
}
.footer-social-icon a {
color: #fff;
font-size: 16px;
margin-right: 15px;
}
.footer-social-icon i {
height: 40px;
width: 40px;
text-align: center;
line-height: 38px;
border-radius: 50%;
}
.facebook-bg{
background: #3B5998;
}
.tiktok-bg{
background: #000000;
}
.instagram-bg{
  background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf)
}

.footer-widget-heading h3 {
color: #fff;
font-size: 20px;
font-weight: 600;
margin-bottom: 40px;
position: relative;
}
.footer-widget-heading h3::before {
content: "";
position: absolute;
left: 0;
bottom: -15px;
height: 2px;
width: 50px;
background: #ff5e14;
}
.footer-widget ul li {
display: inline-block;

width: 50%;
margin-bottom: 12px;
}
.footer-widget ul li a:hover{
color: #ff5e14;
}
.footer-widget ul li a {
color:white;
text-transform: capitalize;
}
.subscribe-form {
position: relative;
overflow: hidden;
}
.subscribe-form input {
width: 100%;
padding: 14px 28px;
background: #2E2E2E;
border: 1px solid #2E2E2E;
color: #fff;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}
.subscribe-form button i {
color: #fff;
font-size: 22px;
transform: rotate(-6deg);
}
.copyright-area{
background: #202020;
padding: 15px 0;
height: 50px;
}
.copyright-text p {
margin: 0;
font-size: 14px;
color: #878787;
}
.copyright-text p a{
color: #ff5e14;
}
.footer-menu li {
display: inline-block;
margin-left: 20px;
}
.footer-menu li:hover a{
color: #ff5e14;
}
.footer-menu li a {
font-size: 14px;
color: #878787;
}


/*   product-card */


.product-card ,.container-prod {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 350px;
  min-width: 349px;
  height: 480px;

  margin: 0;
  text-align: left;
  font-family: arial;
  padding: 25px;
  border-radius: 50px;
  display: block;
}

.product-card-img-top{
  width: auto;
  border-radius: 40px;
  max-height: 240px;
  max-width: 240px;
}

.product-card ,.container-prod{
  border: none;
  outline: 0;
  color: #ffffff;

  cursor: pointer;

  font-size: 18px;
}

.card-title{
  font-weight: 600;
  font-size: 20px;
  margin-top: 8px;
  color: white;
  text-transform: uppercase;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  margin-bottom: 8px;
}

.card-text{
  line-height: 20px;
  margin-left: 5px;
  color: white;
  display: none;
}

.card-1{
  background-color:#45335C;
}

.card-2{
  background: #2C5D7D;

}

.card-3{
  background: #FA6F63;

}


.card-price{
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  float: left;
  margin: 0;

}

.card-price-10{
  float: right;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin: 0;

}

.owl-carousel{
  margin-top: 100px ;
}

.parent-carousel{

  
  overflow: hidden;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;

  position: relative;

}

.rep-center{
  align-items: center;
  justify-content: center;
  display: flex;
}

.targetDiv{
  display: none;
}

.owl-prev{
  width: 200px;
  font-size: 80px;
  float: left;

}

.owl-next{
  width: 200px;
  font-size: 80px;
  font-weight: 900;
  height: 200px;
  float: right;
  

}

.fab-2,.fab-3{
  margin-top: 5px;
}

@media screen and (max-width: 1920px)  {


}


@media screen and (max-width: 1060px)  {
  .our-story{
    max-width:  1200px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: auto;
    align-items: center;
    justify-content: center;
  }
  .logo-ourstory{
    width: 300px;
  }
  .heading-ourstory{
    margin-left: auto;
    margin-right: auto;
    font-size: 3rem;
  }

  
}

@media (max-width: 479px) {
  .header-content--left > * {
      scale: 0.83;
  }
  .btn-products{
    font-size: 10px !important;
  }
  .product-card-img{
    max-height: 200px;
    max-width: 200px;
  }
  .h-products{
    font-weight:300;
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
    font-size: 28px;
    text-align: center;
  }
 
  
.slogan-topnav{
font-weight:700;
font-size:3rem;

}


}
@media (max-width: 380px){
  .slogan-topnav{
    font-weight:700;
    font-size:35px;
    
    }
  .txt-quit-smoking{
    padding: 4px !important;
  }
  
  .button-product {
    padding: 0px !important;
    align-items: center;
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    grid-template-areas:
        "g1 g2 g3 g4"
        "g5 g6 g7 g8";
    margin-top: 10px !important;
    margin-left: 0px !important;
    margin-right: 0px!important;
    gap: 10px 3px !important;
    width: 100% !important;
 
  
}
}


     /* Dropdown Button */
     .dropbtn {
      background-color: transparent;
      color: white;
      padding: 16px;
      font-size: 16px;
      border: none;
      cursor: pointer;

    }
    
    /* Dropdown button on hover & focus */
    .dropbtn:hover, .dropbtn:focus {
      background-color: #3e8e41;
    }
    
    /* Dropdown Content (Hidden by Default) */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
    }
    
    /* Links inside the dropdown */
    .dropdown-content a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }
    
    /* Change color of dropdown links on hover */
    .dropdown-content a:hover {background-color: #f1f1f1;}
    
    /* Show the dropdown menu on hover */
    .dropdown:hover .dropdown-content {
      display: block;
    }
    
    /* Change the background color of the dropdown button when the dropdown content is shown */
    .dropdown:hover .dropbtn {
      background-color: #3e8e41;
    }
    .dropdown{
      float: right;
      z-index: 5;
      margin-right: 40px;
    }

    .products-container{ 
      z-index: 4;
    }

 
  



    @import url('https://fonts.googleapis.com/css?family=Poppins:100,300,400,500,600,700,800, 800i, 900&display=swap');




.container {
    position: relative;
}

.container .card {
    position: relative;
    width: 320px;
    height: 450px;
    background: #232323;
    border-radius: 20px;
    overflow: hidden;
}

.container .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    clip-path: circle(150px at 80% 20%);
    transition: 0.5s ease-in-out;
}

.container .card:hover:before {
    clip-path: circle(300px at 80% -20%);
}

.container .card:after {
    content: "ELIQUIDS";
    position: absolute;
    top: 30%;
    left: -20%;
    font-size: 6em;
    font-weight: 800;
    font-style: italic;
    color: rgba(255, 255, 255, 0.04);

}

.container .card .imgBx {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 100%;
    height: 100%;
    transition: .5s;
}

.container .card:hover .imgBx {
    top: 0%;
    transform: translateY(-25%);
    /* bug  */
}

.container .card .imgBx img {
    position: absolute;
    z-index: 2;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
    width: 270px;
}

.container .card .contentBx {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    text-align: center;
    transition: 1s;
    z-index: 90;
 
}

.container .card:hover .contentBx {
    height: 210px;
}

.container .card .contentBx h2 {
    position: relative;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.container .card .contentBx .size,
.container .card .contentBx .color {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}

.container .card:hover .contentBx .size {
    opacity: 1;
    visibility: visible;
    transition-delay: .5s;
}

.container .card:hover .contentBx .color {
    opacity: 1;
    visibility: visible;
    transition-delay: .6s;
}

.container .card .contentBx .size h3,
.container .card .contentBx .color h3 {
    color: white;
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 10px;
}

.container .card .contentBx .size span {
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    font-size: 14px;
    display: inline-block;
    color: #111;
    background: #fff;
    margin: 0 5px;
    transition: .5s;
    color: #111;
    border-radius: 4px;
    cursor: pointer;
}

.container .card .contentBx .size span:hover {  /* other bug */
    background: #B90000;
}

.container .card .contentBx .color span {
    width: 20px;
    height: 20px;
    background: #ff0;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.container .card .contentBx .color span:nth-child(2) {
     background: #1BBFE9;
}

.container .card .contentBx .color span:nth-child(3) {
     background: #1B2FE9;
}

.container .card .contentBx .color span:nth-child(4) {
     background: #080481;
}

.container .card .contentBx a {

    padding: 10px 20px;
    background: #fff;
    border-radius: 4px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    position: relative;
    z-index: 4;
    display: inline-block;

    transform: translateY(50px);
    transition: .5s;
}

.container .card:hover .contentBx a {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: .7s;
} 

/**Card 2 ()finest**/


.container .card-ripe {
  position: relative;
  width: 320px;
  height: 450px;
  background: #232323;
  border-radius: 20px;
  overflow: hidden;
}

.container .card-ripe:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #96195e;
  clip-path: circle(150px at 80% 20%);
  transition: 0.5s ease-in-out;
}

.container .card-ripe:hover:before {
  clip-path: circle(300px at 80% -20%);
}

.container .card-ripe:after {
  content: "ELIQUIDS";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 6em;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.04);

}

.container .card-ripe .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 100%;
  height: 100%;
  transition: .5s;
}

.container .card-ripe:hover .imgBx {
  top: 0%;
  transform: translateY(-25%);
  /* bug  */
}

.container .card-ripe .imgBx img {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
  width: 270px;
}

.container .card-ripe .contentBx {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 90;
}

.container .card-ripe:hover .contentBx {
  height: 210px;
}

.container .card-ripe .contentBx h2 {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
}

.container .card-ripe .contentBx .size,
.container .card-ripe .contentBx .color {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  transition: .5s;
  opacity: 0;
  visibility: hidden;
}

.container .card-ripe:hover .contentBx .size {
  opacity: 1;
  visibility: visible;
  transition-delay: .5s;
}

.container .card-ripe:hover .contentBx .color {
  opacity: 1;
  visibility: visible;
  transition-delay: .6s;
}

.container .card-ripe .contentBx .size h3,
.container .card-ripe .contentBx .color h3 {
  color: white;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 10px;
}

.container .card-ripe .contentBx .size span {
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
  display: inline-block;
  color: #111;
  background: #fff;
  margin: 0 5px;
  transition: .5s;
  color: #111;
  border-radius: 4px;
  cursor: pointer;
}

.container .card-ripe .contentBx .size span:hover {  /* other bug */
  background: #B90000;
}

.container .card-ripe .contentBx .color span {
  width: 20px;
  height: 20px;
  background: #ff0;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.container .card-ripe .contentBx .color span:nth-child(2) {
   background: #1BBFE9;
}

.container .card-ripe .contentBx .color span:nth-child(3) {
   background: #1B2FE9;
}

.container .card-ripe .contentBx .color span:nth-child(4) {
   background: #080481;
}

.container .card-ripe .contentBx a {

  padding: 10px 20px;
  background: #fff;
  border-radius: 4px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #111;
  position: relative;
  z-index: 4;
  display: inline-block;

  transform: translateY(50px);
  transition: .5s;
}

.container .card-ripe:hover .contentBx a {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: .7s;
} 


/**Card 2 ()finest**/


.container .card-finest {
  position: relative;
  width: 320px;
  height: 450px;
  background: #232323;
  border-radius: 20px;
  overflow: hidden;
}

.container .card-finest:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ebd406;
  clip-path: circle(150px at 80% 20%);
  transition: 0.5s ease-in-out;
}

.container .card-finest:hover:before {
  clip-path: circle(300px at 80% -20%);
}

.container .card-finest:after {
  content: "ELIQUIDS";
  position: absolute;
  top: 30%;
  left: -20%;
  font-size: 6em;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.04);

}

.container .card-finest .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 100%;
  height: 100%;
  transition: .5s;
}

.container .card-finest:hover .imgBx {
  top: 0%;
  transform: translateY(-25%);
  /* bug  */
}

.container .card-finest .imgBx img {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
  width: 270px;
}

.container .card-finest .contentBx {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 90;
}

.container .card-finest:hover .contentBx {
  height: 210px;
}

.container .card-finest .contentBx h2 {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
}

.container .card-finest .contentBx .size,
.container .card-finest .contentBx .color {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  transition: .5s;
  opacity: 0;
  visibility: hidden;
}

.container .card-finest:hover .contentBx .size {
  opacity: 1;
  visibility: visible;
  transition-delay: .5s;
}

.container .card-finest:hover .contentBx .color {
  opacity: 1;
  visibility: visible;
  transition-delay: .6s;
}

.container .card-finest .contentBx .size h3,
.container .card-finest .contentBx .color h3 {
  color: white;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 10px;
}

.container .card-finest .contentBx .size span {
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
  display: inline-block;
  color: #111;
  background: #fff;
  margin: 0 5px;
  transition: .5s;
  color: #111;
  border-radius: 4px;
  cursor: pointer;
}

.container .card-finest .contentBx .size span:hover {  /* other bug */
  background: #B90000;
}

.container .card-finest .contentBx .color span {
  width: 20px;
  height: 20px;
  background: #ff0;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.container .card-finest .contentBx .color span:nth-child(2) {
   background: #1BBFE9;
}

.container .card-finest .contentBx .color span:nth-child(3) {
   background: #1B2FE9;
}

.container .card-finest .contentBx .color span:nth-child(4) {
   background: #080481;
}

.container .card-finest .contentBx a {

  padding: 10px 20px;
  background: #fff;
  border-radius: 4px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #111;
  position: relative;
  z-index: 4;
  display: inline-block;

  transform: translateY(50px);
  transition: .5s;
}

.container .card-finest:hover .contentBx a {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: .7s;
} 



.clearfix:before, .clearfix:after { display: table; content: ''; }
.clearfix:after { clear: both; }


input:focus, textarea:focus, keygen:focus, select:focus {
	outline: none;
}
::-moz-placeholder {
	color: #666;
	font-weight: 300;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #666;
	font-weight: 300;
}


/* Contact Form Styling */
.container {
	padding: 0 50px 70px;
}
.textcenter {
	text-align: center;
}
.section1 {
	text-align: center;
	display: table;
	width: 100%;
}
.section1 .shtext {
	display: block;
	margin-top: 20px;
  font-size: 30px;
  color: white;
}
.section1 .seperator {
	border-bottom:1px solid #a2a2a2;
	width: 35px;
	display: inline-block;
	margin: 20px;
}

.section1 h1 {
	font-size: 40px;
	color: #ff5e14;
	font-weight: normal;
}

.section2 {
    width: 1200px;
    margin: 25px auto;
}
.section2 .col2 {
	width: 48.71%;
}
.section2 .col2.first {
	float: left;
}
.section2 .col2.last {
	float: right;
}
.section2 .col2.column2 {
	padding: 0 30px;
}
.section2 span.collig {
	color:white;
	margin-right: 10px;
	display: inline-block;
}
.section2 .sec2addr {
	display: block;
	line-height: 26px;
}
.section2 .sec2addr p:first-child {
	margin-bottom: 10px;
  color: white;
}
.section2 .sec2contactform input[type="text"], 
.section2 .sec2contactform input[type="email"],
.section2 .sec2contactform textarea {
    padding: 18px;
    border: 0;
    background: #EDEDED;
    margin: 7px 0;
}
.section2 .sec2contactform textarea {
	width: 100%;
	display: block;
	color: #666;
  resize:none;
}
.section2 .sec2contactform input[type="submit"] {
	padding: 15px 40px;
    color: #fff;
    border: 0;
    background: #ff5e14;
    font-size: 16px;
    text-transform: uppercase;
    margin: 7px 0;
    cursor: pointer;
}
.section2 .sec2contactform h3 {
	font-weight: normal;
    margin: 20px 0;
    margin-top: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 19px;
    color: #ff5e14;
}

/* @media querries */

@media only screen and (max-width: 1266px) {
	.section2 {
		width: 100%;
	}
}
@media only screen and (max-width: 960px) {
	.container {
		padding: 0 30px 70px;
	}
	.section2 .col2 {
		width: 100%;
		display: block;
	}
	.section2 .col2.first {
		margin-bottom: 10px;
	}
	.section2 .col2.column2 {
		padding: 0;
	}
	body .sec2map {
		height: 250px !important;
	}
}
@media only screen and (max-width: 768px) {
	.section2 .sec2addr {
		font-size: 14px;
	}
	.section2 .sec2contactform h3 {
		font-size: 16px;
	}
	.section2 .sec2contactform input[type="text"], .section2 .sec2contactform input[type="email"], .section2 .sec2contactform textarea {
		padding: 10px;
		margin:3px 0;
	}
	.section2 .sec2contactform input[type="submit"] {
		padding: 10px 30px;
		font-size: 14px;
	}
}
@media only screen and (max-width: 420px) {
	.section1 h1 {
		font-size: 28px;
	}	
}


.googlemap{
  padding: 20px;
  margin-top: 20%;
  margin-bottom: auto;

}
.framemap{
  width: 100%;
}



h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
}

.cart {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
}

#cart-count {
  background-color: #333;
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
  margin-left: 0.5rem;
}

.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product {
  background-color: #1f1f1f;
  border: 1px solid #333;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px;
}

.product img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.product h2 {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  color: #fff;
}

.product p {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 1.5rem;
}

.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.product:hover img {
  transform: scale(1.05);
}

.btn {

  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn i {
  margin-right: 0.5rem;
}

.btn:hover {
  background-color: #555;
}

#notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hidden {
  transform: translateY(100px);
  opacity: 0;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .product {
      padding: 1rem;
  }
}

@media (max-width: 480px) {
  header {
      padding: 0.5rem 0;
  }

  h1 {
      font-size: 2rem;
  }

  .product {
      padding: 0.75rem;
  }
}


header {
  background-color: #1f1f1f;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}



.img-side1 , .img-side2 {
  max-width: 470px;
  max-height: 680px;
}





.img-brands {
  width: auto;
  height: 70px;

}

.slide-track {
  width: 100%;
  display: flex;
  justify-content: space-around;
  overflow: hidden;
}

.slider {
  margin-top: 70px;
  background-color: whitesmoke;
  padding: 10px;
  height: 90px;
}

@keyframes scroll {
  0% {transform: translateX(0);}

  100% {transform: translatex(-1000%)}
}



.crousel-slide{
  width: 100%;
}

.cards-container{
  width: 80%;

  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: transparent;

}
.brand-card{
  width: 100px;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;

  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(28deg) brightness(311%) contrast(110%);
}

.productcard{
  width: 28vw;
  height: 390px;
  padding: 3vw;
  border-radius: 30px;
  margin: auto;
  border: 1px solid rgb(37, 37, 37);
  box-shadow: white;
  margin-left: 20px;


}
.product-card-img{

  margin: 5px;
  border-radius: 20px;
  margin: auto;
  max-height: 250px;
  max-width: 250px;
  
}










@media (max-width: 800px) {
  .m, .n, .o, .p, .q, .r {
     display: none;
   }
   .cards-container{
     width: 100%;
 
   }
   .productcard{
     width: 33vw;
     height: 300px;
     padding: 3vw;
     border-radius: 30px;
     margin: auto;
     border: 1px solid rgb(37, 37, 37);
     box-shadow: white;
     word-wrap: break-word;

   
   }
   .card-title{
    font-size: 14px;
    text-align: center;
  }
  
   .crousel-slide{
     width: 180%;
   }
   
   
 .img-brands {
   width: auto;
   height: 60px;
 
 }
 
 .slider {
   margin-top: 70px;
   background-color: whitesmoke;
   padding: 10px;
   height: 70px;
 }
   }

@media (max-width: 479px) {
 .i ,.j ,.k, .l, .m, .n, .o, .p, .q, .r {
  display: none;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  
}
.productcard{
  width: 55vw;
  height: 270px;
  padding: 3vw;
  border-radius: 30px;
  margin: auto;
  border: 1px solid rgb(37, 37, 37);
  box-shadow: white;

}
.lef , .rig {
  display: none;
}
.card-title{
  font-size: 12px;
  text-align: center;

}

.img-brands {
  width: auto;
  height: 50px;

}
.slider {
  margin-top: 70px;
  background-color: whitesmoke;
  padding: 10px;
  height: 60px;
}
}










