* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* setting produk display  */
:root {
  --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
  --item1-filter: blur(30px);
  --item1-zIndex: 11;
  --item1-opacity: 0;

  --item2-transform: translateX(0);
  --item2-filter: blur(0px);
  --item2-zIndex: 10;
  --item2-opacity: 1;

  --item3-transform: translate(50%, 10%) scale(0.8);
  --item3-filter: blur(10px);
  --item3-zIndex: 9;
  --item3-opacity: 1;

  --item4-transform: translate(90%, 20%) scale(0.5);
  --item4-filter: blur(30px);
  --item4-zIndex: 8;
  --item4-opacity: 1;

  --item5-transform: translate(120%, 30%) scale(0.3);
  --item5-filter: blur(40px);
  --item5-zIndex: 7;
  --item5-opacity: 0;
}

body {
  font-family: "Poppins", sans-serif;
  /* min-height: 200vh; */
  background-color: #f1f1f1;
}

a {
  text-decoration: none;
  color: #ffffff;
}

.language {
  display: flex;
  background: #eee;
  background-color: #dedede;
  justify-content: end;
  padding-right: 15px;
  gap: 8px;
  height: 20px;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  position: fixed;
}

.language img {
  width: 20px;
}

/* navbar section css start */
.navbar {
  display: flex;
  background: #fff;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  height: 110px;
  padding: 1.3rem 5%;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navbar .logo {
  padding-top: 0;
  top: 0;
  width: 200px;
}

.navbar .nabar-nav ul li {
  position: relative;
  list-style: none;
  display: inline-block;
}

.navbar .nabar-nav ul li a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 0.4rem;
}

.navbar .nabar-nav ul li a:hover {
  color: #25aae1;
}

.navbar .nabar-nav ul li::after {
  content: "";
  display: block;
  padding-bottom: 0.1rem;
  border-bottom: 0.1rem solid #25aae1;
  transform: scaleX(0);
  transition: 0.2s linear;
}

.navbar .nabar-nav ul li:hover::after {
  transform: scaleX(0.7);
}

.navbar .nabar-nav .menu a.nav-active::before {
  content: "";
  color: #25aae1;
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid #25aae1;
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 0.2rem;
}

.navbar .nabar-nav ul li a.nav-active {
  color: #25aae1;
}

.navbar .nabar-extra button,
a,
label {
  margin: 0 0.5rem;
}

.navbar .nabar-extra a,
label:hover {
  color: #25aae1;
}

.navbar .nabar-extra a {
  color: #6d6e71;
  margin: 0 0.5rem;
}

.navbar .nabar-extra a:hover {
  color: #25aae1;
}

.navbar .nabar-extra button:hover {
  color: #fff;
  transform: scale(1.05);
}

.navbar .nabar-extra button {
  color: #ffffff;
  background-color: #eb9a3c;
  text-align: center;
  padding: 13px;
  font-size: 13px;
  margin: 0.4rem;
  display: inline-block;
  cursor: pointer;
  z-index: 9999;
  border: none;
}

#hamberger-menu {
  display: none;
}

/* search css */
.navbar .search-form {
  position: absolute;
  top: 85%;
  right: 7%;
  background: #ffffff;
  height: 5rem;
  width: 50rem;
  display: flex;
  align-items: center;
  transform: scaleY(0);
  transform-origin: 0;
  z-index: 9999;
}

.navbar .search-form.active {
  transform: scaleY(1);
}

.navbar .search-form input {
  height: 100%;
  width: 100%;
  font-size: 1.4rem;
  color: #000000;
  padding: 1rem;
  text-transform: none;
  left: 50%;
  z-index: 9999;
}

.navbar .search-form label {
  cursor: pointer;
  font-size: 2.2rem;
  margin-right: 1.5rem;
  color: #000000;
}

.navbar .search-form label:hover {
  color: #25aae1;
}

/* navbar section css start */
/* carausel */
.carousel {
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.carousel .list .item {
  position: absolute;
  inset: 0 0 0 0;
}

.carousel .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel .list .item .content {
  position: absolute;
  top: 30%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translate(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #ffffff;
  text-shadow: 1px 5px 10px #0004;
}

.carousel .list .item .content .wrapper {
  width: 300px;
  height: 270px;
  padding: 15px;
  background: rgba(19, 18, 18, 0.2);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.carousel .list .item .content .author {
  font-weight: bold;
  letter-spacing: 10px;
  font-size: 1em;
}

.carousel .list .item .content .title,
.carousel .list .item .content .topic {
  font-weight: bold;
  font-size: 5em;
  line-height: 1.3em;
}

.carousel .list .item .content .topic {
  font-size: 2.2em;
  color: #eb9a3c;
}

.carousel .list .item .content .button {
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 20px;
}

.carousel .list .item .content button {
  border: none;
  background-color: #eb9a3c;
  letter-spacing: 3px;
  font-weight: 500;
}

.carousel .list .item .content button:hover {
  color: #fff;
  transform: scale(1.05);
}

.carousel .list .item .content button:nth-child(2) {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #eb9a3c;
}

.carousel .list .item .content button:nth-child(2):before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: #eb9a3c;
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}

.carousel .list .item .content button:nth-child(2):hover:before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

.carousel .list .item .content button:nth-child(2):after {
  background-color: #ffffff;
}

.carousel .list .item .content button:nth-child(2) span {
  z-index: 1;
  position: relative;
}

/* thumbnail */

.thumbnail {
  position: absolute;
  bottom: 30px;
  left: 100%;
  /* 85% muncul 1 kotak */
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 10px;
}

.thumbnail .item {
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
}

.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.thumbnail .item .content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: #ffffff;
}

.thumbnail .item .content .title {
  font-weight: bold;
}

/* arrows */
.arrows {
  position: absolute;
  top: 80%;
  right: 52%;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee4;
  border: none;
  color: #ffffff;
  font-family: monospace;
  font-weight: bold;
  font-size: large;
  transition: 0.5s;
  z-index: 100;
}

.arrows button:hover {
  background-color: #eee;
  color: #555;
}

.carousel .list .item:nth-child(1) {
  z-index: 1;
}

.carousel .list .item:nth-child(1) .author,
.carousel .list .item:nth-child(1) .title,
.carousel .list .item:nth-child(1) .topic,
.carousel .list .item:nth-child(1) .des,
.carousel .list .item:nth-child(1) .button {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}

@keyframes showContent {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.carousel .list .item:nth-child(1) .title {
  animation-delay: 1.2s;
}

.carousel .list .item:nth-child(1) .topic {
  animation-delay: 1.4s;
}

.carousel .list .item:nth-child(1) .des {
  animation-delay: 1.6s;
}

.carousel .list .item:nth-child(1) .button {
  animation-delay: 1.8s;
}

/* effect next click */
.carousel .list .item:nth-child(1) img {
  width: 150px;
  height: 220px;
  position: absolute;
  left: 50%;
  bottom: 50px;
  border-radius: 20px;
  animation: showImage 0.5s linear 1 forwards;
}

@keyframes showImage {
  to {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
  }
}

.carousel.next .thumbnail .item:nth-child(1) {
  width: 0;
  overflow: hidden;
  animation: showThumbnail 0.5s linear 1 forwards;
}

@keyframes showThumbnail {
  to {
    width: 150px;
  }
}

.carousel.next .thumbnail {
  transform: translateX(150px);
  animation: transformThumbnail 0.5s linear 1 forwards;
}

@keyframes transformThumbnail {
  to {
    transform: translateX(0);
  }
}

/* effect prev click */
.carousel.prev .list .item:nth-child(2) {
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
  position: absolute;
  bottom: 0;
  left: 0;
  animation: outImage 0.5s linear 1 forwards;
}

@keyframes outImage {
  to {
    width: 150px;
    height: 220px;
    border-radius: 20px;
    left: 50%;
    bottom: 50px;
  }
}

.carousel.prev .thumbnail .item:nth-child(1) {
  width: 0;
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail 0.5s linear 1 forwards;
}

.carousel.prev .list .item:nth-child(2) .author,
.carousel.prev .list .item:nth-child(2) .title,
.carousel.prev .list .item:nth-child(2) .topic,
.carousel.prev .list .item:nth-child(2) .des,
.carousel.prev .list .item:nth-child(2) .button {
  animation: contentOut 1.5s linear 1 forwards;
}

@keyframes contentOut {
  to {
    transform: translateY(-150px);
    filter: blur(20px);
    opacity: 0;
  }
}

.time {
  width: 0%;
  height: 5px;
  background-color: #eb9a3c;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
}

.carousel.next .time,
.carousel.prev .time {
  width: 100%;
  animation: timeRunning 2s linear 1 forwards;
}

@keyframes timeRunning {
  to {
    width: 0;
  }
}

/* css about us section  start*/
/* card for product, card-header for img header all menu */

.card {
  position: relative;
}

.card-header {
  position: relative;
}

.card img {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  object-fit: cover;
  /* background: linear-gradient(to right, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0)); */
}

.card-header img {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
  mask-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
}

.card .card-text h2 {
  position: absolute;
  color: #fff;
  font-size: 2rem;
  top: 65%;
  left: 43%;
}

.card-header .card-text h2 {
  position: absolute;
  color: #fff;
  font-size: 2rem;
  /* margin-right: -50%; */
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card .card-text span {
  color: #eb9a3c;
}

.about-us {
  min-height: 120vh;
  padding-top: 170px;
  display: flex;
  justify-content: center;
  background-image: url(../img/pic3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0));
}

.about-us .mask-container {
  position: absolute;
  inset: 0;
  -webkit-mask-image: url("../img/pic3-svg.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
}

.about-us .konten {
  position: fixed;
  text-align: center;
  width: 100%;
  top: 170px;
  /* padding: 160px 32%; */
}

.about-us .konten h2 {
  font-size: 24px;
  color: #fff;
}

.about-us .konten h1 {
  font-size: 32px;
  color: #fff;
  margin-top: 20px;
}

.box1 {
  position: relative;
  top: -100px;
  display: flex;
  justify-content: center;
}

.text-section {
  padding: 20px 25px;
  opacity: 0;
  width: 700px;
  height: auto;
  background-color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transform: translateY(50px);
  animation: fadeIn 1s forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.text-section p {
  font-size: 16px;
}

.bagian {
  padding: 1rem 1% 3rem;
  display: flex;
  justify-content: space-evenly;
}

.container-wrapper {
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container-wrapper .vis-image {
  position: relative;
  width: 500px;
  height: 280px;
  background: url(../img/bg5.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  transform: translateX(50px);
  animation: slideIn 1s forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.container-wrapper .vis-content {
  position: relative;
  width: 500px;
  height: 210px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  border-top-right-radius: 0px;
  transform: translateX(50px);
  animation: slideIn 1s forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.container-wrapper .vision {
  position: absolute;
  height: 59px;
  width: 50%;
  background: #fff;
  top: -28%;
  right: 0;
  border-top: 10px solid #f1f1f1;
  border-left: 10px solid #f1f1f1;
  border-top-left-radius: 25px;
}

.container-wrapper .vision span {
  background: #0b2652;
  color: #fff;
  padding: 10px;
  text-align: center;
  margin: 15px;
  display: block;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
}

.container-wrapper .vis-content .text1 {
  color: #000;
  font-size: 16px;
  padding: 20px 25px;
}

.container-wrapper1 {
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container-wrapper1 .mis-image {
  position: relative;
  width: 500px;
  height: 280px;
  background: url(../img/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  transform: translateX(50px);
  animation: slideIn 1s forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.container-wrapper1 .mis-content {
  position: relative;
  width: 500px;
  height: 210px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  border-top-right-radius: 0px;
  transform: translateX(50px);
  animation: slideIn 1s forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.container-wrapper1 .mission {
  position: absolute;
  height: 59px;
  width: 50%;
  background: #fff;
  top: -28%;
  right: 0;
  border-top: 10px solid #f1f1f1;
  border-left: 10px solid #f1f1f1;
  border-top-left-radius: 25px;
}

.container-wrapper1 .mission span {
  background: #452e33;
  color: #fff;
  padding: 10px;
  text-align: center;
  margin: 15px;
  display: block;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
}

.container-wrapper1 .mis-content .text2 p {
  color: #000;
  font-size: 16px;
  padding: 20px 25px;
}

/* css product section  */
.product {
  padding: 4rem 7% 1.4rem;
}

.product h2 {
  margin-bottom: 1rem;
  text-align: center;
}

.product p {
  text-align: center;
}

.product span {
  color: #eb9a3c;
}

.product .container {
  position: relative;
  width: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px;
}

.product .container .card {
  position: relative;
  max-width: 300px;
  height: 215px;
  background: #fff;
  margin: 30px 10px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease-in-out;
}

.product .container .card:hover {
  height: 400px;
}

.product .container .card .img8x {
  position: relative;
  width: 260px;
  height: 260px;
  top: -80px;
  z-index: 1;
  box-shadow: 0 50px 20px rgba(0, 0, 0, 0.2);
}

.product .container .card .img8x img {
  border-radius: 4px;
  opacity: 0;
  transform: translateY(50px);
  animation: slideImg 1s forwards;
}

@keyframes slideImg {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product .container .card .content {
  position: relative;
  margin-top: -140px;
  padding: 40px 15px;
  text-align: center;
  color: #111;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.product .container .card:hover .content {
  visibility: visible;
  opacity: 1;
  margin-top: -40px;
  transition-delay: 0.3s;
}

.product .container .card .content a {
  color: #111;
  padding-top: 15%;
  padding-left: 80%;
  display: flex;
  justify-content: center;
}

.product .container .card .content a:hover {
  color: #25aae1;
}

.deskripsi-product {
  padding: 4rem 10% 1.4rem;
  background-color: #fafafa;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-left: 75px;
  margin-right: 75px;
  margin-bottom: 2rem;

  transform: translateY(50px);
  animation: slideInn 1s forwards;
}

@keyframes slideInn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.deskripsi-product .tab_box {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(229, 229, 229);
}

.deskripsi-product table {
  justify-content: center;
  align-items: center;
}

.deskripsi-product .tab_box .tab_btn {
  font-size: 18px;
  color: #000;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.deskripsi-product .tab_box .tab_btn:hover {
  color: #25aae1;
  border-bottom: #25aae1;
}

.deskripsi-product .tab_box .tab_btn.active {
  color: #000;
  border-bottom: #25aae1;
  width: auto;
  background-color: #25aae1;
  border-radius: 6px;
}

.deskripsi-product .content_box {
  padding: 20px;
}

.deskripsi-product .product-content {
  display: none;
  animation: moving 0.5s ease;
}

@keyframes moving {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

.deskripsi-product .product-content img {
  padding: 4rem 15% 1.4rem;
  /* padding-bottom: 2rem; */
  animation: movingg 0.5s ease-in-out;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 1s ease;
}

@keyframes movingg {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

.deskripsi-product .product-content img:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  transition: 1s ease;
}

.deskripsi-product .product-content.active {
  display: block;
}

.deskripsi-product .product-content p {
  padding-top: 2rem;
  color: #111;
  font-size: 16px;
}

.deskripsi-product thead {
  background-color: #25aae1;
}

.deskripsi-product table {
  justify-content: center;
  align-items: center;
}

.deskripsi-product .product-content h4 {
  padding-bottom: 1rem;
}

.deskripsi-product .product-content h5 {
  color: #111;
}

/* css project [instalation guide] section */

.book {
  padding: 2rem 3rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.book1 {
  padding: 5rem 4rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.book1 input {
  display: none;
}

.book input {
  display: none;
}

#cover {
  width: 630px;
  height: 750px;
  position: relative;
  perspective: 1500px;
}

.flip-book {
  width: 600px;
  height: 700px;
  position: relative;
  perspective: 1500px;
}

.flip-book .flip img {
  width: 600px;
  height: 700px;
  background-image: contain;
  background-repeat: no-repeat;
  border-radius: 2px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.flip {
  width: 600px;
  height: 710px;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: 0.5s;
  color: #fff;
  border-radius: 2px;
}

.front {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0 13px;
}

.back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  background-color: #fff;
}

.next-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 13px;
  right: 13px;
  cursor: pointer;
  color: #fff;
}

.back-btn {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 13px;
  right: 13px;
  cursor: pointer;
  color: #fff;
}

#p1 {
  z-index: 11;
}

#p2 {
  z-index: 10;
}

#p3 {
  z-index: 9;
}

#p4 {
  z-index: 8;
}

#p5 {
  z-index: 7;
}

#p6 {
  z-index: 6;
}

#l7 {
  z-index: 11;
}

#l8 {
  z-index: 10;
}

#l9 {
  z-index: 9;
}

#l10 {
  z-index: 8;
}

#l11 {
  z-index: 7;
}

#l12 {
  z-index: 6;
}

#c1:checked ~ .flip-book #p1 {
  transform: rotateY(-180deg);
  z-index: 1;
}

#c2:checked ~ .flip-book #p2 {
  transform: rotateY(-180deg);
  z-index: 2;
}

#c3:checked ~ .flip-book #p3 {
  transform: rotateY(-180deg);
  z-index: 3;
}

#c4:checked ~ .flip-book #p4 {
  transform: rotateY(-180deg);
  z-index: 3;
}

#c5:checked ~ .flip-book #p5 {
  transform: rotateY(-180deg);
  z-index: 3;
}

#c6:checked ~ .flip-book #p6 {
  transform: rotateY(-180deg);
  z-index: 3;
}

#t7:checked ~ .flip-book #l7 {
  transform: rotateY(-180deg);
  z-index: 3;
}

#t8:checked ~ .flip-book #l8 {
  transform: rotateY(-180deg);
  z-index: 3;
}

#t9:checked ~ .flip-book #l9 {
  transform: rotateY(-180deg);
  z-index: 3;
}

#t10:checked ~ .flip-book #l10 {
  transform: rotateY(-180deg);
  z-index: 3;
}

#t11:checked ~ .flip-book #l11 {
  transform: rotateY(-180deg);
  z-index: 3;
}

#t12:checked ~ .flip-book #l12 {
  transform: rotateY(-180deg);
  z-index: 3;
}

.download input {
  padding: 1rem;
  /* position: absolute; */
  margin-top: 2%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  background-color: #eb9a3c;
  color: #fff;
  font-size: 12px;
}

.download1 input {
  padding: 1rem;
  /* position: absolute; */
  margin-left: 50%;
  transform: translate(-50%, -50%);
  background-color: #eb9a3c;
  color: #fff;
  font-size: 12px;
}

/* css sertif section */
.sertif img {
  padding-top: 50px;
  margin: 0 auto;
  width: 50%;
  display: block;
  padding-bottom: 20px;
}

.sertif p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #000;
  padding-bottom: 30px;
}

#sertiftin {
  padding-top: 40px;
  padding-bottom: 70px;
}

#sertiftile {
  padding-bottom: 40px;
}
.swiper {
  width: 610px;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  background: #4d4d4d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 600px;
  height: 100%;
  object-fit: cover;
}

/* css contact section  */
.contact {
  position: relative;
  padding: 30px;
  margin: 30px 10%;
  background-color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: url(../img/bg1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100px;
  top: -30px;
  margin: 0 17%;
  background-color: #f1f1f1;
  border-radius: 0 0 20px 20px / 0 0 30px 30px;
  transform: perspective(600px) rotateX(-65deg);
}

.contact .box-contact {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 15px;
}

.contact .box-1 {
  padding: 30px 10px 10px 10px;
  width: 250px;
  height: 300px;
  background-color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.contact .box-2 {
  padding: 30px 10px 10px 10px;
  width: 250px;
  height: 300px;
  background-color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  position: relative;
}

.contact .box-3 {
  padding: 10px;
  width: 250px;
  height: 300px;
  background-color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  position: relative;
}

.contact .box-1:hover,
.contact .box-2:hover,
.contact .box-3:hover {
  border: 5px solid #eb9a3c;
}

.contact .box-1 p,
.contact .box-2 p {
  color: #555;
  font-size: 14px;
}

.contact .box-3 p {
  color: #000;
  font-size: 16px;
}

.contact h2 {
  color: #25aae1;
  margin-top: 3rem;
  text-align: center;
  font-size: 22px;
}

.contact p {
  color: #fff;
  margin-bottom: 3rem;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

.contact span {
  color: #eb9a3c;
}

.contact .logo {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin-bottom: 30px;
}

.contact .box-contact .chat {
  color: #223;
  text-decoration: underline;
  font-size: 16px;
}

.contact .box-contact .chat:hover {
  color: #25aae1;
}

.contact .row {
  display: flex;
  margin-top: 2rem;
  background-color: #fafafa;
}

.contact .row img {
  flex: 1 1 45rem;
  width: 100%;
  object-fit: cover;
  padding-top: 1rem;
  height: 30rem;
}

/* y */
.contact .row form {
  flex: 1 1 45rem;
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.contact .row .title {
  color: #000;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.contact .row .input-container {
  position: relative;
  margin: 1rem 0;
}

.contact .row .input {
  width: 100%;
  outline: none;
  border: 2px solid #000;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #000;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

.contact .row textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.contact .row .input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #000;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.contact .row .input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.contact .row .btn {
  padding: 0.6rem 1.3rem;
  background-color: #eb9a3c;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.contact .row .btn:hover {
  background-color: transparent;
  color: #000;
  background-color: #f7bb78;
}

.contact .row .input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.contact .row .input-container span:before,
.contact .row .input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #fafafa;
  top: 50%;
  transform: translateY(-50%);
}

.contact .row .input-container span:before {
  left: 50%;
}

.contact .row .input-container span:after {
  right: 50%;
}

.contact .row .input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 1.3rem;
}

.contact .row .input-container.focus span:before,
.contact .row .input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

/* css make order */
.makeorder {
  padding: 5rem 7% 1.4rem;

  position: relative;
  display: grid;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
}

.makeorder .container-mo {
  position: relative;
  display: flex;
}

.makeorder h2 {
  margin-bottom: 1rem;
  text-align: center;
}

.makeorder span {
  color: #eb9a3c;
}

.makeorder .row-img {
  flex-basis: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  transform: translateX(50px);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  animation: slideIn 1s forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.makeorder .row-img img {
  width: 100%;
  height: auto;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.makeorder .row-form {
  flex-basis: 50%;
  padding: 3em 5%;
  background-color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  transform: translateY(50px);
  animation: fadeIn 1s forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.makeorder .row-form form {
  width: 100%;
}

.makeorder .container-mo .row-form p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  line-height: 1, 5;
  margin-bottom: 20px;
}

.makeorder .row-form .input-container {
  position: relative;
  margin: 1rem 0;
}

.makeorder .row-form .input {
  width: 80%;
  outline: none;
  border: 2px solid #000;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

.makeorder .row-form textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.makeorder .row-form .input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #000;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.makeorder .row-form .input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.makeorder .row-form button {
  padding: 0.6rem 1.3rem;
  background-color: #eb9a3c;
  border: 2px solid #fafafa;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.makeorder .row-form button:hover {
  background-color: #fccd99;
  color: #111;
  cursor: pointer;
}

.makeorder .row-form .input-container span {
  position: absolute;
  top: 0;
  left: 50px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.makeorder .row-form .input-container span:before,
.makeorder .row-form .input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.makeorder .row-form .input-container span:before {
  left: 50%;
}

.makeorder .row-form .input-container span:after {
  right: 50%;
}

.makeorder .row-form .input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 10px;
  font-size: 1.3rem;
}

.makeorder.row-form .input-container.focus span:before,
.makeorder .row-form .input-container.focus span:after {
  width: 100%;
  opacity: 1;
}

/* css footer start */

.container-foot {
  /* max-width: 1170px; */
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: #fff;
  padding: 5rem 7% 1.4rem;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col img {
  width: 200px;
}

.footer-col h1 {
  color: #000;
  font-size: 16px;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
}

.footer-col p {
  color: #000;
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  margin-left: 1rem;
}

.footer-col h4 {
  font-size: 18px;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #eb9a3c;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #000;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #25aae1;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #3b3b3b;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: all 0.5s ease;
}

.footer-col .social-links a img {
  width: 40px;
  height: 40px;
}
.footer-col .social-links .ikon5 img {
  width: 30px;
  height: 30px;
}

.footer-col .social-links .ikon1:hover {
  color: #fff;
  background-image: linear-gradient(#9228d7, #ee2a7b, #f9ce34);
}

.footer-col .social-links .ikon2:hover {
  color: #fff;
  background-color: #fff;
}

.footer-col .social-links .ikon3:hover {
  color: #fff;
  background-color: #ea4335;
}

.footer-col .social-links .ikon4:hover {
  color: #fff;
  background-color: #43d854;
}
.footer-col .social-links .ikon5:hover {
  color: #fff;
  background-color: #fff;
}

/* css footer end */

/* css test product section carausel  */
/* carousel */
.test .carousel {
  position: relative;
  height: 800px;
  overflow: hidden;
  margin-top: -50px;
}

.test .carousel .list {
  position: absolute;
  width: 1140px;
  max-width: 90%;
  height: 80%;
  left: 50%;
  transform: translateX(-50%);
}

.test .carousel .list .item {
  position: absolute;
  left: 0%;
  width: 70%;
  height: 100%;
  font-size: 15px;
  transition: left 0.5s, opacity 0.5s, width 0.5s;
}

.test .carousel .list .item:nth-child(n + 6) {
  opacity: 0;
}

.test .carousel .list .item:nth-child(2) {
  z-index: 8;
  transform: translateX(0);
}

.test .carousel .list .item img {
  width: 50%;
  position: absolute;
  right: 0;
  top: 75%;
  transform: translateY(-50%);
  transition: right 1.5s;
}

.test .carousel .list .item .introduce {
  padding-top: 10%;
  opacity: 0;
  pointer-events: none;
}

.test .carousel .list .item:nth-child(2) .introduce {
  opacity: 1;
  pointer-events: auto;
  width: 400px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s;
}

.test .carousel .list .item .introduce .title {
  font-size: 2em;
  font-weight: 500;
  line-height: 1em;
  color: #000;
}

.test .carousel .list .item .introduce .topic {
  font-size: 4em;
  font-weight: 500;
  color: #000;
}

.test .carousel .list .item .introduce .des {
  font-size: small;
  color: #5559;
}

.test .carousel .list .item .introduce .seeMore {
  font-family: Poppins;
  margin-top: 1.2em;
  padding: 5px 0;
  border: none;
  border-bottom: 1px solid #555;
  background-color: transparent;
  font-weight: bold;
  letter-spacing: 3px;
  transition: background 0.5s;
}

.test .carousel .list .item .introduce .seeMore:hover {
  background: #eee;
}

.test .carousel .list .item:nth-child(1) {
  transform: var(--item1-transform);
  filter: var(--item1-filter);
  z-index: var(--item1-zIndex);
  opacity: var(--item1-opacity);
  pointer-events: none;
}

.test .carousel .list .item:nth-child(3) {
  transform: var(--item3-transform);
  filter: var(--item3-filter);
  z-index: var(--item3-zIndex);
}

.test .carousel .list .item:nth-child(4) {
  transform: var(--item4-transform);
  filter: var(--item4-filter);
  z-index: var(--item4-zIndex);
}

.test .carousel .list .item:nth-child(5) {
  transform: var(--item5-transform);
  filter: var(--item5-filter);
  opacity: var(--item5-opacity);
  pointer-events: none;
}

/* animation text in item2 */
.test .carousel .list .item:nth-child(2) .introduce .title,
.test .carousel .list .item:nth-child(2) .introduce .topic,
.test .carousel .list .item:nth-child(2) .introduce .des,
.test .carousel .list .item:nth-child(2) .introduce .seeMore {
  opacity: 0;
  animation: showContent 0.5s 1s ease-in-out 1 forwards;
}

@keyframes showContent {
  from {
    transform: translateY(-30px);
    filter: blur(10px);
  }

  to {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0px);
  }
}

.test .carousel .list .item:nth-child(2) .introduce .topic {
  animation-delay: 1.2s;
}

.test .carousel .list .item:nth-child(2) .introduce .des {
  animation-delay: 1.4s;
}

.test .carousel .list .item:nth-child(2) .introduce .seeMore {
  animation-delay: 1.6s;
}

/* next click */
.test .carousel.next .item:nth-child(1) {
  animation: transformFromPosition2 0.5s ease-in-out 1 forwards;
}

@keyframes transformFromPosition2 {
  from {
    transform: var(--item2-transform);
    filter: var(--item2-filter);
    opacity: var(--item2-opacity);
  }
}

.test .carousel.next .item:nth-child(2) {
  animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}

@keyframes transformFromPosition3 {
  from {
    transform: var(--item3-transform);
    filter: var(--item3-filter);
    opacity: var(--item3-opacity);
  }
}

.test .carousel.next .item:nth-child(3) {
  animation: transformFromPosition4 0.9s ease-in-out 1 forwards;
}

@keyframes transformFromPosition4 {
  from {
    transform: var(--item4-transform);
    filter: var(--item4-filter);
    opacity: var(--item4-opacity);
  }
}

.test .carousel.next .item:nth-child(4) {
  animation: transformFromPosition5 1.1s ease-in-out 1 forwards;
}

@keyframes transformFromPosition5 {
  from {
    transform: var(--item5-transform);
    filter: var(--item5-filter);
    opacity: var(--item5-opacity);
  }
}

/* previous */
.test .carousel.prev .list .item:nth-child(5) {
  animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}

.test .carousel.prev .list .item:nth-child(4) {
  animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}

.test .carousel.prev .list .item:nth-child(3) {
  animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}

.test .carousel.prev .list .item:nth-child(2) {
  animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}

@keyframes transformFromPosition1 {
  from {
    transform: var(--item1-transform);
    filter: var(--item1-filter);
    opacity: var(--item1-opacity);
  }
}

/* detail  */
.test .carousel .list .item .detail {
  opacity: 0;
  pointer-events: none;
}

/* showDetail */
.test .carousel.showDetail .list .item:nth-child(3),
.test .carousel.showDetail .list .item:nth-child(4) {
  left: 100%;
  opacity: 0;
  pointer-events: none;
}

.test .carousel.showDetail .list .item:nth-child(2) {
  width: 100%;
}

.test .carousel.showDetail .list .item:nth-child(2) .introduce {
  opacity: 0;
  pointer-events: none;
}

.test .carousel.showDetail .list .item:nth-child(2) img {
  right: 50%;
}

.test .carousel.showDetail .list .item:nth-child(2) .detail {
  opacity: 1;
  width: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  pointer-events: auto;
}

.test .carousel.showDetail .list .item:nth-child(2) .detail .title {
  font-size: 4em;
  color: #000;
}

.test .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
  display: flex;
  gap: 10px;
  width: 100%;
  border-top: 1px solid #5553;
  margin-top: 20px;
}

.test
  .carousel.showDetail
  .list
  .item:nth-child(2)
  .detail
  .specifications
  div {
  width: 90px;
  text-align: center;
  flex-shrink: 0;
}

.test
  .carousel.showDetail
  .list
  .item:nth-child(2)
  .detail
  .specifications
  div
  p:nth-child(1) {
  font-weight: bold;
}

.test .carousel.showDetail .list .item:nth-child(2) .detail .title,
.test .carousel.showDetail .list .item:nth-child(2) .detail .des,
.test .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
  opacity: 0;
  animation: showContent 0.5s 1s ease-in-out 1 forwards;
}

.test .carousel.showDetail .list .item:nth-child(2) .detail .des {
  animation-delay: 1.2s;
}

.test .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
  animation-delay: 1.4s;
}

.test .arrows {
  position: absolute;
  bottom: 10px;
  width: 1140px;
  max-width: 90%;
  display: flex;
  justify-content: space-between;
  left: 50%;
  transform: translateX(-50%);
}

.test .arrows #prevv,
.test .arrows #nextt {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: monospace;
  border: 1px solid #5555;
  font-size: large;
  font-weight: bold;
  bottom: 20%;
  left: 10%;
}

.test .arrows #nextt {
  left: unset;
  right: 10%;
}

.test .arrows #back {
  position: absolute;
  z-index: 100;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  border-bottom: 1px solid #555;
  font-family: Poppins;
  font-weight: bold;
  letter-spacing: 3px;
  background-color: transparent;
  padding: 10px;
  /* opacity: 0; */
  transition: opacity 0.5s;
}

.test .carousel.showDetail #back {
  opacity: 1;
}

.test .carousel.showDetail #prevv,
.test .carousel.showDetail #nextt {
  opacity: 0;
  pointer-events: none;
}

.test .carousel::before {
  width: 500px;
  height: 300px;
  content: "";
  background-image: linear-gradient(70deg, #dc422a, blue);
  position: absolute;
  z-index: -1;
  border-radius: 20% 30% 80% 10%;
  filter: blur(150px);
  top: 50%;
  left: 50%;
  transform: translate(-10%, -50%);
  transition: 1s;
}

.test .carousel.showDetail::before {
  transform: translate(-100%, -50%) rotate(90deg);
  filter: blur(130px);
}

.test .katalog button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 44%;
  font-size: 1rem;
  padding: 1rem;
}

.test .katalog button:hover {
  background-color: #eb9a3c;
}
