* {
  margin: 0;
  padding: 0;
  font-family: "poppins", sans-serif;
}

.header {
  background-color: #16325B;
}

.logo {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.navbar {
  background-color: #333;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.navbar a {
  float: left;
  display: block;
  color: #f1f1f1;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.navbar a.aktif {
  background-color: #6e6e6e;
  color: white;
}

.navbar a:hover:not(.aktif) {
  background-color: #ddd;
  color: black;
}

.navbar .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .navbar a:not(:first-child) {
    display: none;
  }

  .navbar a.icon {
    float: right;
    display: block;
  }

}

@media screen and (max-width: 600px) {
  .navbar.responsive {
    position: sticky;
  }

  .navbar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

}

button.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.active,
button.accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

div.panel {
  padding: 0 18px;
  background-color: white;
  font-size: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  -webkit-transition: max-height 0.5s ease-out;
  -moz-transition: max-height 0.5s ease-out;
  -ms-transition: max-height 0.5s ease-out;
  -o-transition: max-height 0.5s ease-out;
}


/* Tentang Kami */


.tentang {
  background-color: #333;
  color: #f1f1f1;
  padding: 14px 16px;
  text-align: center;
}

/* Picture */

div.mySlides {
  display: none;
}

img {
  vertical-align: middle;
}

div.slideshow-container {
  box-sizing: border-box;
  max-width: 100%;
  position: relative;
  margin: auto;
  z-index: -1;
  border: 2px solid #16325B;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  -webkit-transition: background-color 0.6s ease;
  -moz-transition: background-color 0.6s ease;
  -ms-transition: background-color 0.6s ease;
  -o-transition: background-color 0.6s ease;
}

.turnOn {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4;
  }

  to {
    opacity: 1;
  }
}

@media screen and (max-width: 450px) {
  .mySlides img {
    width: 100%;
  }

}

@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }

}

/* Callout */

.callout {
  position: fixed;
  bottom: 35px;
  right: 20px;
  margin-left: 20px;
  max-width: 300px;
}

.callout-header {
  padding: 25px 15px;
  background: #16325B;
  font-size: 30px;
  color: white;
}

.callout-container {
  padding: 15px;
  background-color: #ccc;
  color: #333;
}

.closebtn {
  position: absolute;
  top: 5px;
  right: 15px;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* footer */

footer {
  background-color: #333;
  overflow: hidden;
}

.umum {
  float: left;
  width: 25%;
  color: #f1f1f1;
  margin-top: 20px;
}

.peta {
  float: left;
  width: 25%;
  color: #f1f1f1;
  margin-top: 20px;
}

.alamat {
  float: left;
  width: 25%;
  color: #f1f1f1;
  margin-top: 20px;
}

.media-sosial {
  float: left;
  width: 25%;
  color: #f1f1f1;
  margin-top: 20px;
}

.media-sosial i:hover {
  color: #16325B;
}

@media screen and (max-width: 600px) {
  .umum {
    width: 100%;
  }

  .peta {
    width: 100%;
  }

  .alamat {
    width: 100%;
  }

  .media-sosial {
    width: 100%;
  }

}

/* Clear-fix */

.clearfix {
  content: "";
  clear: both;
  display: table;
}

.penutup {
  background-color: #202020;
  padding: 14px 16px;
  color: #f1f1f1;
  text-align: center;
}

.penutup p:last-child {
  font-size: 15px;
}

.penutup span:hover {
  color: #16325B;
  cursor: pointer;
}


/* Input Form */