
*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
.mt10 { margin-top:10px;}
.mb10 { margin-bottom:10px;}
body{
  background:#0b0b0b;
  color:#fff;
  text-decoration: none;
}

/* HEADER */
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  position:fixed;
  width:100%;
  background:rgba(0,0,0,0.8);
  backdrop-filter:blur(8px);
  z-index:1000;
}

.logo{
  font-size:26px;
  font-weight:800;
  color:#ff0000;
  letter-spacing:2px;
  
    display: block;
    width: 80px;
    height: 25px;
    -webkit-tap-highlight-color: transparent;
}
.logo > img {
    display: block;
    width: 80px;
    height: 80px;
    -webkit-tap-highlight-color: transparent;
}
nav a{
  color:#fff;
  text-decoration:none;
  margin-left:20px;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#ff0000;
}

/* HERO */
.hero{
  height:100vh;
  background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.9)),
  url('https://images.unsplash.com/photo-1503376780353-7e6692767b70') center/cover;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 20px;
}

.hero h1{
  font-size:55px;
  font-weight:800;
  margin-bottom:20px;
}

.hero span{
  color:#ff0000;
}

.hero p{
  color:#ccc;
  margin-bottom:35px;
}

.hero a{
  padding:14px 35px;
  background:#ff0000;
  border-radius:40px;
  text-decoration:none;
  color:#fff;
  font-weight:600;
  transition:0.3s;
  box-shadow:0 0 20px rgba(255,0,0,0.5);
}

.hero a:hover{
  background:#cc0000;
}

/* Text Berjalan */
.text-berjalan{
    position: fixed;
    top: 8vh;
    width: 100%;
    height: 40px;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    /* background: #ffffffe6;*/
    z-index: 99999999;
}
.text-berjalan ul{
    padding: 0;
    list-style: none;
}
.text-berjalan ul li{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 10px;
    position: relative;
}
.text-berjalan ul li:not(:first-child):before{
    content: "|";
    position: absolute;
    top: 0;left: 0; right: 0;
    margin-left: -5px;
}
.text-berjalan img{
    height: 20px;
    margin-right: 10px;
}
.text-berjalan span{
    margin: auto;
}


/* PRODUCTS */
.products{
  padding:30px 8%;
}

.section-title{
  text-align:center;
  font-size:36px;
  margin-bottom:60px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:35px;
}

.card{
  background:#151515;
  border-radius:20px;
  overflow:hidden;
  transition:0.4s;
  border:1px solid #222;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 25px rgba(255,0,0,0.3);
}

.card img{
  width:100%;
  height:75%;
  object-fit:contain;
  display: block;
}

.card-content{
  padding:20px;
}

.card-content h3{
  margin-bottom:10px;
}

.price{
  color:#ff0000;
  font-weight:700;
  margin:10px 0;
}

.btn-wa{
  display:block;
  text-align:center;
  padding:12px;
  background:#25D366;
  border-radius:30px;
  text-decoration:none;
  color:#fff;
  font-weight:600;
  margin-top:15px;
  transition:0.3s;
}

.btn-wa:hover{
  background:#1ebe5d;
}

/* FOOTER */
footer{
  background:#000;
  text-align:center;
  padding:40px;
  color:#aaa;
}
.link{
  background:#000;
  text-align:center;
  color:#aaa;
  text-decoration:none;
}
.media-wrapper {
  position: relative;
  background: #000;
  overflow: hidden;
 
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
	align-items: center;
}

video {
  width: 66%;
  display: block;
  object-fit: contain;
}

/* SOUND BUTTON */
.sound-toggle {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.65);
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity .4s, transform .2s;
}

.sound-toggle.show {
  opacity: 1;
}

.sound-toggle:hover {
  transform: scale(1.05);
}

.iconm {
  width: 22px;
  height: 22px;
  fill: #fff;
  position: absolute;
  inset: 0;
  margin: auto;
}

.unmuted { display: none; }
.sound-toggle.active .muted { display: none; }
.sound-toggle.active .unmuted { display: block; }

/* RIPPLE EFFECT */
.ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transform: scale(0);
  opacity: 0;
}

.sound-toggle.ripple-active .ripple {
  animation: ripple .6s ease-out;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    padding: 5px;
	justify-content: center;
	gap:50px;
    }
	
.img-dealer {
    height: 50px;
    margin: 0 0 0 10px;
	-webkit-tap-highlight-color: transparent;
}
.dealer > img {
    display: block;
    width: 200px;
    height: 200px;
	-webkit-tap-highlight-color: transparent;
}
.container-dealer {margin:17px;}
.span{color:#fff;text-align:center;margin:0;font-size: 14px;}
.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
	align-items: center;
}
.social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto 0 50px;
}
.social-links__link { margin:0 75px 0 0; }
.icon {
    display: block;
    width: 32px;
    height: 32px;
    opacity: .7;
}
.social-links__link:hover .icon { opacity: 1; }
.icon > img {
    display: block;
    width: 200%;
    height: 200%;
}

@media (max-width: 500px) {
    .card img{width:100%;height:55%;}
	video {width:90%;}
	.grid-container {grid-template-columns:auto auto;gap:40px;}
}
@media (min-width: 600px) {

}
@media (max-width: 740px) {
    .card img{width:100%;}
	video {width:85%;}
}

@media (max-width: 500px) {
	.dealer > img {width: 100px;height: 100px;}
	.grid-container {grid-template-columns: auto auto auto;gap:10px;}
	.social-links__link { margin:0px 14px;}
	.icon > img {width: 150%;height:150%;}
}