@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
body {
  background-color: #f2f2f2;
  margin: 0;
  font-family: poppins;
}

.navbar {
  background: white;
  padding: 2em;
}

.navbar .logo {
  text-decoration: none;
  font-weight: bold;
  color: black;
  font-size: 1.2em;
}

.navbar .logo span {
  color: #007af3;
}

.navbar nav {
  display: none;
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

.navbar #mobile-open-nav {
  cursor: pointer;
}

a {
  color: #ff0000;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section {
  padding: 5em 2em;
}

.hero {
  text-align: center;
}

.kolom-kiri .subhead {
  text-transform: uppercase;
  font-weight: bold;
  color: gray;
  letter-spacing: .3em;
}

.kolom-kiri h1 {
  font-size: 2.5em;
  line-height: 1.3em;
  margin-top: .2em;
}

.kolom-kiri .gambar-utama {
  background: #007af3;
  color: white;
  text-decoration: none;
  padding: .9em 1.3em;
  border-radius: 5em;
  display: inline-block;
}

.kolom-kiri .kunjungi-youtube {
  display: block;
  margin-top: 1em;
  text-decoration: none;
}

.kolom-kiri .kunjungi-youtube i {
  margin-right: .5em;
}

.hero-youtube {
  width: 65%;
  margin-top: 3em;
}

section.fiture-section {
  background: #20272e;
  color: white;
}

ul.fiture-list {
  margin: 0;
  padding-left: .1em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (maxmax(19rem, 2fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, maxmax(19rem, 2fr));
}

ul.fiture-list li {
  margin-bottom: 1em;
  font-size: 1.1em;
  margin-left: 2em;
  position: relative;
}

ul.fiture-list li::before {
  content: '';
  left: -2em;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../images/ceklis.png");
  background-size: contain;
  margin-right: .5em;
}

.fiture-section img {
  display: none;
}

.tetimoni {
  background: #007af3;
  color: white;
}

.tetimoni li {
  background: #006bd6;
  text-align: center;
  padding: 2em 1em;
  margin: 0 auto 5em auto;
  width: 80%;
  border-radius: 1em;
}

.tetimoni li img {
  width: 5em;
  height: 5em;
  border-radius: 50%;
  border: 5px solid #006bd6;
  margin-top: -45em;
}

h2 {
  font-size: 2em;
  text-align: center;
}

label {
  display: block;
  font-size: 1.2em;
  margin-bottom: .5em;
}

input,
textarea {
  width: 100%;
  padding: .8em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: .3em;
  border: 1px solid gray;
  margin-bottom: 1em;
}

iframe {
  width: 100%;
  border-radius: .8em;
  height: 300px;
}

input[type="submit"] {
  font-size: 16px;
  background: #006bd6;
  border-radius: 5em;
  color: white;
  font-weight: bold;
  display: inline-block;
  border: none;
  padding: .8em 2em;
  width: unset;
  cursor: pointer;
}

nav.menu-btn {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 60%;
  left: 0;
  top: 0;
  background: rgba(245, 245, 245, 0.9);
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

nav ul.nav-kiri-utama {
  margin-top: .1em;
}

nav li a {
  text-decoration: none;
  color: gray;
  display: block;
  left: 0;
  padding: 30px;
  font-size: 18px;
  border-radius: .5em;
  -webkit-transition: .3s;
  transition: .3s;
}

nav li a:hover {
  background-color: grey;
  color: whitesmoke;
  border-radius: .5em;
}

nav i {
  cursor: pointer;
  margin-top: 20px;
  margin-left: 210px;
  padding: 20px;
  border-radius: .5em;
  -webkit-transition: .3s;
  transition: .3s;
}

nav i:hover {
  background: grey;
  color: whitesmoke;
  border-radius: .5em;
}

@media only screen and (max-width: 768px) {
  nav {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */