@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "montserrat", serif;
  scroll-behavior: smooth;
}

* {
  font-family: "poppins", sans-serif;
}
header {
  width: 100%;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  z-index: 99;
  padding: 5px 20px;
  display: flex;
  transition: ease-in-out 0.2s;
}
header a{
  width: 100%;
}
.header-scroll{
    background-color: #414141;
    box-shadow: 0px 0px 30px -5px rgb(0, 0, 0);
}
.logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.logo img{
  height: auto;
  width: 100%;;
}
.gambarLogo {
  width: 50%;
  height: auto;
  max-width: 150px;
  min-width: 90px;
}
.navbar {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
}
.humberger {
  height: 100%;
  display: flex;
  align-items: center;
}
svg {
  height: 80%;
}
nav menu {
  display: none;
}
.navPanjang-scroll{
    color: white;
}
sidebar{
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color:#414141;
    align-items: center;

}
.head  {
    height: 5rem;
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
padding: 20px;
}
sidebar menu li{
    display: flex;
    flex-direction: column;
    align-items: center;
}
sidebar menu li a{
        text-decoration: none;
        color: white;
        font-size: 1.5rem;
        font-weight: 900;
        display: block;
        margin-bottom: 1rem;

}
@media screen and (min-width: 765px) {
  .humberger {
    display: none;
  }
  nav menu {
    display: flex;
    align-items: center;
  }
  nav menu li {
    display: flex;
  }
  nav menu li a {
    padding-left: 1rem;
    padding-right: 1rem;
    color: black;
    font-weight: bolder;
    text-decoration: none;
  }
}

/* Image Slider */
.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  filter: brightness(0.5);
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 24px;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  width: 60%;
  height: auto;
}

.caption a {
  font-weight: 600;
  font-size: 10px;
  text-decoration: none;
  color: #665e56;
  background-color: rgb(255, 255, 255);
  border-radius: 2em;
  padding: 10px 15px;
  transition: all 0.3s ease;
  border: #fff 1px solid;
  margin-bottom: 20px;
}

.caption a:hover {
  text-decoration: none;
  color: rgb(255, 255, 255);
  background-color: #665e56;
  border-radius: 10px;
  border: #665e56 1px solid;
}

.Caption p{
    font-size: 15px;
    margin-top: 5px;
}

/* Tombol navigasi kiri dan kanan */
button {
  position: absolute;
  top: 50%;
  /* Posisi vertikal di tengah */
  transform: translateY(-50%);
  /* Geser ke atas atau bawah untuk benar-benar di tengah */
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Image Slider Selesai */

/* Produk Unggulan */
.produkUnggulan {
  padding: 2rem;
  display: block;
  background-color: #414141;
  text-align: center;
  color: white;
}
.judulProdukUnggulan {
  font-size: 1.8rem;
}
.subJudulProdukUnggulan {
  font-size: 1rem;
  font-weight: 100;
  margin-top: 20px;
  margin-bottom: 20px;
}
.containerProdukCard {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.produkCard {
  height: 450px;
  width: 280px;
  border-radius: 1rem;
  /* background-color: #665e56; */
  background-size:contain;
  background-position: top;
  margin: 2rem;
  box-shadow: 0px 0px 30px -5px rgb(0, 0, 0);
  position: relative;
  transition: ease-in-out 0.2s;
}
.produkCard:hover{
    scale: 1.05;
    transition: ease-in-out 0.2s;
}
.deskripsiProdukCard {
  width: 100%;
  height: 40%;
  background-color: #d4d4d4;
  border-radius: 1rem;
  position: absolute;
  bottom: 0;
  box-shadow: 0px 0px 30px -5px rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.deskripsiProdukCard P{
  color: #414141;
  font-size: 1.2rem;
  font-weight: 900;
}
@media screen and (min-width:1800px) {
  .produkUnggulan {
  padding: 2rem 13rem;
}
}
/* Tentang Kami */
.tentangKami {
  padding: 2rem;
  display: block;
  background-color: #ffffff;
  text-align: center;
  color: #665e56;
}
.tentangKami h1 {
  font-size: 1.8rem;
}
.tentangKami h3 {
  font-size: 1rem;
  font-weight: 100;
  margin-top: 20px;
  margin-bottom: 20px;
}
.tentangKami img {
  width: 100%;
  max-width: 350px;
}
@media screen and (min-width: 765px) {
  .tentangKami {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .kataTentangKami {
    width: 50%;
    text-align: left;
  }
}
/* Pelanggan */
.pelanggan {
  padding-top: 2rem;
  background-color: #d1cdc9;
  text-align: center;
}
.pelanggan h1 {
  font-size: 1.8rem;
  color: #665e56;
}
.logoPelanggan {
  height: auto;
  width: 100%;
}
.wave {
  width: 100%;
  height: 100px;
  margin-top: -5px;
}
.logo-slider {
    overflow: hidden;
    padding: 1.5rem 0;
    background: #d1cdc9;;
    white-space: nowrap;
    position: relative;
    display: flex; 
}
.logo-slider::before,
.logo-slider::after {
    position: absolute;
    top: 0;
    width: 950px;
    height: 100%;
    content: "";
    z-index: 2;
}
@media screen and (min-width:785px) {
  .logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #d1cdc9, #d1cdc900, #d1cdc900);
}
.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #d1cdc9, #d1cdc900, #d1cdc900);
}
}
.logo-slide-track {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4rem;
    padding-right: 4rem;
    animation: gerakLogo 25s linear infinite;
}
.logo-slide-track img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}
.logo-slide-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-slider:hover .logo-slide-track {
    animation-play-state: paused;
}
@keyframes gerakLogo {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Pelanggan */

/* Rancang Riset */
.rancangRiset {
  text-align: center;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 2rem;
}
.rancangRiset h1 {
  font-size: 1.8rem;
  color: #665e56;
  margin-bottom: 2rem;
}
.rancangRiset h3 {
  font-size: 1rem;
  font-weight: 100;
  margin-top: 20px;
  margin-bottom: 20px;
}
.konten svg {
  height: 100px;
  width: auto;
  margin: 1rem;
}
.konten {
  max-width: 400px;
  margin: 2rem;
}
.containerRancangRiset {
  display: block;
  justify-items: center;
}
@media screen and (min-width: 765px) {
  .containerRancangRiset {
    display: flex;
    justify-content: center;
  }
}
/* Hubungi Kami */
.hubungiKami {
  background-image: url(images/contact.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
}

.coverGradient {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.3)
  );
  width: 100%;
  flex-grow: 1;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 3rem;
  box-sizing: border-box;
}
.coverGradient h1 {
  font-size: 1.8rem;
  margin-top: 2rem;
}
.coverGradient h2 {
  font-size: 1rem;
  font-weight: 100;
  margin-top: 20px;
  margin-bottom: 20px;
}
.containerKontaknya {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly; 
}
.containerKontaknya a{
    text-decoration: none;
    color: black;
}
.kontakHubungiKami {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 250px;
  background-color: #d4d4d4;
  border-radius: 4rem;
  border-style: solid;
  border-color: #615952;
  border-width: 5px;
  margin: 1rem;
  transition: ease 0.2s;
}
.kontakHubungiKami:hover {
  scale: 1.1;
  transition: ease 0.2s;
  box-shadow: 0px 0px 30px -5px rgb(0, 0, 0);
}
.kontakHubungiKami svg {
  width: 50px;
  height: auto;
  margin: 1rem;
  fill: #665e56;
}
.kontakHubungiKami h1 {
  margin: 0;
  font-size: larger
}
.kontakHubungiKami h2 {
  margin: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width:650px) {
    .containerKontaknya {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
/* footer */
footer {
  background-color: #d1cdc9;
  padding: 1rem;
  color: #665e56;
  text-align: center;
}
footer h2 {
  font-size: 1.2rem;
}
.sosmed {
  display: flex;
  justify-content: center;
}
.sosmed svg {
  width: 50px;
  height: auto;
  fill: #665e56;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}
@media screen and (min-width: 765px) {
  .footer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
