html{font-size: 62.55555%;}
:root {
  --clr-primery: #fb383b;
  --clr-secondery: #000000;
  /* --clr-gradient: linear-gradient(180deg, #FE0002 0%, #980001 100%);
  --clr-gradient-reverse: linear-gradient(93.91deg, #02D6FE -26.3%, #9D01FC 160.65%); */
}

.contentpart ::-webkit-scrollbar {
  width: 12px;
  /* width of the entire scrollbar */
}

.contentpart ::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* color of the tracking area */
}

.loader {
    position: absolute;
    top: 50%;
    transform: translate(-50%);
    left: 50%;
    width: 100%;
    text-align: center;
}

.contentpart ::-webkit-scrollbar-thumb {
  background-color: #888;
  /* color of the scroll thumb */
  border-radius: 20px;
  /* roundness of the scroll thumb */
  border: 3px solid #f1f1f1;
  /* creates padding around scroll thumb */
}

.slider-one img{width: 400px;}


.offcanvas-collapse {
  position: fixed;
  top: 0;
  right: -300px; /* Hidden off-screen to the right */
  width: 300px;
  height: 100%;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transition: right 0.3s ease-in-out;
  z-index: 1045;
}

.offcanvas-collapse.show {
  right: 0; /* Slide into view */
}

.navbar-toggler {
  margin-left: auto; /* Align the toggle button to the right */
}



body {
    margin: 0;
    padding: 0;
    font-family: "Inter", serif;
    font-size: 15px;
    line-height: 27px;
    font-weight: 400;
    background: #000;
    color: #fff;
}

h1, h2, h3{font-family: "Khand", serif; font-weight: bold;}
h2,h3{font-weight: 600;}
h1{font-size: 80px;}
h2{font-size: 50px; }

img {
  max-width: 100%;
}
.downloadvideos{
    padding: 0 3px ;
    border-radius: 4px;
    background: #000;
    color: #7a7a7a;
      border: none ;
        font-size: 20px ;
        
}


.popup_btn i {
  color: #fff;
}
.downloadvideo span {
  margin-left: 5px;
}
.downloadvideo:hover{
  background-color: rgb(43, 43, 43);
  color:#fff;
}

 button.downloadvideo {
  border: none;
  background: none;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    color: #000;
}

#videoModal .modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
}
span.gel {
  font-weight: 700;
}
.product-container button.downloadvideo {
  border: none;
  background: none;
  width: 22px;
  height: 22px;
  background: #3c3c3c;
  position: absolute;
  right: 4px;
  z-index: 1;
  display: flex;
  align-items: center;
  border-radius: 18px;
  top: 2px;
  color: #ffffff;
}
.product-container button.downloadvideo i {
  font-size: 11px;
}
#downloadMediaPopup .modal-header{border:none}

.popup_vi_child{
    object-fit: cover !important;
    height:-webkit-fill-available !important;
    width: 100% !important;
  }

  .popup_vi_child_1{
          object-fit: cover !important;
            height: 400px !important;
            width: 100%;
            margin-bottom: 10px;
          }
.downloadvideo{ 
    align-items: center;
    justify-content: center;
    text-decoration: none;
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    height: auto;
    padding: 8px 0;
  }
.carousel-item-slider {
  padding: 50px;
  text-align: center;
}
.form-control:focus,
.shortby .form-select {
  border: 1px solid #ced4da;
  box-shadow: none
}

.navbar-brand img {
  width: 40%;
}

.btn {
  color: #fff;
  background: var(--clr-primery);
  border: none;
  font-size: 14px;
  letter-spacing: normal;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.5s ease;
  padding: 10px 22px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--clr-primery);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
}

.btn:hover:before {
  transform: translate(-50%, -50%) scale(1);
}

a:hover {
  color: var(--clr-primery);
}




.check_box_col {
  display: block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.check_box_col input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: non;
  border: 1px solid #cccc;
  border-radius: 0;
}

/* On mouse-over, add a grey background color */
/* .check_box_col:hover input ~ .checkmark {
  background-color: #ccc;
} */

/* When the checkbox is checked, add a blue background */
.check_box_col input:checked~.checkmark {
  /* background-color: var(--clr-primery); */
  border: 1px solid var(--clr-primery);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check_box_col input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check_box_col .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--clr-primery);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);

}

/* --------header---------*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 11;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    background: #000;
}

.header .nav-link {
  color: #fff;
}

.header .navbar-nav .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    font-family: "Khand", serif;
    color: #fff;
}

.header .search i {
  color: var(--clr-primery);
  cursor: pointer;
}
.navbar-expand-lg .navbar-collapse{justify-content: end;}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  background: var(--clr-primery);
  width: 100%;
  border-radius: 0;
}

.nav-item.dropdown:hover .dropdown-menu li a {
  color: #fff;
  background: none;
}

.header .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.navigation {
  display: flex;
  align-items: center;
}

.sidebar {
    height: 100vh;
    background: #000000;
    border-radius: 15px;
    padding: 0;
}
.sidebar h3 {
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 500;
    border: 1px solid #e8e8e8;
    padding: 10px 12px;
}

.section-product {
  /* background: #fff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1); */
  border-radius: 8px;
  /* padding: 20px; */

}

.custom-dropdown .dropdown-button:after {
  background: url(../images/down-arrow.svg);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: 94% center;
  border-left: 1px solid #e8e8e8;
  position: absolute;
  content: "";
  width: 30px;
  height: 38px;
  right: 7px;
  top: 0;
}


/* .filter-group {
  margin-bottom: 20px;
  padding: 0 0 10px;
} */

.filter-group:last-child {
  border-bottom: none;
  border-bottom: none;
}

.contentpart.shoppage {
  padding: 130px 0 20px;
}

.filter-group label {
    display: block;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
}

.filter-group input[type="checkbox"] {
  margin-right: 6px;
}

.filter-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
}

.filter-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-group ul li {
  margin-bottom: 10px;
}

.filter-group ul li a {
  text-decoration: none;
  color: #007bff;
}

.filter-group ul li a:hover {
  text-decoration: underline;
}

.content {
  margin-left: 270px;
  padding: 20px;
  width: calc(100% - 270px);
}

.contentpart {
  padding: 130px 0 70px;
}

/* .shoppage{background: #f3f5ff;} */
.navbar-expand-lg .offcanvas {
  display: none;
}

.accordion-content {
  display: block;
}

/* Style the accordion header */
.accordion-header {
  cursor: pointer;
  font-weight: bold;
  position: relative;
}
.accordion-header:after {
  background: url(../images/down-arrow.svg);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: 94% center;
  border-left: 1px solid #e8e8e8;
  position: absolute;
  content: "";
  width: 30px;
  height: 38px;
  right: 7px;
  top: 0;
}
.header .container{
  max-width: 1335px;
}
/* Add Font Awesome icon before each header */
/* .accordion-header::before {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  color: #5a5a5a;
  height: 100%;
  width: 35px;
  line-height: 35px;
  border-left: 1px solid #e8e8e8;
  padding: 0 10px;
} */


/* When the accordion is expanded, change the arrow */
.accordion-header.active::before {
  content: "\f077";
  /* Font Awesome up arrow */
  /* transform: translateY(-50%) rotate(180deg); */
  /* Rotate the arrow */
}

/* Toggle accordion content visibility when header is clicked */
.accordion-header.active+.accordion-content {
  display: block;
}

.keep-it {
  padding-left: 5%;
}
.action-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 14px;
}

.action-btns .clear {
  background: none;
  border: none;
  color: #9300FD;
  font-size: 12px;
  font-family: 'Instrument Sans';
  font-weight: 600;
}

.product-container .single {
  height: auto;
  box-sizing: border-box;
  position: relative;
  height: 100%;
}

.product-container {
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
}

.mobile-filter h5 {
  margin: 0;
  font-size: 15px;
  font-weight: bold;
}

.fil_icon {
    width: auto;
    padding: .375rem 18px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    background-color: #000000;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: .25rem;
    display: flex;
    font-weight: 600;
    border-radius: 0;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
    height: 40px;
}

.fil_icon img {
  width: 20px;
  margin-right: 6px;
}

.filter-group-row~input {
    border: 1px solid #e8e8e8;
    width: auto;
    border-radius: 0;
    font-size: 16px;
    height: 40px;
    background: #000000;
}

.shortby {
  display: flex;
  align-items: center;
}

.shortby .form-select {
  width: 66%;
  border-radius: 8px;
}

.shortby label {
  width: 170px;
  margin-right: 10px;
  text-align: right;
  font-weight: 600;
  font-family: "Khand", serif;
  text-transform: uppercase;
}

.acd .form-select {
  width: 50%;
}

.socialIcon {
  margin-top: auto;
  display: flex;
  align-items: center;
}

.follow_us_txt {
  font-weight: 500;
  margin-right: 10px;
}

.socialIcon i {
  margin: 0 6px 0 0;
  font-size: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #976BE8;
  background: linear-gradient(93.91deg, #9D01FC -26.3%, #02D6FE 160.65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s;
}

.socialIcon i:hover {
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #976BE8;
  background: linear-gradient(93.91deg, #02D6FE -26.3%, #9D01FC 160.65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.image-section img {
  width: 100%;
}

#mainproducts .col-md-4 {
  padding: 0 7px 0 !important;
  margin: 0 0px 14px !important;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #000000;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

.card-row .card {
  min-height: 100%;
  align-items: center;
  border: none;
  border-radius: 0;
  transition: all 0.5s;
  cursor: pointer;
  border: 1px solid #e8e8e8;
}

.card-row .single {
  height: 100%;
  width: 100%;
}

.nav-item.dropdown:hover .dropdown-menu li:hover .dropdown-menu {
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
}

.nav-item.dropdown:hover .dropdown-menu li ul {
  display: none;
}

/* .product-container .image {
  border-bottom:1px solid #e8e8e8;
} */

.product-container .image img {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
    border-radius: 15px;
    padding: 0;
    height: 100%;
    position: relative;
}

.product-details{
	border: 1px solid red;
}

.contentpart form#filter_form {
  height: 100%;
}

.product-container .title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 24px;
    font-family: "Khand", serif;
    text-transform: uppercase;
}

.discripition {
  color: #383838;
  margin-bottom: 0;
  font-size: 16px;
  min-height: auto;
}

.star i {
  color: gold;
  margin-right: 3px;
}
.product-container .title p {
  font-weight: 500;
  font-family: 'Inter';
  margin:0px;
}
span.review {
  font-weight: 600;
  color: #ffff;
}

p.price {
  font-weight: bold;
  color: #fff;
}
.section-second img {
  width: 100%;
}
.slide {
  height: 500px;
  background:linear-gradient(356.26deg, #1C0304 -143.83%, #221515 92.16%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 45px;
}
.product-slider img {
  max-width: 100%;
}
.product-slider {
  padding: 70px 0;
}
.video-wrapper {
  height:100vh;
  padding-bottom: 58%;
  overflow: hidden;
  width: 100%;
  position: absolute;
  top: 36px;
}

.category {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 0;
    font-weight: 500;
}

.stamped-product-reviews-badge {
  display: block;
  margin: 7px 0 4px;
  color: #fff;
  font-family: FoundersGroteskRegular;
  font-size: 18px;
  line-height: 1;
}

.stamped-badge {
  min-height: auto;
  min-width: auto;
  display: block;
  cursor: pointer;
}

.stamped-badge-starrating {
  color: gold;
  margin: 0 3px 0 0 !important;
  vertical-align: middle;
}

.stamped-fa {
  font-size: 100%;
}

.stamped-badge-caption[data-reviews][data-label][data-version="2"]>span {
  display: inline !important;
}

.offcanvas-body ul li ul {
  display: none;
}

.checked {
  color: orange;
}

.category-name {
    text-transform: capitalize;
    letter-spacing: 1.25px;
    font-size: 16px;
    margin-bottom: 7px;
    color: #ffffff;
    font-weight: bold;
}

.product-info h1 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 5px 0;
}


.product-info .price {
  font-size: 20px;
  letter-spacing: 0.33px;
  line-height: 0.7;
  margin-top: 30px;
  margin-bottom: 7px;
}

.select-favor .btn {
  margin: 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  height: 66px;
}


.header .navbar-nav .nav-link:hover {
  color: var(--clr-primery);
}

.main-gallery {
  width: 100%;
  margin: 0 auto;
}

.thumbnail-gallery .slick-slide {
  width: 80px !important;
  height: 80px !important;
  margin: 0 auto;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  padding: 0 3px;
}

.thumbnail-gallery .slick-slide:hover {
  opacity: 1;
}

.thumbnail-gallery .slick-slide img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover;
  /* Ensures the image fits properly */
}

button#decrease,
button#increase {
  background: #727272;
  border-radius: 0;
}

.thumbvideo {
  position: relative;
}

.videsvg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.thumbnail-gallery .slick-slide .videsvg img {
  width: 15px !important;
  height: 15px !important;
}



/* .thumbnail-gallery .slick-center img {
  opacity: 1;
  transform: scale(1.1);
} */

.thumbnail-gallery img:hover {
  opacity: 1;
}

.main-gallery img {
  width: 100%;
  height: auto;
}

.select-favor .btn:hover {
  border: 2px solid #ffff;
  background-color: transparent;
  color: white;
}

.product-info p {
  font-size: 14px;
}

.grid-section {
  margin-left: -23px;
}

.add-to-cart {
  /* flex: 1; */
  background-color: var(--clr-primery);
  border: 2px solid transparent;
  color: #fff;
  border-radius: 25px;
  font-size: 19px;
  letter-spacing: 1.69px;
  text-transform: uppercase;
  padding: 6px 34px;
  cursor: pointer;
  transition: 0.3s;
  /* height: 51%; */
}

.input-section {
  width: 60px;
}

.quantity-area {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 23px;
}

.product-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  /* align-items: center; */
  margin: 12px 19%;
  gap: 26px;
}

.home-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.home-section:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 30%);
  top: 0;
  left: 0;
}

.main-head {
  font-size:clamp(6rem, 10vw, 18.5rem);
  font-weight: 700;
  line-height:clamp(5rem, 10vw, 16.5rem);
  letter-spacing: 0.11em;
  text-align: left;
  color: #FFFFFF;
  font-family: "Khand", serif;
  text-transform: uppercase;

}

.heading-hero {
  font-size:clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 39.57px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--clr-primery);

}

.second-head {
    font-weight: 400;
    line-height: 48.8px;
    text-align: left;
    color: #ffffff;
    font-family: "Khand", serif;
}

.traditional {
  font-weight: 600;
  line-height: 48.8px;
  text-transform: uppercase;
}
.section-second p {
  font-weight: 400;
  line-height: 27px;
  margin-top: 20px;
  margin-bottom: 30px;

}
.product-slider p {
  margin-bottom: 30px;
}

.product-slider .row{display: flex !important;}



.section-second button {
  margin-top: 10px;
}

/* .section-second .container {
  max-width: 1200px;
} */

.section-second {
  padding: 100px 0;
}



.carousel-control-next,
.carousel-control-prev {
  width: 40%;
}

.heading-carousel {
  color: #000;
  text-transform: uppercase;
  margin-bottom:16px;
}

.carousel-item .container {
  max-width: 1000px;
}

.carousel-item p {
  font-weight: 400;
  color: #fff;

}

.text-hero {
      display: flex;
      align-items: center;
      position: absolute;
      left: 50%;
      flex-direction: column;
      transform: translate(-50%);
      z-index: 9;
      bottom: 6rem;
}

.carousel-sec img {
  width: 233px;
  height: 439px;

}

.about {
  padding: 150px;
}

.images img {
  height: 102%;
}

.img-1 {
  background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQf0MK91kybQXB19OWuT16Zgs5dGKGKoJErEg&s);
  width: 50%;
  height: 550px;
  background-repeat: no-repeat;
  text-align: center;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
/* .about-section{
  background: uz;
} */
.last-section h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48.8px;
  text-align: center;
  color: white;
}

.about-section h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48.8px;
  margin: 0 0 12px;
  color: #000;

}

.img-2 {
  background: linear-gradient(rgb(247 107 132 / 90%), rgb(55 31 37 / 90%)), /* Gradient color */ url(https://media.istockphoto.com/id/1396236970/photo/burning-cigarette.jpg?s=612x612&w=0&k=20&c=ZoiP2PbvJe8qQWskHiMGwFWhm1Ngpp_ov-qS8lw1sIk=);
  width: 50%;
  height: 550px;
  background-repeat: no-repeat;
  text-align: center;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.footer-section a {
  text-decoration: none;
  font-size: 14px;
  color: #888888;
}

.contact-section {
  background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTzqwTEmZxe-M43WtVJITo6dkE54L1ty0fH5A&s');
  height: 70vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.box-1 {
  background-color: #ef5350;
  height: 600px;
  width: 34%;
}

.box-2 {
  background-color: #ff7043;
  height: 600px;
  width: 34%;
}

.box-3 {
  background-color: #212121;
  height: 600px;
  width: 34%;
}

.contact-head {

  text-align: center;
  padding-top: 250px;
  font-size: 8rem;
  text-transform: uppercase;
  font-weight: 600;
}

.box-1,
.box-2,
.box-3 {

  padding-top: 278px;
}

.action-btns img {
  width: 20px;
  margin: 0 9px 0 0;
  padding: 0;
}

.filter-group-row~input:focus {
  outline: none;
}

.action-btns .btn {
  padding: 8px 13px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  font-family: 'Instrument Sans';
  outline: none;
  box-shadow: none;
  border: 1px solid #ced4da;
}

.card-row .card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 15px 0px;
}

/* .shop_banner {
  margin-top: 100px;
  text-align: center;
  height: 150px;
  background-image: url(../images/carousel-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 45px;
}
.shop_banner h1{
  color: #fff;
} */
.footer-section {
  background: #160000;
  padding: 50px 0px 20px;
}


.ft-logo {
  width: 195px;
  margin-bottom: 20px;
}
.address h3 {
  font-size: 15px;
  font-weight: 600;
}

.addr {
  font-size: 14px;
  margin-bottom: 10px;
  color: #888888;
}

.socialicon ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}

.socialicon ul li {
  margin: 0px 12px 0 0;
}

.socialIcon ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.address {
  margin-bottom: 27px;
}

.socialicon ul li i {
  font-size: 17px;
  border: 1px solid;
  padding: 7px;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.footer-section h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.address i {
  padding: 0 6px 0 0;
}

.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links ul li a {
  color: #888888;
  padding: 5px 0;
  display: block;
  font-size: 15px;
}

.verify-inputbox {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 0 20px;
}

.verify-inputbox input {
  border-radius: 8px;
  min-height: 40px;
  border: 0;
  outline: 0;
  background: #fff;
  font-size: 14px;
  color: #000;
}

.footer-info .verify-inputbox button {
  width: fit-content;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 600;
}

.verify-inputbox button {
  position: absolute;
  right: 0;
  border-radius: 8px;
}

.subscribe {
  padding-bottom: 20px;
  color: #888888;
}

.bt-footer {
  padding-top: 30px;
  border-top: 1px solid #252525;
  margin-top: 30px;
}

.bt-footer p {
  font-size: 14px;
  color: #888888;
}

.links ul li a:hover {
  color: var(--clr-primery);
}

.sub-page {
  padding: 160px 0 80px;
}

.about-slider {
  max-width: 800px;
  margin: 0 auto;
}

.product-container:hover img {
  transform: scale(1.1);
}

.product-container .image {
  overflow: hidden;
  height: 320px;
}

.about-slider p {
  margin-bottom: 34px;
}
.load-page img {
  width: 14%;
  margin: 0 auto 16px;
}
.load-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 29;
    text-align: center;
    display: flex;
    align-items: center;
}
.load-page p {
  font-family: 'Khand';
  font-weight: 500;
  font-size: 20px;
}
/* Left Arrow */
.about-slider .slick-prev, .home-slider .slick-prev {
  left: 0;
  /* Adjust position as needed */
  width: 30px;
  height: 30px;
  background-image: url('../images/arrow-left.svg') !important;
  /* Add the left arrow image */
  background-size: cover !important;
  /* Ensure the image fits */
  background-repeat: no-repeat !important;
  background-position: center !important;
  z-index: 10;
  opacity: 0.7;
  border: none;
  /* Remove any default border */
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-slider .slick-prev:hover, .home-slider .slick-prev:hover {
  opacity: 1;
}
.home-slider .slick-prev{
  width: 40px;
  height: 40px;
  background: #ffffff94 url(../images/arrow-left.svg) !important;
  opacity: 1;
  background-size: 28% !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  border-radius: 50px;
  left:30px
}
.home-slider .slick-next{
  right: 0;
  width: 40px !important;
  height: 40px !important;
  background: #ffffff94 url(../images/arrow-right.svg) !important;
  opacity: 1;
  background-size: 28% !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  border-radius: 50px;
  right:30px
}
/* Right Arrow */
.about-slider .slick-next {
  right: 0;
  /* Adjust position as needed */
  width: 30px;
  height: 30px;
  background-image: url('../images/arrow-right.svg') !important;
  /* Add the right arrow image */
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  z-index: 10;
  opacity: 0.7;
  border: none;
  /* Remove any default border */
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-slider .slick-next:hover, .home-slider .slick-next:hover {
  opacity: 1;
}

/* Remove the default Slick arrows */
 .slick-prev:before,
.slick-next:before {
  content: ''!important;
  /* Hide default arrow content */
}

.about-slider .slick-prev:hover,
.about-slider .slick-prev:focus,
.about-slider .slick-next:hover,
.about-slider .slick-next:focus {
  color: inherit;
  outline: none;
  background: none;
}

.gallery-images img {
  height: 100%;
}

.gallery-images {
  padding: 100px 0;
}

.gallery-images img {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-images img:hover img {
  transform: scale(1.2);
}

.rating ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  display: flex;
  gap: 2px;
}

.rating {
  display: flex;
  gap: 4px;
}

.rating ul li i {
  color: gold;
}




.custom-dropdown {
  position: relative;
  width: 190px;
}

.custom-dropdown .dropdown-button {
    width: 100%;
    padding: 0 0 0 10px;
    background-color: #000000;
    border-radius: 0;
    text-align: left;
    cursor: pointer;
    background-size: 17px;
    border: 1px solid #e8e8e8;
    position: relative;
    height: 40px;
    font-weight: 400;
    font-size: 14px;
    color: #ffff;
}

.custom-dropdown .dropdown-list {
    position: absolute;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #000000;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 207px;
    overflow-y: auto;
    z-index: 1000;
}

.about-section.sub-page {
  background: #f3f5ff;
}

.custom-dropdown .dropdown-list li {
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
}

.custom-dropdown .dropdown-list li:hover {
    background-color: #343434;
}

.custom-dropdown .hidden {
  display: none;
}


.zoom-effect {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.zoom-effect:hover img {
  transform: scale(1.2);
}


.image-section video {
  width: 100%;
  height: 450px;
  background: #000;
  object-fit: cover;
}

.thumbnail-gallery video {
  background: #000;
  height: 80px !important;
  width: 80px !important;
  object-fit: cover;
}

.inner-container {
  width: 75%;
  margin: 0 auto;
}

.main-gallery .slick-slide img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit:cover;
}

.sidebar .accordion-content {
  max-height: 176px;
  overflow-y: scroll;
  margin-bottom: 20px;
}

/*.sidebar .filter-group:first-child .accordion-content {
  overflow: visible;
}*/

.mobile-filter {
  display: none;
}

.card.product-not-found img {
  width:130px;
  margin: 0 auto;
  text-align: center;
}
.card.product-not-found h5 {
  text-align: center;
  margin: 10px 0;
  font-size: 16px;
}
.card-row .card.product-not-found{
  padding: 100px 0;
}

.card-row .card.product-not-found:hover{box-shadow: none;}
.card.product-not-found .product-container:hover img{transform: scale(1);}

.sticky-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}
.comming-soon {
  display: flex;
  align-items: center;
  height: 100vh;
  justify-content: center;
  text-align: center;
}
.comming-soon h2 {
  color: var(--clr-primery);
  font-size: 70px;
  font-weight: 800;
}
.image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-slider p {
  font-size: 26px;
  line-height: 40px;
  font-weight: 400;
}

.home-slider .btn {
  text-transform: uppercase;
  font-weight: 400;
}
.navbar-brand{width:50%}

#img-1{
  width: 60%;
  position: relative;
  top: 0;
  left: 20px;
}

#img-2{
  width: 50%;
  position: relative;
  top: 0;
  left: 55px;
}

.slider-one .btn{
  padding: 10px 15px;
}

.validation-error{
  font-weight: 600;
  color: red;
}
.video-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fe0103;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.thumbnail-section{position: relative; overflow: hidden;}
.thumbnail-section:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  background: #00000045;
  width: 100%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #222222;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: url("../images/close_btn.svg") center / 1em auto no-repeat !important;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
}