@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
/* Gaya untuk elemen global */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f4f4f4;
}


@media only screen and (max-width: 600px) {
  nav {
    background-color: hsla(0, 0%, 100%, 0.568);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 10px 35px 0 rgba(0, 0, 0, .19);
    width: 100%;
    padding-top: 1.5vh;
    padding-bottom: 1.5vh;
    display: block;
    overflow: hidden;
    z-index: 999;
    position: -webkit-fixed;
    position: fixed;
  }

  router-link {
    transition-duration: 0.4s;
    cursor: pointer;
  }

  .logo-nav {
    width: 35vw;
  }

  #home {
    color: #242321;
    float: left;
    padding-top: 5px;
    padding-left: 3vw;
    text-decoration: none
  }

  #layanan {
    color: #444444;
    float: right;
    font-size: smaller;
    padding-top: 15px;
    padding-right: 3vw;
    font-weight: bold;
    text-decoration: none
  }

  #layanan:hover {
    color: rgb(121, 121, 121);
  }

  #layanan:active {
    text-decoration: underline;
  }

  #profil {
    float: right;
    color: #444444;
    font-size: smaller;
    font-weight: bold;
    padding-top: 15px;
    padding-right: 4vw;
    text-decoration: none
  }

  #profil:hover {
    color: rgb(121, 121, 121);
  }

  .h1-hidden {
    /* Menetapkan ukuran font ke yang paling kecil */
    font-size: 8px; /* Anda bisa menyesuaikan ukuran font sesuai keinginan */
    /* Menetapkan warna transparan, menggunakan RGBA */
    color: rgba(0, 0, 0, 0); /* Warna hitam dengan opasitas 0 */
  }

  .h2-title {
    font-size: larger;
    padding-left: 5%;
    padding-right: 5%;
  }

  .call {
    float: right;
    color: #1776c4;
    font-size: smaller;
    font-weight: bold;
    padding-top: 15px;
    padding-right: 3vw;
    text-decoration: none
  }

  .call:hover {
    color: rgb(121, 121, 121);
  }

  .footer {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    color: rgb(226, 226, 226);
    background-color: rgb(53, 53, 53);
    margin-bottom: 0;
    display: block;
    font-size: medium;
  }

  .footer-left {
    text-align: left;
    padding-left: 10%;
    width: 80%;

  }

  .footer-right {
    text-align: left;
    padding-left: 10%;
    padding-top: 10px;
  }
}

@media only screen and (min-width: 600px) {
  nav {
    background-color: hsla(0, 0%, 100%, 0.568);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 10px 35px 0 rgba(0, 0, 0, .19);
    width: 80%;
    left: 8%;
    padding: 20px;
    display: block;
    border-radius: 35px;
    overflow: hidden;
    z-index: 999;
    position: -webkit-fixed;
    position: fixed;
    top: 30px;
  }

  a {
    transition-duration: 0.4s;
    cursor: pointer;
  }

  .logo-nav {
    width: 200px;
  }

  #home {
    color: #242321;
    float: left;
    padding: 1px 10px 1px 30px;
    text-decoration: none
  }

  #layanan {
    color: #242321;
    float: right;
    font-weight: 400;
    padding: 10px 30px 10px 10px;
    text-decoration: none
  }

  #layanan:hover {
    color: rgb(121, 121, 121);
  }

  #layanan:active {
    text-decoration: underline;
  }

  #profil {
    float: right;
    color: #242321;
    font-weight: 400;
    padding: 10px 30px 10px 10px;
    text-decoration: none
  }

  #profil:hover {
    color: rgb(121, 121, 121);
  }

  .h1-hidden {
    /* Menetapkan ukuran font ke yang paling kecil */
    font-size: 8px; /* Anda bisa menyesuaikan ukuran font sesuai keinginan */
    /* Menetapkan warna transparan, menggunakan RGBA */
    color: rgba(0, 0, 0, 0); /* Warna hitam dengan opasitas 0 */
  }

  .call {
    float: right;
    color: #242321;
    font-weight: 400;
    padding: 10px 30px 10px 10px;
    text-decoration: none
  }

  .call:hover {
    color: rgb(121, 121, 121);
  }

  .footer {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    color: rgb(226, 226, 226);
    background-color: rgb(53, 53, 53);
    margin-bottom: 0;
    display: flex;
  }

  .footer-left {
    width: 50%;
    margin-left: 10%;
    text-align: left;
  }

  .footer-right {
    width: 50%;
    margin-right: 10%;
    text-align: right;
    padding-top: 48px;
  }
}