.body {
  background-color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  color: #3eaf1c;
}

.navbar {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 12px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 12px;
}

.navbar-brand img {
  max-height: 40px;
}

.navbar-light {
  padding: 10px 50px;
}

.navbar-light .navbar-nav .nav-link {
  font-family: 'Quicksand', sans-serif;
  font-weight: 900;
  color: #3eaf1c;
}

.btn-login {
  width: 122px;
  height: 43px;
  border-radius: 21.5px;
  background: #3eaf1c;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.btn-login:hover {
  background-color: #64E93A;
  color: #ffffff;
}

.header-row {
  margin-top: 80px;
}

.text-left {
  margin-top: 50px;
  padding-left: 30px;
}

.text-left h1 {
  font-family: Quicksand;
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  color: #3eaf1c;
}

.text-left p {
  font-family: Quicksand;
  font-weight: normal;
  font-size: 18px;
  text-align: left;
  color: #3eaf1c;
}

.text-left h2 {
  font-family: Quicksand;
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  color: #3eaf1c;
}

.text-right img {
  image-rendering: auto;
}

.btn-daftar {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700px;
  font-size: 18px;
  color: #ffffff;
  border-radius: 5px;
  background: #3eaf1c;
}

.btn-rules {
  border-radius: 5px;
  color: #3eaf1c;
  background: transparent;
  border: 1px solid #3eaf1c;
}

.div-about-heading h2 {
  margin-top: 70px;
  font-family: Quicksand;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #3eaf1c;
}

.div-about-heading h2::after {
  content: '';
  padding-top: 5px;
  display: block;
  border-bottom: 3px solid #59BDAC;
  margin: auto;
  width: 200px;
}

.div-visi h2 {
  font-family: Quicksand;
  font-weight: bold;
  font-size: 22px;
  color: #3eaf1c;
}

.div-visi p {
  font-family: Quicksand;
  font-weight: 550;
  font-size: 18px;
  text-align: center;
  color: #3eaf1c;
}

.div-informasi h2 {
  font-family: Quicksand;
  font-weight: bold;
  font-size: 22px;
  color: #3eaf1c;
}

.div-informasi p {
  font-family: Quicksand;
  font-weight: 550;
  font-size: 18px;
  text-align: center;
  color: #3eaf1c;
}

.div-information-heading h2 {
  margin-top: 70px;
  font-family: Quicksand;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #3eaf1c;
}

.div-information-heading h2::after {
  content: '';
  padding-top: 5px;
  display: block;
  border-bottom: 3px solid #59BDAC;
  margin: auto;
  width: 200px;
}

.information-field .row p {
  font-family: Quicksand;
  font-weight: 550;
  font-size: 18px;
  text-align: center;
  color: #3eaf1c;
}

.information-field .img-info {
  margin-top: -40px;
}

.information-field .img-info::after {
  content: '';
  padding-top: 5px;
  display: block;
  border-bottom: 3px solid #59BDAC;
  margin: auto;
}

.information-field .img-info2 {
  margin-top: -5px;
}

.div-prosedur-heading h2 {
  margin-top: 70px;
  font-family: Quicksand;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #3eaf1c;
}

.div-prosedur-heading h2::after {
  content: '';
  padding-top: 5px;
  display: block;
  border-bottom: 3px solid #59BDAC;
  margin: auto;
  width: 200px;
}

.div-penjelasan-prosedur-heading h2 {
  margin-top: 70px;
  font-family: Quicksand;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #3eaf1c;
}

.div-penjelasan-prosedur-heading h2::after {
  content: '';
  padding-top: 5px;
  display: block;
  border-bottom: 3px solid #59BDAC;
  margin: auto;
  width: 200px;
}

.list {
  padding: 0 50px;
}

ol {
  counter-reset: li;
  /* Initiate a counter */
  margin-left: 0;
  /* Remove the default left margin */
  padding-left: 0;
  /* Remove the default left padding */
}

ol li {
  position: relative;
  /* Create a positioning context */
  margin: 0 0 6px 2em;
  /* Give each list item a left margin to make room for the numbers */
  padding: 4px 8px;
  /* Add some spacing around the content */
  list-style: none;
  /* Disable the normal item numbering */
  border-top: 2px solid #3eaf1c;
  background: #ffffff;
  font-weight: 700;
  font-size: 18px;
  font-family: Quicksand;
  color: #3eaf1c;
}

ol > li:before {
  content: counter(li);
  /* Use the counter as content */
  counter-increment: li;
  /* Increment the counter by 1 */
  /* Position and style the number */
  position: absolute;
  top: -2px;
  left: -2em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 2em;
  /* Some space between the number and the content in browsers that support
       generated content but not positioning it (Camino 2 is one example) */
  margin-right: 8px;
  padding: 4px;
  border-top: 2px solid #3eaf1c;
  color: #fff;
  background: #3eaf1c;
  font-weight: 900;
  font-family: Quicksand;
  text-align: right;
}

li ol,
li ul {
  margin-top: 0px;
}

ol ol li:last-child {
  margin-bottom: 0;
}

.contact {
  background-color: #59BDAC;
}

.contact .row {
  padding: 20px;
}

.logo-kem {
  margin-top: 35px;
}

.logo-kem h2 {
  font-family: Quicksand;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #ffffff;
}

.text-contact h2 {
  font-family: Quicksand;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #ffffff;
}

.text-contact h2::after {
  content: '';
  padding-top: 5px;
  display: block;
  border-bottom: 3px solid #0C7866;
  margin: auto;
  width: 200px;
}

.text-contact p {
  font-family: Quicksand;
  font-weight: lighter;
  font-size: 18px;
  text-align: center;
  color: #ffffff;
}

.text-contact p a {
  color: #ffffff;
}

.icon-contact {
  margin-top: 80px;
}

.footer-below {
  padding: 5px;
  background-color: #0E3931;
  font-family: Quicksand;
  font-size: 18px;
  color: azure;
  text-align: center;
}

.section-header-bg {
  background: #b4dda7;
  min-height: 200px;
  margin-top: -70px;
}

.section-header-text {
  margin-top: -100px;
}

.section-header-text h2 {
  font-family: Quicksand;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #168a39;
}

.section-form {
  margin-top: 20px;
}

.section-form .card-form {
  border-radius: 10px;
}

.card-title {
  padding: auto;
  max-width: 200px;
  border-radius: 15px;
  background-color: #b1bdac;
  color: #000000;
  border-color: #ffffff;
  font-family: Quicksand;
  font-weight: bold;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 12px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 12px;
}
/*# sourceMappingURL=main.css.map */