@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.comman-banner .bg-content {
  max-width: 630px !important;
}

.secA {
  padding: 70px 0;
  background: var(--gradient-b);
}
.secA .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 5rem;
}
@media only screen and (max-width: 768px) {
  .secA .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.secA .media {
  overflow: hidden;
  position: relative;
}
.secA .media img {
  width: 100%;
}
.secA .media .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
}
.secA .media .play-btn::after {
  border-left-color: var(--primary);
  border-right-color: var(--primary);
}
.secA .heading h3 {
  width: 100%;
  max-width: 424px;
}
.secA .heading p {
  margin: 12px 0 10px;
}
.secA .heading .btn-group {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.secB {
  padding: 70px 0;
}
.secB .heading {
  text-align: center;
  margin-bottom: 3rem;
}
.secB .swiper-wrap {
  position: relative;
  margin-top: 4rem;
}
@media only screen and (max-width: 991px) {
  .secB .swiper-wrap {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 540px) {
  .secB .swiper-wrap {
    margin-top: 2rem;
  }
}
.secB .swiper-wrap .swiper-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 745px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media only screen and (max-width: 675px) {
  .secB .swiper-wrap .swiper-group {
    display: none;
  }
}
.secB .swiper-wrap .swiper-group button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  background: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.secB .swiper-wrap .swiper-group button.swiper-button-lock, .secB .swiper-wrap .swiper-group button.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .secB .swiper-wrap .swiper-group button {
    width: 35px;
    height: 35px;
  }
}
.secB .swiper-wrap .swiper-group button svg {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 991px) {
  .secB .swiper-wrap .swiper-group button svg {
    width: 16px;
    height: 16px;
  }
}
.secB .swiper-wrap .swiper-group button svg path {
  fill: var(--primary);
}
.secB .swiper-wrap .swiper-group button:hover {
  opacity: 0.8;
}
.secB .swiper-wrap .swiper-group .swiperB-next {
  transform: rotate(270deg);
}
.secB .swiper-wrap .swiper-group .swiperB-prev {
  transform: rotate(90deg);
}
.secB .swiper-wrap .swiperB {
  width: 100%;
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide {
  height: 370px;
  width: 555px;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide {
    height: 237px;
    width: auto;
  }
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card {
  height: 100%;
  width: 100%;
  position: relative;
  position: relative;
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.89%, rgba(0, 0, 0, 0.6) 78.11%);
  z-index: 1;
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card figure {
  position: relative;
  height: 100%;
  width: 100%;
  filter: blur(5px);
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card figure figcaption {
  opacity: 0;
  z-index: 2;
  position: absolute;
  color: var(--white);
  font-size: 20px;
  line-height: 25px;
  font-family: "Louize trial";
  max-width: 80%;
  bottom: 35px;
  left: 50px;
  right: 50px;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card figure figcaption {
    left: 16px;
    right: 16px;
    bottom: 20px;
    font-size: 18px;
    line-height: 26px;
    align-items: center;
    gap: 20px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card figure figcaption {
    font-size: 16px;
    line-height: 22px;
  }
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card figure figcaption .play-btn {
  --btnsize: 55px;
  --border: 1px;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card figure figcaption .play-btn {
    --btnsize: 45px;
  }
}
@media only screen and (max-width: 375px) {
  .secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card figure figcaption .play-btn {
    --btnsize: 38px;
  }
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide .card figure figcaption p {
  color: var(--white);
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide.swiper-slide-active {
  filter: blur(0);
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide.swiper-slide-active figure {
  filter: none;
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide.swiper-slide-active figure figcaption {
  opacity: 1;
}
.secB .swiper-wrap .swiperB .swiper-wrapper .swiper-slide.swiper-slide-active:hover .card figure img {
  transform: scale(1.1);
}

.secC {
  position: relative;
  width: 100%;
  height: 750px;
}
.secC video, .secC img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secC .content-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.secC .content-wrapper .content .heading {
  width: 100%;
  max-width: 300px;
}
.secC .content-wrapper .content .heading h3 {
  color: var(--white);
}
.secC .content-wrapper .content .swiper-wrap {
  position: relative;
  margin-top: 8rem;
  padding: 0 20px;
}
.secC .content-wrapper .content .swiper-wrap .swiper {
  padding: 20px 0;
}
.secC .content-wrapper .content .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 1.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
  height: 100%;
}
.secC .content-wrapper .content .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .icon {
  margin-bottom: 1rem;
}
.secC .content-wrapper .content .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .icon img {
  position: static;
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.secC .content-wrapper .content .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card h5 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.secC .content-wrapper .content .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card p {
  font-size: 14px;
  color: var(--white);
  margin: 0;
  height: 0;
  transform: translateY(10px);
  opacity: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.secC .content-wrapper .content .swiper-wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .card {
  background: var(--white);
  border-radius: 10px;
  transform: scale(1.05);
}
.secC .content-wrapper .content .swiper-wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .card h5 {
  color: var(--black);
}
.secC .content-wrapper .content .swiper-wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .card p {
  color: var(--text);
  height: auto;
  transform: translateY(0);
  opacity: 1;
  overflow: visible;
}
.secC .content-wrapper .content .swiper-wrap .swiper-group {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media only screen and (max-width: 675px) {
  .secC .content-wrapper .content .swiper-wrap .swiper-group {
    display: none;
  }
}
.secC .content-wrapper .content .swiper-wrap .swiper-group button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  background: var(--white);
}
.secC .content-wrapper .content .swiper-wrap .swiper-group button.swiper-button-lock, .secC .content-wrapper .content .swiper-wrap .swiper-group button.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .secC .content-wrapper .content .swiper-wrap .swiper-group button {
    width: 35px;
    height: 35px;
  }
}
.secC .content-wrapper .content .swiper-wrap .swiper-group button svg {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 991px) {
  .secC .content-wrapper .content .swiper-wrap .swiper-group button svg {
    width: 16px;
    height: 16px;
  }
}
.secC .content-wrapper .content .swiper-wrap .swiper-group button svg path {
  fill: var(--primary);
}
.secC .content-wrapper .content .swiper-wrap .swiper-group button:hover {
  opacity: 0.8;
}
.secC .content-wrapper .content .swiper-wrap .swiper-group .fourSilder2-next {
  transform: rotate(270deg);
}
.secC .content-wrapper .content .swiper-wrap .swiper-group .fourSilder2-prev {
  transform: rotate(90deg);
}/*# sourceMappingURL=manufacturing.css.map */