* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --outfit-font: "Outfit", sans-serif;
  --figtree-font: "Figtree", sans-serif;
}

::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.9rem;
  background-color: var(--black);
}

::-webkit-scrollbar-thumb {
  background-color: var(--white);
  border-radius: 12px;
  border: 3px solid var(--black);
}

body,
html {
  overflow-x: hidden;
}

li {
  list-style-type: none;
}

/* Loader Css Start */

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background-color: black;
}

.preloader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -29px;
  margin-top: -23px;
}

.preloader .loader .line-scale-pulse-out>div {
  background-image: -webkit-linear-gradient(-45deg, #b87333 10%, #d2691e 100%);
  background-image: linear-gradient(-45deg, #b87333 10%, #d2691e 100%);
}

@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

.line-scale-pulse-out>div {
  background-color: #fff;
  width: 4px;
  height: 45px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}

.line-scale-pulse-out>div:nth-child(2),
.line-scale-pulse-out>div:nth-child(4) {
  -webkit-animation-delay: -0.4s !important;
  animation-delay: -0.4s !important;
}

.line-scale-pulse-out>div:nth-child(1),
.line-scale-pulse-out>div:nth-child(5) {
  -webkit-animation-delay: -0.2s !important;
  animation-delay: -0.2s !important;
}

/* Header Start  */
.header-wrapper {
  background-color: var(--black);
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}

.header .logo-wrapper a {
  display: block;
  text-decoration: none;
}

.header .logo-wrapper a img {
  width: 150px;
}


.verify-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(145deg, #b87333, #d2691e);
  border: 2px solid #d2691e;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
  animation: subtle-bounce 1.5s infinite;
}



@keyframes subtle-bounce {

  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
  }

  50% {
    transform: translateY(-4%);
    box-shadow: 0 0 7px 25px rgba(255, 255, 255, 0);
  }
}

/* Hero banner start */

.hero-banner-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


.hero-banner-slider .slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-banner-slider .slides::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  top: 0;
  left: 0;
  background-color: #00000080;
  z-index: 2;
}

.hero-banner-slider .slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-banner-slider .slide.active {
  opacity: 1;
}

.form-container {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    height: auto;
    padding: 50px 30px;
    border-radius: 12px !important;
    z-index: 10;
    border: 3px solid #d2691e !important;
    background: rgb(255 255 255 / 68%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgb(0 0 0 / 58%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(5px);
    /*border: 1px solid rgba(255, 255, 255, 0.3);*/
}

.form-container h1 {
  font-family: var(--outfit-font);
  font-size: 44px;
  margin-bottom: 85px;
  text-align: center;
}

.form-container label {
  width: 100%;
  font-size: 27px;
  font-family: var(--figtree-font);
  margin-bottom: 25px;
}

.form-container input {
  width: 100%;
  font-size: 17px;
  font-family: var(--figtree-font);
  color: black;
  background-color: var(--white);
  border: 1px solid #fd7310;
  padding: 10px;
  max-width: 450px;
  border-radius: 8px;
}

.form-container input:focus {
  box-shadow: 0 0 0 3px rgb(210 105 30 / 31%), 0 8px 20px rgb(0 0 0 / 45%);
  outline: none;
}

.form-container button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(145deg, #b87333, #d2691e);
  border: 2px solid #d2691e;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
}

.inp-wrapper {
  display: flex;
  gap: 20px;
}

.form-container p {
  color: var(--black);
  font-size: 15px;
  margin: 25px 0 0;
  font-family: var(--outfit-font);
  text-transform: capitalize;
}


.form-container p span {
  font-weight: 700;
  font-size: 18px;
  margin-right: 10px;
}

.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  /* opacity: 0.8; */
  z-index: 5;
}

.scroll-indicator p {
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--outfit-font);
}

/* Mouse icon */
.mouse {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
}

.mouse::before {
  content: '';
  width: 4px;
  height: 6px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.6s infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}



/* Product section start */


.product-sec,
.product-verify-sec {
  position: relative;
  background: #3a3c3e radial-gradient(circle, #3a3c3e 0%, #222426 100%);
  padding: 120px 0;
}

.product-sec:after,
.product-verify-sec::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: url("../images/product-bg.png") no-repeat center;
  background-size: cover;
  opacity: .6;
}

.product-sec h2 {
  color: var(--white);
  font-family: var(--outfit-font);
  font-size: 55px;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
}

.product-sec .container,
.product-verify-sec .container {
  z-index: 3;
}

.product-list {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  width: 100%;
  padding-top: 150px;
}

.product-card {
  font-family: var(--outfit-font);
  text-align: center;
  color: var(--white);
}

.product-card .img-wrapper {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.product-list .product-card img {
  display: block;
  height: 240px;
  width: 240px;
  object-fit: contain;
}

.product-card .weight {
  font-size: 28px;
  font-weight: 300;
  line-height: 3.4rem;
  text-transform: uppercase;
}

.product-card .name {
  font-size: 30px;
  font-weight: 300;
  line-height: 3.4rem;
  text-transform: uppercase;
}

/* Footer Start */


.footer {
  background-color: var(--black);
  padding: 22px 0;
}

.footer .bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .bottom-area p {
  margin-bottom: 0;
  color: var(--white);
  font-family: var(--outfit-font);
  font-size: 17px;
  font-weight: 400;
}

.footer .social {
  display: flex;
  color: var(--white);
  font-family: var(--outfit-font);
  font-size: 17px;
  font-weight: 400;
  align-items: center;
  gap: 20px;
}

.footer-social-icons-wrapper {
  display: flex;
  gap: 7px;
}

.footer-social-icons-wrapper a {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  height: 40px;
  width: 40px;
  color: var(--white);
  background-color: var(--black);
  border-radius: 100%;
  text-decoration: none;
  transition: 0.6s;
}

.footer-social-icons-wrapper a:hover {
  color: var(--black);
  background-color: var(--white);
  transition: 0.6s;
}

.product-verify-sec {
  min-height: 98vh;
}

.product-verify-sec .badge {
  background-color: var(--white);
  color: #000000;
  font-size: 35px;
  padding: 22px 20px;
  border: 3px solid #bf702e;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: auto;
  text-align: center;
  width: fit-content;
  font-family: "Quintessential", serif;
  font-weight: 600;
  text-decoration: underline;
  display: block;
  text-transform: uppercase;
  margin-bottom: 100px;
  animation: up-down linear 2s infinite;
}

@keyframes up-down {
  0% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(20px);
  }
}


.product-verify-sec p {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--outfit-font);
  font-size: 17px;
  font-weight: 400;
}

.product-verify-sec p span {
  margin-left: 20px;
}
.prod-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--white);
  height: 100%;
}