* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
}

a img:hover {
  transform: scale(1.02);
  transition: all 0.3s;
}

a img.reseller:hover {
  transform: none;
  transition: none;
}

a img.grow-scale:hover {
  transform: none;
  transition: none;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #a0946e;
}

::-webkit-scrollbar-thumb:hover {
  background: #b2a57b;
}

/* ANIMASI */

.grow-scale {
  animation-name: grow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: grow;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
}
@keyframes grow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

footer {
  background-color: #6fb43f;
}

.video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 40px;
}

.video iframe {
  width: 725px;
  height: 515px;
  border-radius: 15px; /* sudut membulat */
  overflow: hidden;    /* pastikan isi iframe tidak keluar sudut */
}

/* Rasio 4:3 → 3/4 = 75% */
.video-embed::before {
  content: "";
  display: block;
  padding-top: 56.25%%;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
}


@media screen and (max-width: 768px) {
.video iframe {
    width: 90%;
    height: 230px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
}

footer {
  background-color: #6fb43f;
}