* { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: Muli, "Segoe UI", Arial, sans-serif;
      line-height: 1.6;
      color: #000;
      background: #fff;
    }
    header {
      /*background: linear-gradient(135deg, #00426a, #005b8f);*/
      background-color: #fff;
	  color: #000;
       /*padding: 40px 20px;*/
      text-align: center;
    }
	header img {
		max-width:80%;
	}
    header h1 {
      margin: 0;
      font-size: 2.5rem;
    }
    header p {
      font-style: italic;
      margin-top: 10px;
      font-size: 1.1rem;
    }
    nav {
      background: #002b45;
      display: flex;
      justify-content: space-evenly;
      flex-wrap: wrap;
    }
    nav a {
      color: #fff;
      padding: 14px 20px;
      text-decoration: none;
      transition: background 0.3s ease;
    }
    nav a:hover {
      background: #00426a;
    }
	.mySlides {display: none;}
	.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border: 1px solid black;
  border-radius: 5px;
  padding: 5px;
}
.slideshow-container img{
  vertical-align: middle;
 }
.text {
  color: #000;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

    .hero {
      /*background: url("https://www.adrinusa.co.id/industrial-machinery.jpg") no-repeat center center/cover;*/
      color: #fff;
      padding: 20px 20px;
      text-align: center;
    }
    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      background: rgba(0,0,0,0.6);
      padding: 10px;
      border-radius: 6px;
    }
    .container {
      max-width: 1100px;
      margin: auto;
      padding: 20px 20px;
    }
	section {
      border: solid 1px #eee;
      box-shadow: 0 1px 16px rgba(0,0,0,0.1);
    }
    .section h2 {
      text-align: center;
      color: #000;
      margin-bottom: 30px;
	  font-size: 1.8em;
    }
	.section p {
      text-align: center;
      color: #000;
      font-size: 1.5em;
    }
    .products {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .product {
      flex: 1 1 300px;
      max-width: 500px;
      background: #fff;
      border-radius: 5px;
	  border: 1px solid black;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .product:hover {
      transform: translateY(-5px);
    }
    .product img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .product-content {
      padding: 20px;
    }
    .product-content h3 {
      margin-top: 0;
      color: #000;
	  padding: 2px 4px;
	  background-color:#ccc;
    }
    .product-content p {
      font-size: 0.95rem;
	  text-align: left;
    }
    ul {
      list-style: disc inside;
      line-height: 1.8;
	  font-size: 1.2em;
    }
    footer {
      background: #002b45;
      color: #fff;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
    }
	.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}

.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
#overtext h2 {
	font-family: Orbitron;
	color: #000;
}
#menu_toggle {display:none}

    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }
	  header img {
		max-width:95%;
	}
      .hero{
      background: url("https://www.adrinusa.co.id/industrial-machinery-mobile.jpg") no-repeat center center/cover;
      color: #fff;
      padding: 20px 20px;
      text-align: center;   
      }
      .hero h2 {
        font-size: 2rem;
      }
      nav {
        flex-direction: column;
      }
	  #overtext h2 {
	     color: #fff;
       }
	  #menu_toggle {display: block;font-size: 1.8em; color:white;margin:0}
      .nav_el {display:none;}
    }