@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Ballerics";
  src: url("../fonts/Ballerics.woff2") format("woff2"),
    url("../fonts/Ballerics.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 16px;
}
body {
  position: relative;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
:root {
  --white: #ffffff;
  --black: #000;
  --theme-color: #f06060;
  --para-color: #5a5a5a;
}
::selection {
  background: var(--theme-color);
  color: var(--white);
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 0%);
}
::-webkit-scrollbar-thumb {
  background: rgb(0 0 0 / 0.5);
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(0 0 0 / 0.8);
}
p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 2rem;
  color: #222222;
}
h1,
h2 {
  font-family: "Ballerics";
}
.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
figure {
  margin: 0;
}
section {
  padding: 5rem 0;
  position: relative;
}
.swiper-button-next,
.swiper-button-prev {
  border: 1px solid #fff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  color: var(--white);
}
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
  border-radius: 20px;
}
.swiper-pagination-bullet-active {
  width: 25px;
}
.swiper-slide-shadow-left {
  display: none;
}
.swiper-slide-shadow-right {
  display: none;
}
.swiper-pagination-bullet-active {
  background: var(--theme-color);
}
/* loader */

.loader-wrap span {
  overflow: hidden;
  display: block;
}
.loader-wrap {
  position: fixed;
  z-index: 9999;
  height: 100vh;
  width: 100vw;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.loader-wrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 110vh;
  fill: var(--theme-color);
}
.loader-wrap .loader-wrap-heading h2 {
  font-size: 50px;
  z-index: 20;
  color: #fff;
  text-transform: uppercase;
}
body:not(.home) .loader-wrap {
  display: none;
}
/* loader */

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  z-index: 10000001;
  background-color: var(--theme-color);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner:before {
  content: "Click Me";
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 1rem;
  top: 8px;
  left: 2px;
  display: flex;
  border-radius: 100%;
  opacity: 0;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner.active::before {
  opacity: 1;
  top: 0;
}
.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 50px;
  height: 50px;
  background-color: var(--theme-color);
  opacity: 0.3;
}
.cursor-inner.cursor-hover.active {
  margin-left: -40px;
  margin-top: -40px;
  width: 120px;
  height: 120px;
  opacity: 1;
  background-color: #53be8470;
}
/* Cursor End */

/* btn css */

.themeBtn {
  background: #222222;
  padding: 14px 50px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.63;
  color: var(--white);
  display: inline-block;
  border: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}
.themeBtn:before,
.themeBtn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: transform 0.4s ease, background-color 0.4s ease;
}
.themeBtn:before {
  background: #f2a8a8;
  transform: scaleX(0);
  transform-origin: right center;
}
.themeBtn:after {
  background: #f06060;
  transform: scaleX(0);
  transform-origin: left center;
}
.themeBtn:hover {
  color: var(--white);
  transform: scale(1.05);
}
.themeBtn:hover:before {
  transform: scaleX(1);
}
.themeBtn:hover:after {
  transform: scaleX(1);
}
/* btn css */

.reveal {
  visibility: hidden;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.reveal img {
  width: 100%;
}
/* Begin: Header CSS */

/* Header Css */

.main-header {
  padding: 0;
  position: relative;
  z-index: 1;
}
.main-header:before {
  content: none;
  position: absolute;
  top: 0;
  width: 100%;
  background-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
  height: 100%;
  z-index: -1;
}
header {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  transition: all 0.3s ease;
}
/* Hamburger Menu */

.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 22;
  display: none;
}
.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--theme-color);
  position: absolute;
  transition: 0.6s all;
  border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
  top: 0;
}
.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}
.menu-Bar span:nth-child(3) {
  top: 16px;
}
.menu-Bar.open span {
  background: #b70404;
}
.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}
/* Menu Css */

.menuWrap .menu {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: initial;
  gap: 4rem;
}
.main_nav {
  background: var(--theme-color);
}
.menu {
  font-size: 0px;
  display: inline-block;
  vertical-align: middle;
}
.menu li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.menu li:last-child {
  padding-right: 0;
}
.menu li a {
  font-size: 1rem;
  color: var(--black);
  display: inline-block;
  font-weight: 500;
}
/* .menu > li:hover > a, */

.menu > li.active > a,
.menu > li:hover > a {
  color: var(--theme-color);
}
/* Menu Dropdown CSS */

.has-child,
.menu-item-has-children {
  position: relative;
  z-index: 1;
}
.dropdown,
.sub-menu {
  position: absolute;
  background: #1c7347;
  border-radius: 0px 0px 10px 10px;
  top: 100%;
  width: 190px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
  display: none;
}
.dropdown .dropdown,
.sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
.dropdown ul li a,
.sub-menu li a {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  padding: 10px 20px;
}
.dropdown li:not(:last-child),
.sub-menu li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.chev.rotate {
  transform: rotate(180deg);
}
.chev {
  transition: 0.5s ease;
}
/* Dropdown CSS*/
.menuWrap {
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  padding: 1rem 4rem;
  align-items: center;
}

.searchBox {
  margin-right: auto;
}

.cartBox {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.searchBox {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.searchBox a {
  color: #000;
  font-weight: 500;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.searchBox a .fa-plus {
  font-size: 1.7rem;
}

.cartBox a {
  color: #000;
  font-weight: 600;
  font-size: 1.125rem;
}
.cartBox .cart {
  font-size: 1.35rem;
  position: relative;
}

.cartBox .cart span {
  position: absolute;
  right: -14px;
  top: -3px;
  background: var(--theme-color);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  border-radius: 50px;
}
.logo {
  padding: 1rem 0;
}
/* END: Header */

/* .main-Banner {
	height: 100vh;
} */
.innerBanner {
  height: 80vh;
  padding-top: 12rem;
}
.bannertext h1 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}

.frameSec {
  background: url(../images/bg/1.png) bottom center / cover fixed no-repeat;
}

.frameBox h2 {
  font-size: 5.625rem;
  text-align: center;
  text-transform: capitalize;
}

.frameImg {
  position: relative;
  overflow: hidden;
}

.frameImg .frameOverlay {
  position: absolute;
  width: 100%;
  padding: 2rem;
  bottom: -15rem;
  transition: all 0.7s ease;
}

.frameImg .frameOverlay * {
  color: #fff;
}

.frameImg .frameOverlay h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

.frameImg .frameOverlay a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}


.frameImg:hover .frameOverlay {
  bottom: 0;
}

.frameImg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(10deg, #f06060c2, transparent);
  transition: all 0.5s ease;
  opacity: 0;
}

.frameImg:hover:before {
  opacity: 1;
}

.frameImg img {
  width: 100%;
}

h6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--theme-color);
    text-transform: capitalize;
}

h2 {
    font-size: 7.5rem;
    line-height: 81px;
    margin: 1.6rem 0;
    text-transform: capitalize;
}

.reviewSec{
	background: url(../images/bg/2.png) bottom center / cover fixed no-repeat;
}
.reviewBox h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.65;
}

.reviewBox h3 span {
    display: flex;
    font-size: 1rem;
    font-weight: 600;
}

.reviewBox p {
    font-size: 15px;
    color: #5C4B51;
}

.reviewBox h5 {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 1.125rem;
}

.swiper-pagination {
  left: 3rem !important;
  bottom: -4px !important;
}

.reviewSlider {
    padding: 2rem 0;
}

/* Footer */
footer{
  background: #F5F9FF;
  padding-bottom: 2rem;
  padding-top: 4rem;
}
.signUp form {
  background: #1cbbff;
  padding: 3rem 5rem;
  display: flex;
  justify-content: space-between;
}

.signUp form input {
  width: 100%;
  height: 4rem;
  padding: 1rem;
  border: none;
}

.signUp form button {
  width: 20%;
  border: none;
  background: #005f88;
  color: #fff;
  font-size: 1.25rem;
}

.f-logo {
  margin: 2rem 0;
  display: block;
}

footer ul {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin: 2rem 0 4rem;
}

footer ul li a {
  font-weight: 600;
  color: #000;
}

footer ul li a:hover {
  color: var(--theme-color);
}

footer p {
  text-align: center;
}

.copyRight {
  text-align: center;
}

.copyRight p {
  margin: 0;
  font-size: 1.25rem;
  color: #000;
  font-weight: 500;
}

.copyRight p span {
  padding-left: 2rem;
}

.shopSec{
  background: url(../images/bg/3.png) bottom center / cover fixed no-repeat;
}

.shopSec * {
  color: #fff;
}

.shopContnt {
  text-align: center;
  padding: 1rem 0;
}

.shopContnt h3 {
  font-weight: 600;
  font-size: 1.45rem;
  text-transform: capitalize;
}

.shopContnt h5 {
  font-size: 1.75rem;
  color: #0FEAB3;
  font-weight: 600;
}
.shopContnt p{
  margin-bottom: 0;
}

.infoBox {
  background: #F4F7FC;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
}

.infoBox i {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.infoBox h6  , .infoBox a{
  font-size: 1.75rem;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  margin-top: 10px;
  color: #000;
}

.infoBox h6 span , .infoBox a span {
  display: block;
  font-size: 16px;
  font-weight: 400;
}

.contactForm h4 {
  font-size: 60px;
  margin-top: 4rem;
}

.contactForm form input , .contactForm form textarea {
  width: 100%;
  height: 3.5rem;
  padding: 1rem;
  border: none;
  border-bottom: 2px solid #b3b3b3;
  margin: 10px 0;
}

.contactForm form textarea {
  height: 150px;
}


.shopSec img {
	height: auto;
	object-fit: cover;
	width: 100%;
	/* max-height: 450px; */
	/*
	  height: 420px;
	  object-fit: cover;
	  width: 100%;
	*/
}
.shopInner img {
  /*max-height: unset;*/
  /* height: 520px; */
}
.shopSec .shop2 img{
  max-height: fit-content !important;
  height: auto;
}

.shopSec p a{
  font-weight: 700;
}
.shopSec p a:hover{
color: var(--theme-color);
}

/* Product Page */
.productHead header {
  background: black;
  padding: 1rem 0;
  position: relative;
}
.productSec{
  padding-top: 5rem;
}
.product-thumbs .swiper-slide img {
  border: 2px solid transparent;
  object-fit: cover;
  cursor: pointer;
  width: 8.5rem;
  height: 7rem;
}

.product-thumbs .swiper-slide-active img {
  border-color: #bc4f38;
}

.product-slider .swiper-button-next:after,
.product-slider .swiper-button-prev:after {
  font-size: 20px;
  color: #000;
  font-weight: bold;
}

.product-slider img {
  width: 100%;
  height: 580px;
  object-fit: fill;
}

[class^="box-"] {
  display: none;
}

[class^="box-"].showfirst {
  display: block;
}
.tabsPack {
  margin: 2rem 0;
}
.tabsPack a {
  display: inline-block;
}
.tabsPack img {
  width: 4rem;
  height: 4rem;
}

.bulklist {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap-reverse;
}

.bulklist li {
  width: 100%;
  text-align: center;
  border: 1px solid #00000038;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer; /* Change cursor to pointer on li elements */
  flex: 0 0 22%;
  padding: 15px 0;
}

.bulklist li.selected {
  background-color: black; /* Highlight selected item */
}

.bulklist li.selected p, 
.bulklist li.selected span {
  color: #fff;
}

.bulklist li p span {
  display: block;
  color: #000;
  font-weight: 700;
}

#bulkButton {
  margin: 1rem;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.productSec h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.productSec h3 span {
  display: block;
  font-size: 1.25rem;
}

.productSec p {
  font-size: 1.125rem;
  margin: 12px 0 1.25rem;
  font-weight: 500;
}

.productSec p span {
  color: green;
  padding: 0 10px;
}

.bulklist li p {
  font-size: 14px;
  margin: 0;
}
.boxWrapper h4{
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
ul.prod_des_tabs { border-bottom: 2px solid  #d2d2d2; padding-bottom: 0; display: flex; gap: 50px; margin-bottom: 55px; }
ul.prod_des_tabs>li { }
ul.prod_des_tabs>li a { font-size: 20px; color: #afafaf; text-transform: capitalize; position: relative; border-bottom: 2px solid transparent; padding-bottom: 17px; }
ul.prod_des_tabs>li.active a,
ul.prod_des_tabs>li a:hover { border-color: #1c1f23; color: #1c1f23; }
.boxWrapper { }
.boxWrapper h5 { font-size: 28px; color: #1c1f23; font-weight: 600; margin-bottom: 25px; }
.boxWrapper ul {margin-bottom: 2rem;}
.boxWrapper ul>li { font-size: 18px; line-height: 1.94; color: #7b7d7f; }

.boxOne {
  margin-bottom: 2rem;
}

.productSec h6 {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 1.25rem 0 2rem;
  border-bottom: 1px solid #00000026;
  padding-bottom: 2rem;
}

.productSec h6 del {
  font-size: 1.25rem;
  color: #000;
}

.productSec h6 span {
  color: #000;
  font-size: 1.25rem;
}
.productSec h2 {
  font-size: 4rem;
  margin: 1rem 0;
  font-weight: 600;
}

section.main-Banner.py-0 img {
    width: 100%;
    height: 800px;
    object-fit: fill;
}