/* RESPONSIVE */
@media (max-width: 1110px) {
  header {
    width: 90%;
  }

  .cta-isi {
    width: 90%;
  }
  .cta h1,
  .cta h3,
  .cta-tombol {
    width: 70%;
  }
  .cta img {
    right: 5%;
  }

  .tentang-isi {
    width: 60%;
  }

  .mengapa-isi {
    width: 90%;
  }

  .layanan-isi {
    width: 90%;
  }

  .tema-lists {
    width: 90%;
  }
  .lihatsemuatema {
    width: 88%;
  }

  .kontak-isi {
    width: 90%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  /* CTA */
  .cta h1,
  .cta h3,
  .cta-tombol {
    width: 80%;
  }
  .cta h1 {
    font-size: 3.5rem;
  }
  .cta h3 {
    font-size: 2rem;
  }
  .cta img {
    right: 2%;
    height: 40rem;
  }
  .btn {
    padding: 1rem;
    width: 18rem;
  }

  /* Mengapa */
  .mengapa-section {
    height: 85rem;
  }
  .isiMengapa {
    width: 50%;
  }

  /* Layanan */
  .layanan {
    height: 100rem;
  }
  .isiL12 {
    width: 45%;
  }

  /* Tema */
  .tema-list {
    width: 40%;
  }
}
@media (max-width: 576px) {
  header {
    height: 10vh;
  }

  .line {
    width: 3rem;
    height: 0.3rem;
    background: #659dbd;
    margin: 0.5rem;
  }
  .line.muncul {
    background: #feffff;
  }

  nav {
    position: relative;
  }

  .hamburger {
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    -webkit-transform: translate(-5%, -50%);
    -ms-transform: translate(-5%, -50%);
    transform: translate(-5%, -50%);
    z-index: 9999;
  }
  .hamburger.muncul {
    position: fixed;
    right: 7%;
    top: 4%;
    -webkit-transform: translate(-7%, -4%);
    -ms-transform: translate(-7%, -4%);
    transform: translate(-7%, -4%);
  }

  .nav-links {
    left: 0;
    top: 0;
    z-index: 999;
    position: fixed;
    background: #659dbd;
    height: 100vh;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    clip-path: circle(10rem at 110% -25%);
    -webkit-clip-path: circle(10rem at 110% -25%);
    -webkit-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
    pointer-events: none;
    cursor: auto;
  }
  .nav-links.muncul {
    clip-path: circle(130rem at 110% -25%);
    -webkit-clip-path: circle(130rem at 110% -25%);
    pointer-events: all;
  }
  .nav-li {
    opacity: 0;
  }
  .nav-li:nth-child(1) {
    -webkit-transition: all 0.5s ease 0.2s;
    -o-transition: all 0.5s ease 0.2s;
    transition: all 0.5s ease 0.2s;
  }
  .nav-li:nth-child(2) {
    -webkit-transition: all 0.5s ease 0.4s;
    -o-transition: all 0.5s ease 0.4s;
    transition: all 0.5s ease 0.4s;
  }
  .nav-li:nth-child(3) {
    -webkit-transition: all 0.5s ease 0.6s;
    -o-transition: all 0.5s ease 0.6s;
    transition: all 0.5s ease 0.6s;
  }
  .nav-li:nth-child(4) {
    -webkit-transition: all 0.5s ease 0.8s;
    -o-transition: all 0.5s ease 0.8s;
    transition: all 0.5s ease 0.8s;
  }
  .nav-li:nth-child(5) {
    -webkit-transition: all 0.5s ease 1s;
    -o-transition: all 0.5s ease 1s;
    transition: all 0.5s ease 1s;
  }
  .nav-li.muncul {
    opacity: 1;
  }

  .nav-li a {
    color: #feffff;
  }
  .nav-li a:hover {
    color: #feffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    text-decoration: underline;
  }

  /* CTA */
  .cta {
    height: 50rem;
  }
  .cta h1,
  .cta h3,
  .cta-tombol {
    width: 90%;
  }
  .cta h1 {
    font-size: 2.5rem;
  }
  .cta img {
    height: 25rem;
  }
  .btn {
    padding: 0.8rem;
    width: 15rem;
  }
  .btn h4 {
    font-size: 1.3rem;
  }

  /* Tentang */
  .tentang-isi {
    width: 80%;
  }

  /* Mengapa */
  .mengapa-section {
    height: 130rem;
  }
  .isiMengapa {
    width: 100%;
  }
  .isiMengapa img {
    height: 10rem;
  }

  /* Layanan */
  .layanan {
    height: 180rem;
  }
  .isiL12 {
    width: 90%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .isiL12Img img {
    height: 5rem;
    margin-right: inherit;
  }

  /* Tema */
  .tema-list {
    width: 97%;
  }

  /* Kontak */
  .kontak-tendabiru,
  .kontak-tautan,
  .kontak-kontak,
  .mediaSosial {
    width: 50%;
  }
}

@media (max-width: 400px) {
  /* Kontak */
  .kontak-tendabiru,
  .kontak-tautan,
  .kontak-kontak,
  .mediaSosial {
    width: 100%;
  }
}

@media (max-width: 300px) {
  html {
    font-size: 50%;
  }

  .cta {
    height: 40rem;
  }
  .cta img {
    display: none;
  }
  .cta-isi {
    text-align: center;
    margin: 0 auto;
  }
  .cta h1,
  .cta h3,
  .cta-tombol {
    width: 100%;
  }
  .btn {
    width: 14rem;
  }
}
