@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');


@font-face {
   font-family: 'introrust';
   src: url('../font/IntroRustG-Base2Line.woff2') format('woff2'),
      url('../font/IntroRustG-Base2Line.woff') format('woff');
   font-weight: normal;
   font-style: normal;
}


* {
   box-sizing: border-box;
   font-family: 'Fredoka', sans-serif;
}

:root {
   --clr-dark: #000;
   --clr-white: #fff;
   --clr-primary: #6ea02e;
   --clr-secondary: #004c39;
}

body {
   overflow-x: hidden;
   font-size: 16px;
   line-height: 1.5;
   color: var(--clr-dark);
}

a {
   transition: 0.3s ease-in-out;
   text-decoration: none;
   color: var(--clr-primary);
}

a:hover {
   text-decoration: none;
   color: var(--clr-secondary);
}

ul {
   margin: 0;
   padding: 0;
   list-style-type: none;
}
.extr {
   position: relative;
   top: 235px;
}
img{
   max-width: 100%
}
/* Header css */

header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 99;
   will-change: transform;
   transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
   transform: translateY(0);
}

.hide-nav {
   transform: translateY(-120%) !important;
   -webkit-transform: translateY(-120%) !important;
}

.sticky-header {
   background: var(--clr-white);
   box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

header .navbar {
   padding: 30px 0;
}

.navbar-brand {
   padding: 0;
   display: flex;
   margin: 0;
}

.navbar-brand img {
   width: 250px;
}

.topNav {
   display: flex;
   align-items: center;
   gap: 30px;
}

.TopIcons {
   display: flex;
   align-items: center;
   gap: 20px;
}
.productBanner-details2 h1 {
   font-size: 45px;
   font-weight: bold;
   margin: 0;
   background: -webkit-linear-gradient(#6ea02e, #000);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-family: 'introrust';
}
.productBanner-details2 h2 {
   font-weight: 900;
   font-size: 35px;
   line-height: 38px;
   text-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
   margin-top: 10px;
}
.TopIcons li a {
   display: flex;
   width: 32px;
   height: 32px;
   align-items: center;
   justify-content: center;
   background: rgba(255, 255, 255, 0.5);
   box-shadow: 0px 1px 20px rgba(14, 14, 14, 0.15);
   border-radius: 100%;
}

.TopIcons li a img {
   width: 14px;
}

.ToggleBtn-menu {
   display: flex;
   align-items: center;
   gap: 10px;
}

.ToggleBtn-menu h6 {
   margin: 0;
   font-size: 24px;
   font-weight: 500;
   text-transform: uppercase;
}

.ToggleBtn {
   border: 0;
   background: transparent;
   display: inline-flex;
   flex-direction: column;
   align-items: flex-end;
   gap: 5px;
   min-width: 50px;
}

.ToggleBtn span {
   display: block;
   width: 30px;
   background: var(--clr-dark);
   height: 3px;
   transition: 0.3s ease-in-out;
}

.ToggleBtn span:nth-child(2) {
   width: 20px;
}
.gummie-flavor .productThumb img {
   width: 100%;
   transition: all 0.3s ease-in-out;
}
.alsoLike-container .swiper-button-next, .swiper-rtl .swiper-button-prev {
   right: 0;
   left: auto;

}
.alsoLike-container .swiper-button-prev, .swiper-rtl .swiper-button-next {
   left: 10px;
   right: auto;
}
.prod-gum {
   width: 50px!important;
}
.ToggleBtn:hover span:nth-child(2) {
   width: 30px;
}

.ToggleBtn:hover span:first-child,
.ToggleBtn:hover span:last-child {
   width: 20px;
}

.VerificationBtn {
   font-size: 20px;
}

/* side nav */

.sidenav {
   position: fixed;
   top: 0;
   right: var(--sidenav_right, -300px);
   width: 300px;
   height: 100vh;
   transition: all 0.2s ease-in-out;
   z-index: 100;
}

.sidenav-body {
   width: 100%;
   height: 100%;
   background: var(--clr-white);
   padding: 20px;
   box-shadow: 0 0 15px rgb(0 0 0 / 15%);
   display: flex;
   flex-direction: column;
   gap: 20px;
   position: relative;
   z-index: 2;
}

.sidenav-overlay {
   position: fixed;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 1;
   transition: all 0.3s ease-in-out;
   opacity: 0;
   visibility: hidden;
}

.sidenav.active {
   --sidenav_right: 0;
}

.sidenav.active>.sidenav-overlay {
   opacity: 1;
   visibility: visible;
}

.sidenav__btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   aspect-ratio: 1;
   border: 1px solid var(--clr-dark);
   cursor: pointer;
   background: transparent;
}

.sidenav__list {
   flex: 1;
   overflow: auto;
}

.sidenav__list .sidenav__link {
   padding: 10px 0;
   display: flex;
   color: var(--clr-dark);
   text-transform: uppercase;
   font-weight: 600;
   font-size: 20px;
}

.dropdownMenu {
   position: relative;
   justify-content: space-between;
}

.dropdownMenu:after {
   content: '\e5cf';
   font-family: 'Material Icons';
   font-size: 30px;
   height: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease-in-out;
}

.dropdownMenu[aria-expanded="true"]:after {
   transform: rotate(180deg);
}

.sidenav__list .sidenav__link:hover,
.sidenav__list .sidenav__link.active {
   color: var(--clr-primary);
}

.sidenav__list .TopIcons {
   justify-content: left !important;
   margin-top: 5px;
   margin-bottom: 0;
}

.sub-menus {
   display: flex;
   flex-direction: column;
   gap: 15px;
}

.sub-menus a {
   display: flex;
   align-items: center;
   gap: 15px;
   color: var(--clr-dark);
   font-size: 18px;
   font-weight: 500;
   text-transform: uppercase;
   border-radius: 5px;
}

.sub-menus a img {
   width: 50px;
   height: 50px;
   object-fit: contain;
   background: #f4f4f4;
   padding: 5px;
   border-radius: 5px;
   min-width: 50px;
}

.sub-menus a:hover {
   color: var(--clr-primary);
   background: #f4f4f4;
}


/* side nav end */

/* Header css end */

/* Form inputs */

.form-group {
   margin: 0 0 15px;
}

.form-control,
.form-select {
   border-radius: 10px;
   transition: all 0.3s ease-in-out;
   min-height: 50px;
   padding: 10px 20px;
}

.form-control:focus,
.form-select:focus {
   box-shadow: none;
   outline: none;
   border-color: var(--clr-primary);
}

.form-group>label {
   margin: 0 0 5px;
   font-size: 14px;
   font-weight: 600;
}

.form-group>label span {
   color: #ff0000;
}

.InputBox {
   display: flex;
   width: 100%;
}

.InputBox input {
   border: 1px solid var(--clr-primary);
}

/* Form inputs end */

/* Button */

.ThemeBtn {
   padding: 5px 25px;
   font-size: 16px;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 5px;
   min-height: 50px;
   line-height: normal;
   font-weight: 600;
   min-width: fit-content;
   border: 0;
   background: var(--clr-primary);
   color: var(--clr-white);
   text-transform: uppercase;
   letter-spacing: 2px;
   border-radius: 30px;
   transition: 0.3s ease-in-out;
   box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
}

.ThemeBtn img {
   width: 16px;
}

.ThemeBtn:hover {
   color: var(--clr-white);
   background: var(--clr-secondary);
   /* box-shadow: 0 0 0px 50px inset var(--clr-secondary); */
}

.icon-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   min-width: 32px;
   height: 32px;
   border-radius: 30px;
   background: var(--clr-primary);
   box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
   border: 0;
}

.icon-btn i {
   font-size: 16px;
   color: var(--clr-white);
}

.icon-btn img {
   width: 18px;
}

.IconBtn:hover i {
   color: var(--clr-white);
}

/* Button end */

.section-head {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   margin: 0 0 40px;
   text-align: center;
}

.left-head {
   align-items: flex-start;
   text-align: left;
}

.section-head h2 {
   font-size: 54px;
   font-weight: 900;
   color: var(--clr-dark);
   text-shadow: 0em 0.0375em 0.1325625em rgb(0 0 0 / 26%);
   line-height: normal;
   margin: 0 0 20px;
   text-transform: uppercase;
}

.section-head p {
   font-size: 16px;
   margin: 0 0 20px;
}

.section-head .ThemeBtn {
   margin-top: 10px;
}

.section-head .divider {
   border: 5px solid var(--clr-dark);
   width: 20px;
   min-width: 20px;
   height: 20px;
   border-radius: 100%;
   position: relative;
   margin-bottom: 20px;
}

.section-head .divider::after,
.section-head .divider::before {
   content: '';
   display: inline-block;
   width: 100px;
   height: 5px;
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translateY(-50%);
   background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
   border-radius: 20px;
}

.left-head .divider:after {
   display: none;
}

.section-head .divider::before {
   left: 20px;
   background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.text-white.section-head h2 {
   color: var(--clr-white);
}

.text-white.section-head .divider::before {
   background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

.text-white.section-head .divider::after {
   background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

.text-white.section-head .divider {
   border: 5px solid var(--clr-white);
}

.custom-space {
   padding: 80px 0;
}

.img-box {
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
}

.img-box img {
   width: 100%;
}

/* product item */

.productItem {
   text-align: center;
   padding: 30px;
   display: flex;
   flex-direction: column;
}

.productItem .prodTitle {
   font-size: 1.3rem;
   margin: 0 0 15px;
   font-weight: bold;
   text-transform: uppercase;
   color: var(--clr-dark);
   min-height: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
}

.productThumb {
   padding: 30px;
}

.productThumb img {
   width: 150px;
   transition: all 0.3s ease-in-out;
}

.productThumb img:hover {
   filter: grayscale(80%);
}

.product-shadow {
   max-width: 200px;
   margin: auto;
}

.productItem:hover .productThumb img {
   filter: grayscale(80%);
}

/* product item end */

/* swiper */

.swiper-button-next:after,
.swiper-button-prev:after {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   background-image: url(../img/right-arrow.png);
   font-size: 0px;
   width: 20px;
   height: 40px;
   background-repeat: no-repeat;
   background-size: 20px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.swiper-button-prev:after {
   background-image: url(../img/left-arrow.png);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
   opacity: 0.2;
}

/* scroll top */

#scrollTotop {
   display: flex;
   align-items: center;
   justify-content: center;
   position: fixed;
   bottom: 25px;
   right: -50px;
   cursor: pointer;
   width: 40px;
   height: 40px;
   border-radius: 100%;
   background: var(--clr-primary);
   z-index: 99;
   box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
   transition: all 0.3s ease-in-out;
   border: 0;
   outline: none;
}

#scrollTotop.showscroll {
   right: 25px;
}

.ScrollArrow {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 100%;
}

.ScrollArrow i {
   font-size: 20px;
   color: var(--clr-white);
}

/* scroll top */

/* footer */

footer {
   padding: 40px 0 0;
   background: #f5f5f5;
}

.footer-content {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 15px;
}

.copyright {
   padding: 15px 0;
   border-top: 1px solid rgb(0 0 0 / 10%);
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   font-size: 14px;
}

.copyright p {
   margin: 0;
}

.footer-social {
   display: flex;
   align-items: center;
   gap: 15px;
}


/* footer end */

/* soon */

.coming-soon-container {
   min-height: 100vh;
   display: flex;
   align-items: center;
   text-align: center;
}

.waviy {
   position: relative;
   -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
   font-size: 70px;
}

.waviy span {
   font-weight: 500;
   position: relative;
   display: inline-block;
   text-transform: uppercase;
   -webkit-animation: waviy 1s infinite;
   animation: waviy 1s infinite;
   -webkit-animation-delay: calc(0.1s * var(--i));
   animation-delay: calc(0.1s * var(--i));
   font-family: 'introrust';
}
/* .custom-space.flover-sec .productThumb img {
   width: auto;
} */
.flavor-sec-vape .productThumb img {
   width: 150px !important;
}
.flavor-sec-vape .productThumb {
   padding: 20px 25px !important;
   text-align: center;
}
.custom-space.flover-sec .productThumb{padding:0;}
.custom-space.flover-sec .product-shadow {
   margin: 0 auto 20px;
}
.custom-space.flover-sec h2 {
   text-transform: uppercase;
   font-weight: bold;
}

/* .magic-gummies-main-img{
   min-width: 500px;
} */

/* .magicgummies{
   min-width: 300px;
} */

@keyframes waviy {

   0%,
   40%,
   100% {
      transform: translateY(0)
   }

   20% {
      transform: translateY(-20px)
   }
}

