* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Poppins", sans-serif;
  color: #333;
  scroll-behavior: smooth;
  line-height: 1.65;
}
h1,
h2,
h3,
h4,
h5,
p {
  font-weight: normal;
}

h1 {
  font-size: 4.4rem;
}

h2 {
  font-size: 3.4rem;
}

h3 {
  font-size: 2.6rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

p {
  font-size: 1.6rem;
}

a {
  font-size: 1.6rem;
  text-decoration: none;
}

li {
  font-size: 1.6rem;
}

/* To Top Button */
.keAtas {
  font-size: 25px;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  right: 3%;
  bottom: 8%;
  z-index: 99;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}
.keAtas.muncul {
  opacity: 1;
  transform: translateY(0);
}

/* SECTION HEADER */
.header {
  width: 100%;
  height: 12vh;
  font-size: 1.6rem;
}
.isiHeader {
  width: 90%;
  height: 100%;
  /* background: #F98D41; */
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.isiHeader img {
  height: 5rem;
  /* width: 50%; */
}
.navigasi {
  /* width: 40%; */
  /* background: #265499; */
  flex: 1;
}
.navigasi a {
  color: #333;
  font-size: 1.4rem;
}
.navigasi a:hover {
  color: #f98d41;
  /* text-decoration: underline; */
}
.navigasiOne {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  /* gap: 100px; */
  gap: 5rem;
  list-style: none;
  font-weight: 500;
  /* z-index: 999; */
  /* border: 1px solid black; */
}
.navigasiOne li {
  z-index: 999;
}
.navigasiOne li.muncul {
  z-index: inherit;
}

.perusahaan,
.howTo,
.informasi,
.custService {
  position: relative;
}
.linkPerusahaan,
.linkHowTo,
.linkInformasi,
.linkCustService {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.1rem;
}
.linkPerusahaan.active,
.linkHowTo.active,
.linkInformasi.active,
.linkCustService.active {
  color: #f98d41;
}
.triangle {
  font-size: 0.8rem;
}
.navPerusahaan,
.navHowTo,
.navInformasi,
.navCustService {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  width: 30rem;
  list-style: none;
  z-index: -1;
  padding: 10px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  justify-content: flex-start;
  row-gap: 10px;
  transform: translateY(-50px);
  opacity: 0;
  transition: 0.5s all ease;
  font-weight: normal;
}
.navPerusahaan.muncul,
.navHowTo.muncul,
.navInformasi.muncul,
.navCustService.muncul {
  pointer-events: all;
  transform: translateY(0);
  z-index: 11;
  opacity: 1;
}
.navPerusahaan a,
.navHowTo a,
.navInformasi a,
.navCustService a {
  color: #fff;
}
.navPerusahaan a:hover,
.navInformasi a:hover,
.navCustService a:hover {
  text-decoration: none;
  /* color: #fff; */
  width: 100%;
  /* background-color: #265499; */
}
.navLang {
  position: absolute;
  top: 0;
  right: 5%;
  font-weight: 500;
  z-index: 12;
  text-align: right;
}
.navLang a {
  color: #fff;
  font-size: 1.2rem;
}
.navLang a:hover {
  color: #fff;
}
.navLang li {
  list-style: none;
}
.navLang .bahasaAktif {
  /* background: #265499; */
  color: #333;
  /* display: block; */
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 10px;
}
.bahasaAktif .flagIcon {
  border-radius: 5px;
  margin-right: 5px;
  height: 20px;
}
.navLang .bahasaAktif:hover {
  color: #333;
}
.opsiLang {
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50px);
  transition: all 0.5s ease;
  z-index: -1;
}
.opsiLang.muncul {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.listLang {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: 10px;
}
.listLang p {
  color: #fff;
  font-size: 1.2rem;
}
.hamburger {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: inherit;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
}
.hamburger.muncul {
  z-index: 99999999;
  position: fixed;
}
.line {
  width: 100%;
  height: 4px;
  background: #333;
  transition: all 0.5s ease;
}
.line.muncul {
  background: #fff;
}
.line.line2.muncul {
  width: 70%;
  align-self: flex-end;
}
.line.line3.muncul {
  width: 40%;
  align-self: flex-end;
}

@media screen and (max-width: 1012px) {
  /* SECTION NAVIGASI */
  .navigasi a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .navLang {
    top: 4%;
    left: 29px;
    right: unset;
    transform: translateX(5%);
    text-align: left;
  }
  .navLang .bahasaAktif {
    /* background: #265499; */
    color: #fff;
  }
  .navLang .bahasaAktif:hover {
    color: #fff;
  }
  .opsiLang {
    background: inherit;
    padding: 10px;
    position: absolute;
    width: 200px;
    top: 0;
    transform: translateY(0);
    /* transform: translateX(150px); */
    transition: all 1s ease;
  }
  .opsiLang.muncul {
    opacity: 1;
    pointer-events: all;
    /* transform: translateX(200px); */
    transform: translateY(30px);
  }
  .navigasi a {
    color: #fff;
  }
  .navigasiOne {
    top: 0;
    right: 0;
    position: fixed;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    width: 0;
    background-image: linear-gradient(to right, #434343 0%, #000 100%);
    background-color: #434343;
    background: black; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #434343,
      #000
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      #434343,
      #000
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    z-index: 9999999;
    color: #fff;
    padding: 100px 30px;
    margin: 0;
    /* padding: 0; */
    gap: 20px 0;
    opacity: 0;
    transition: all 1s ease;

    pointer-events: none;
    font-weight: 500;
  }
  .navigasiOne.muncul {
    pointer-events: all;
    width: 80%;
    opacity: 1;
  }
  .navigasiOne.bawah {
    padding-top: 150px;
  }
  .navPerusahaan,
  .navHowTo,
  .navInformasi,
  .navCustService {
    padding: 0;
    top: 0;
    top: 10%;
    margin-left: 2rem;
    margin-top: 3rem;
    position: absolute;
    background: unset;
    width: 30rem;
    list-style: none;
    transform: translate(0);
    transform: translateX(-50px);
    transition: all 0.5s ease;
  }
  .linkHowTo,
  .linkInformasi,
  .linkAntiFraud,
  .linkCustService,
  .linkKarir {
    transform: translateY(0);
    display: inline;
    transition: all 0.5s ease;
  }
  .linkHowTo.muncul,
  .linkInformasi.muncul,
  .linkAntiFraud.muncul,
  .linkCustService.muncul,
  .linkKarir.muncul {
    display: block;
    transform: translateY(18rem);
  }
  .hamburger {
    pointer-events: all;
    opacity: 1;
  }
}

/* 800PX */
@media screen and (max-width: 800px) {
  /* SECTION NAVIGASI */
  .brBagaimana {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  /* SECTION NAVIGASI */

  .navigasiOne.muncul {
    width: 90%;
  }
  .navPerusahaan,
  .navHowTo,
  .navInformasi,
  .navCustService,
  .listLang {
    top: 20%;
  }
  .navLang {
    left: 19px;
  }

  .navigasiOne {
    padding-left: 20px;
  }
}

@media screen and (max-width: 450px) {
  /* .navPerusahaan,
  .navInformasi {
    padding: 0;
    top: 0;
    top: 10%;
    margin-left: 200px;
    position: absolute;
    background: unset;
    width: 200px;
    list-style: none;
    transform: translate(0);
    transform: translateX(-50px);
    font-size: 18px;
    transition: all 0.5s ease;
  } */
}

@media screen and (max-width: 350px) {
  /* SECTION NAVIGASI */
  .navLang {
    left: 14px;
  }
  .navigasiOne {
    padding-left: 15px;
  }
  .navPerusahaan,
  .navHowTo,
  .navInformasi,
  .navCustService {
    margin-left: 0.5rem;
    width: 75vw;
  }

  .linkInformasi.muncul,
  .linkKarir.muncul {
    transform: translateY(20rem);
  }
}
