@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
}

::-webkit-scrollbar {
  display: none;
}

.container {
  width: 80%;
  margin: auto;
}

@media screen and (max-width: 860px) {
  .container {
    width: 85%;
  }
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #5e7c60;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.222);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.222);
}

nav .container {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  position: relative;
  padding: 10px 0;
}

@media screen and (min-width: 700px) {
  nav .container {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: "brand link button";
  }
}

nav .container .nav_brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

@media screen and (min-width: 700px) {
  nav .container .nav_brand {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    grid-area: brand;
  }
}

nav .container .nav_brand img {
  width: 50px;
}

nav .container .nav_brand h4 {
  font-weight: 800;
  font-size: 20px;
  color: white;
}

nav .container .nav_brand h4 br {
  display: none;
}

@media screen and (min-width: 700px) {
  nav .container .nav_brand h4 br {
    display: block;
  }
}

nav .container .burger_menu {
  background-image: url(../assets/img/menu.png);
  width: 35px;
  height: 35px;
  background-size: cover;
  position: absolute;
  top: 22px;
  right: 10px;
}

@media screen and (min-width: 700px) {
  nav .container .burger_menu {
    display: none;
  }
}

@media screen and (max-width: 340px) {
  nav .container .burger_menu {
    right: -10px;
  }
}

nav .container input {
  opacity: 0;
}

nav .container #label {
  cursor: pointer;
}

nav .container .grid {
  display: -ms-grid !important;
  display: grid !important;
}

nav .container .list_link {
  display: none;
  width: 100%;
  margin-top: 10px;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      grid-template-areas: "left right" "button button";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 700px) {
  nav .container .list_link {
    display: -ms-grid;
    display: grid;
  }
}

nav .container .list_link li {
  text-align: center;
  list-style: none;
}

nav .container .list_link li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  display: block;
  border-radius: 3px;
  padding: 7px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

nav .container .list_link li a:hover {
  background-color: #f2edd7;
}

@media screen and (min-width: 700px) {
  nav .container .list_link li a:hover {
    background: none;
    font-weight: bold;
  }
}

nav .container .list_link .home {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: left;
}

nav .container .list_link .cara {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: right;
}

nav .container .list_link .btn_login {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: button;
}

@media screen and (min-width: 700px) {
  nav .container .list_link .btn_login {
    display: none;
  }
}

nav .container .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 700px) {
  nav .container .btn {
    display: none;
  }
}

nav .container .btn a {
  display: inline-block;
  text-decoration: none;
  color: white;
  padding: 5px 10px;
  border: 1px solid white;
  font-weight: 600;
  border-radius: 3px;
  font-size: 18px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

nav .container .btn a:hover {
  background-color: white;
  color: #5e7c60;
}

main {
  margin-top: 68px !important;
  background-color: #f9f5f2;
  color: white;
  font-size: 38px;
  font-weight: 800;
  height: 476px;
  overflow-y: hidden;
}

@media screen and (max-width: 1052px) {
  main {
    height: 100%;
    margin-top: 80px;
    padding: 20px;
  }
}

main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow-y: hidden;
}

main .container .left h1 {
  font-size: 4.1vw;
}

@media screen and (max-width: 1052px) {
  main .container .left {
    width: 100% !important;
    text-align: center;
  }
  main .container .left h1 {
    font-size: 36px;
    font-weight: 900;
  }
  main .container .left p {
    text-align: center;
    margin: auto;
    font-size: 14px !important;
    margin-bottom: 15px !important;
  }
  main .container .left a {
    font-size: 12px !important;
    font-weight: 700;
    padding: 5px 8px !important;
    text-decoration: none;
    color: #5e7c60;
    background-color: #f2edd7;
    border-radius: 2px !important;
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  }
  main .container .right {
    display: none;
  }
}

main .container .left {
  width: 60%;
  overflow-y: hidden;
}

main .container .left p {
  width: 80%;
  font-size: 18px;
  font-weight: 500;
  margin-top: 18px;
  margin-bottom: 25px;
}

main .container .left a {
  font-size: 22px;
  font-weight: 700;
  padding: 10px 16px;
  text-decoration: none;
  color: #5e7c60;
  background-color: #f2edd7;
  border-radius: 5px;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

main .container .right img {
  margin-top: 30px;
}

.our-process {
  margin: 50px 0;
}

.our-process h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin: 50px 0;
  color: #5e7c60;
}

.our-process h4 {
  font-size: 40px;
}

.our-process .container.card-our-process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 40px;
          column-gap: 40px;
}

.our-process .container.card-our-process .user, .our-process .container.card-our-process .keluhan, .our-process .container.card-our-process .kategori {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 150px;
  -webkit-box-shadow: 7px 7px rgba(0, 0, 0, 0.25);
          box-shadow: 7px 7px rgba(0, 0, 0, 0.25);
  background-color: #f2edd7;
  border-radius: 5px;
  color: #5e7c60;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.our-process .container.card-our-process .user:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  /* Memperbesar item saat dihover */
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
  /* Menambahkan bayangan saat dihover */
}

.our-process .container.card-our-process .keluhan:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  /* Memperbesar item saat dihover */
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
  /* Menambahkan bayangan saat dihover */
}

.our-process .container.card-our-process .kategori:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  /* Memperbesar item saat dihover */
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
  /* Menambahkan bayangan saat dihover */
}

@media (max-width: 500px) {
  .container.card-our-process {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .container.card-our-process .user, .container.card-our-process .keluhan, .container.card-our-process .kategori {
    margin-bottom: 20px;
  }
}

.category_laporan h2 {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 35px;
  font-size: 36px;
  font-weight: 900;
  color: #5e7c60;
}

@media screen and (max-width: 1052px) {
  .category_laporan h2 {
    font-size: 25px;
  }
}

.category_laporan section.category {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(210px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 50px;
  justify-items: center;
}

.category_laporan section.category div {
  -webkit-box-shadow: 7px 7px rgba(0, 0, 0, 0.25);
          box-shadow: 7px 7px rgba(0, 0, 0, 0.25);
  max-width: 285px;
  height: 285px;
  background-color: #f2edd7;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Untuk mengatur posisi vertical ke tengah */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 27px;
  justify-items: center;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.category_laporan section.category div h3 {
  font-size: 22px;
  color: #5e7c60;
  font-weight: 900;
  margin-top: 11px;
  margin-bottom: 5px;
}

.category_laporan section.category div div:hover h3 {
  font-size: 25px;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.category_laporan section.category div p {
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.category_laporan section.category div:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  /* Memperbesar item saat dihover */
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
  /* Menambahkan bayangan saat dihover */
}

.category_laporan section.category div:hover img {
  width: 160px;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.tim-expert {
  color: #5e7c60;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-top: 60px;
}

.orang-web-crafters {
  color: #5e7c60;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 40px;
}

.container.tim-expert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 150px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(230px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  row-gap: 100px;
  justify-items: center;
}

.tim {
  width: 250px;
  height: 350px;
  background-color: #d9d9d9;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px black;
          box-shadow: 0px 0px 10px black;
}

.tim.reyhan img,
.rafi img,
.dalta img,
.yuma img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

.pre-profil {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.profil {
  margin: auto;
}

.profil .nama {
  margin-top: 10px;
  font-size: 20px;
  color: #5e7c60;
  text-align: center;
}

.profil .jobdesk {
  font-size: 16px;
  color: #5e7c60;
  opacity: 0.7;
  text-align: center;
}

footer {
  background-color: #5e7c60;
  overflow-x: hidden;
}

footer p {
  padding: 14px;
  text-align: center;
  font-size: 15px;
  color: white;
  font-weight: 800;
}

@media screen and (max-width: 1100px) {
  footer p {
    font-size: 12px;
    font-weight: 600;
  }
}

@media screen and (max-width: 1300px) {
  .category_laporan section.category {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(210px, 1fr))[2];
        grid-template-columns: repeat(2, minmax(210px, 1fr));
    gap: 50px;
    justify-items: center;
  }
}

@media screen and (max-width: 650px) {
  .category_laporan section.category {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(210px, 1fr))[1];
        grid-template-columns: repeat(1, minmax(210px, 1fr));
    gap: 50px;
    justify-items: center;
  }
}

@media screen and (max-width: 1300px) {
  .container.tim-expert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 120px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(330px, 1fr))[2];
        grid-template-columns: repeat(2, minmax(330px, 1fr));
    row-gap: 100px;
    justify-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 650px) {
  .container.tim-expert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 120px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(330px, 1fr))[1];
        grid-template-columns: repeat(1, minmax(330px, 1fr));
    row-gap: 100px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*# sourceMappingURL=style.css.map */