@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.product-hero.banner::before {
  background: linear-gradient(0deg, #E8E8E8 40%, rgba(255, 255, 255, 0) 100%), linear-gradient(180deg, #FFFFFF, rgba(255, 255, 255, 0));
}
.product-hero.banner .bg video {
  opacity: 0.75;
  mix-blend-mode: luminosity;
  filter: grayscale(1);
}
.product-hero.banner .bg .banner-wrapper .main_wrapper {
  --gap: 100px;
  gap: var(--gap);
  align-items: center;
  justify-content: space-between;
}
.product-hero.banner .bg .banner-wrapper .main_wrapper figcaption {
  flex: 0 1 auto;
  max-width: 500px;
}
.product-hero.banner .bg .banner-wrapper .main_wrapper figcaption h1 {
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
  color: var(--black);
}
.product-hero.banner .bg .banner-wrapper .main_wrapper figcaption p {
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-top: 15px;
  line-height: 1.3;
}
.product-hero.banner .bg .banner-wrapper .main_wrapper figure {
  flex: 0 1 auto;
  max-width: 550px;
}
.product-hero.banner .bg .banner-wrapper .main_wrapper figure img {
  border-radius: inherit;
}

.about-product-detail {
  padding-top: calc(var(--headerheight) + 70px);
  background: linear-gradient(0deg, #E8E8E8 60%, rgba(255, 255, 255, 0) 100%);
}
.about-product-detail .main_wapper {
  align-items: center;
  --gap: 120px;
  gap: var(--gap);
}
.about-product-detail .main_wapper figure {
  flex: 0 1 auto;
  max-width: 580px;
  position: relative;
}
.about-product-detail .main_wapper figure .product_slider figure {
  border-radius: 15px;
}
.about-product-detail .main_wapper figure .product_slider figure img {
  border-radius: inherit;
}
.about-product-detail .main_wapper figure .swiper-dots {
  text-align: center;
  margin-top: 10px;
  --swiper-pagination-bullet-size: 12px;
}
.about-product-detail .main_wapper figure .swiper-dots .swiper-pagination-bullet-active {
  background: var(--primary);
}
.about-product-detail .main_wapper figcaption {
  flex: 0 1 auto;
  max-width: 460px;
}
.about-product-detail .main_wapper figcaption h1 {
  font-size: 36px;
  line-height: 1.1;
}
.about-product-detail .main_wapper figcaption p {
  color: var(--black);
  margin-top: 15px;
}

.overview_sec {
  padding: 100px 0;
}
.overview_sec .heading {
  max-width: 610px;
  margin: 0 auto;
  text-align: center;
}
.overview_sec .heading h2 {
  margin-bottom: 20px;
}

.technical_sec {
  background: #F0F0F0;
}
.technical_sec .heading {
  margin-bottom: 60px;
  text-align: center;
}
.technical_sec .heading h2 {
  font-size: 36px;
}
.technical_sec .main_wrapper {
  align-items: center;
  --gap: 65px;
  gap: var(--gap);
}
.technical_sec .main_wrapper figure {
  flex: 0 1 auto;
  max-width: 45%;
  width: 100%;
}
.technical_sec .main_wrapper figcaption {
  flex: 1;
  max-width: calc(55% - var(--gap));
  width: 100%;
}
.technical_sec .main_wrapper figcaption ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px 50px;
}
.technical_sec .main_wrapper figcaption ul li h6 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
}
.technical_sec .main_wrapper figcaption ul li p {
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

.key_features .main_wrapper {
  align-items: center;
  --gap: 100px;
  gap: var(--gap);
}
.key_features .main_wrapper figure {
  height: 400px;
}
.key_features .main_wrapper figcaption {
  flex: 1;
  max-width: calc(55% - var(--gap));
  width: 100%;
}
.key_features .main_wrapper figcaption h2 {
  font-size: 36px;
}
.key_features .main_wrapper figcaption ul {
  margin-top: 20px;
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .key_features .main_wrapper figcaption ul {
    padding-left: 10px;
  }
}
.key_features .main_wrapper figcaption ul li {
  color: var(--text);
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 675px) {
  .key_features .main_wrapper figcaption ul li {
    padding-left: 20px;
  }
}
.key_features .main_wrapper figcaption ul li:not(:last-child) {
  margin-bottom: 6px;
}
.key_features .main_wrapper figcaption ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
}
.key_features .main_wrapper figure {
  flex: 0 1 auto;
  max-width: 45%;
  width: 100%;
  border-radius: 15px;
}
.key_features .main_wrapper figure video, .key_features .main_wrapper figure img {
  border-radius: inherit;
}

.contact_form {
  background: var(--lightprimary);
  padding: 100px 0;
}
.contact_form .container {
  --container: 750px;
}
.contact_form .container .heading {
  text-align: center;
  max-width: 551px;
  margin: 0 auto 50px;
}
.contact_form .container .heading h2 {
  font-size: 36px;
  line-height: 1.1;
}
.contact_form .container .form {
  --labelbefore: var(--black);
  --borderbefore: var(--black);
  --borderafter: var(--black);
  --color: var(--black);
}
.contact_form .container .form .form-grid {
  --item: 2;
}
.contact_form .container .form .btn_wrap {
  justify-content: center;
  margin-top: 50px;
}
.contact_form .container .form .btn_wrap .btn {
  --padding: 50px;
}

.more_products .heading {
  text-align: center;
  margin-bottom: 50px;
}
.more_products .heading h2 {
  font-size: 36px;
}
.more_products .main_wrapper {
  position: relative;
}
.more_products .main_wrapper .more-slider {
  max-width: 97%;
}
.more_products .main_wrapper .more-slider .product_col {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=product.css.map */