@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.product-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .product-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .product-banner {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .product-banner {
    height: 50vh;
  }
}
.product-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.89%, rgba(0, 0, 0, 0.7) 76.94%), linear-gradient(360deg, rgba(0, 0, 0, 0) 56.6%, rgba(0, 0, 0, 0.4) 84.37%);
}
.product-banner .video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  transform: scaleX(-1);
}
@media only screen and (max-width: 540px) {
  .product-banner .video-background .container {
    padding: 0;
  }
}
.product-banner .video-background .container .bg-wrapper {
  position: absolute;
  z-index: 1;
  width: 90%;
  left: 50%;
  bottom: 15%;
  transform: translate(-50%);
}
@media only screen and (max-width: 1024px) {
  .product-banner .video-background .container .bg-wrapper {
    bottom: 10%;
    width: 60%;
  }
}
@media only screen and (max-width: 768px) {
  .product-banner .video-background .container .bg-wrapper {
    width: 70%;
  }
}
@media only screen and (max-width: 540px) {
  .product-banner .video-background .container .bg-wrapper {
    bottom: 10%;
    margin-left: 0;
    width: 100%;
  }
}
.product-banner .video-background .container .bg-wrapper p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  max-width: 442px;
  margin: auto;
  color: rgba(255, 255, 255, 0.6980392157);
}
@media only screen and (max-width: 768px) {
  .product-banner .video-background .container .bg-wrapper p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 540px) {
  .product-banner .video-background .container .bg-wrapper p {
    font-size: 12px;
    max-width: 80%;
  }
}
.product-banner .video-background .container .bg-wrapper h1 {
  max-width: 480px;
  margin: 0 auto 10px;
  text-align: center;
  font-size: 68px;
  font-weight: 900;
}
@media only screen and (max-width: 1024px) {
  .product-banner .video-background .container .bg-wrapper h1 {
    max-width: 100%;
    line-height: 1.2;
    font-size: 40px;
    margin-left: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .product-banner .video-background .container .bg-wrapper h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 540px) {
  .product-banner .video-background .container .bg-wrapper h1 {
    max-width: 100%;
    font-size: 25px;
    line-height: 1.1;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
  }
}
.product-banner .video-background .container .bg-wrapper .btn2 {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
}

.tab-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  gap: 23px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
@media only screen and (max-width: 991px) {
  .tab-nav {
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
    overflow: auto;
  }
}
@media only screen and (max-width: 540px) {
  .tab-nav {
    gap: 20px;
    max-width: 310px;
  }
}
.tab-nav li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .tab-nav li {
    padding: 20px 0;
    gap: 15px;
  }
}
@media only screen and (max-width: 540px) {
  .tab-nav li {
    padding: 10px 0;
    gap: 10px;
  }
}
.tab-nav li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: 0.5s ease;
}
.tab-nav li.active::before {
  width: 100%;
}
.tab-nav li.active span {
  color: var(--primary);
}
.tab-nav li.active figure svg path {
  stroke: var(--primary);
}
.tab-nav li figure {
  width: 32px;
  height: 32px;
}
.tab-nav li figure img, .tab-nav li figure svg {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s ease;
}
.tab-nav li:nth-child(1) svg path {
  stroke: rgba(0, 0, 0, 0.3019607843);
}
.tab-nav li:nth-child(1) svg path:nth-child(2) {
  fill: rgba(0, 0, 0, 0.3019607843);
  stroke: initial;
}
.tab-nav li:nth-child(1).active svg path {
  stroke: var(--primary);
}
.tab-nav li span {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: rgba(0, 0, 0, 0.3019607843);
  transition: 0.5s ease;
  text-wrap: nowrap;
}
@media only screen and (max-width: 991px) {
  .tab-nav li span {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .tab-nav li span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 540px) {
  .tab-nav li span {
    font-size: 14px;
  }
}

.tab-nav-content {
  padding: 50px 0;
}
.tab-nav-content .tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  opacity: 0;
  transition: 1s ease;
  transform: translateY(20%);
}
@media only screen and (max-width: 768px) {
  .tab-nav-content .tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .tab-nav-content .tabs {
    grid-template-columns: 1fr;
    transform: translateY(10%);
  }
}
.tab-nav-content .tabs.active {
  opacity: 1;
  transform: translateY(0%);
}
.tab-nav-content .tabs .not-found {
  grid-column: span 3;
}
.tab-nav-content .tabs .not-found figure {
  max-width: 250px;
  margin: 0px auto 0;
}
.tab-nav-content .tabs .not-found figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
}
.tab-nav-content .tabs .not-found h5 {
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 30px;
  color: var(--text);
}
.tab-nav-content .tabs a {
  padding: 20px;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
}
.tab-nav-content .tabs a:hover img {
  scale: 1.1;
}
.tab-nav-content .tabs a figure {
  height: 248px;
  background: #F8F8F8;
  padding: 40px 0;
}
.tab-nav-content .tabs a figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s ease;
}
.tab-nav-content .tabs a figcaption {
  padding: 20px 20px 20px 0;
}
.tab-nav-content .tabs a figcaption h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: var(--black);
  margin-bottom: 5px;
}
.tab-nav-content .tabs a figcaption p {
  font-weight: 400;
  font-size: 14px;
  color: var(--text);
}
.tab-nav-content .tabs a figcaption button {
  margin-top: 20px;
}/*# sourceMappingURL=product.css.map */