:root {
  --color-blue-primary: #0a209a;
  --color-blue-accent: #68aaff;
  --color-white: #eee;
  --color-blue: #3988DD;

  --size-max-page-width: 1366px;
  --size-navbar-height: 80px;
}

@font-face {
  font-family: spartan;
  src: url("../font/Spartan-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: spartan-semibold;
  src: url("../font/Spartan-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: spartan-bold;
  src: url("../font/Spartan-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: spartan-lite;
  src: url("../font/Spartan-Light.ttf");
  font-display: swap;
}

* {
  box-sizing: border-box;
  transition: all .375s ease;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: spartan;
}

.pjpk-section {
  min-height: 100vh;
  border-bottom: solid 1px #000;
  position: relative;
}

.pjpk-wrapper {
  max-width: var(--size-max-page-width);
  margin: 0 auto;
  position: relative;
}

/* NAVBAR START */
.pjpk-section.navbar {
  background: linear-gradient(
    to right,
    var(--color-blue-primary),
    var(--color-blue-accent)
  );
  min-height: var(--size-navbar-height);
  height: var(--size-navbar-height);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 500;
}

.pjpk-navbar-container {
  display: grid;
  grid-template-columns: 100px 1fr 200px;
  align-items: center;
  justify-items: flex-end;
  height: var(--size-navbar-height);
}
.pjpk-navbar-logo {
  padding: 10px;
}
.pjpk-navbar-logo img {
    max-width: 100%;
    max-height: var(--size-navbar-height);
    height: 60px;
}
.pjpk-navbar-button-group {
}
.pjpk-navbar-button {
    color: var(--color-white);
    text-transform: uppercase;
    font-family: 'spartan-semibold';
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    padding: 15px;
}
.pjpk-navbar-social-group {
  border-left: solid 2px var(--color-white);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.pjpk-navbar-social-button {
  display: block;
  width: 30px;
  height: 30px;
}
.pjpk-navbar-social-button.fb .img {
  width: 30px;
  height: 30px;
}
.pjpk-navbar-social-button.wa .img {
  width: 30px;
  height: 30px;
}
.pjpk-navbar-social-button.ig .img {
  width: 30px;
  height: 30px;
}

/* NAVBAR END */

/* HOME BANNER START */
.pjpk-section.home-banner {
  background-image: url(../image/pexels-mitchell-luo-3685207.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* .pjpk-section.home-banner:after {
    content: "";
    display: block;
    height: 10%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url(../image/asset-landingpage.png);
} */

.pjpk-home-banner-text-container{
    color: var(--color-white);
    display: inline-block;
    margin-top: 35vh;
    margin-left: 20vh;
    border-bottom: solid 2px var(--color-blue-primary);
    padding: 0 0 15px;
}

.pjpk-home-banner-text-container h1 {
    font-size: 6rem;
    font-family: spartan-bold;
}

.pjpk-home-banner-text-container h2 {
    font-size: 2rem;
    font-family: 'spartan-semibold';
    margin-bottom: 10px;
}

.pjpk-home-banner-text-container h2:before {
    content: "";
    border-top: solid 2px var(--color-blue-primary);
    display: block;
    width: 50px;
    margin-bottom: 10px;
}

.pjpk-home-banner-text-container h3 {
    font-size: 2rem;
    font-family: 'spartan-lite';
    margin-bottom: 5px;
}

.pjpk-item-home-banner{
    display: block;
    height: 10%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url(../image/asset-landingpage.png);
}
/* HOME BANNER END */

/* ABOUT US START */
.pjpk-section.about-us {
    background: url("../image/abt-us-1.png") center center no-repeat;
    background-size: cover;
    min-height: 400px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pjpk-section.about-us:after {
    content: "";
    display: block;
    height: 100%;
    background-color: rgba(247, 249, 251, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.pjpk-content-about {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    background: linear-gradient(to right, #1530a6, #61a0f8);
    width: 75%;
    min-height: 70%;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.pjpk-about-us-text {
  color: var(--color-white);
  text-align: center;
  position: relative;
  margin-top: 50px;
  padding: 15px;
}

.pjpk-about-us-text h2 {
    font-family: 'spartan-semibold';
    font-size: 3rem;
    border-bottom: solid 2px var(--color-white);
    position: relative;
    margin-inline-start: 250px;
    margin-inline-end: 250px;
    border-bottom-width: 3px;
}

/* .pjpk-about-us-text h2:after {
    content: "";
    border-top: solid 2px var(--color-white);
    display: block;
    width: 50px;
    margin-bottom: 10px;
} */

.pjpk-about-us-text h4 {
  font-family: 'spartan-lite';
  font-size: 2.5rem;
  margin-top: 30px;
}
/* ABOUT US END */

/* VISI MISI START */
.pjpk-section.visi-misi {
    background: url("../image/visi-misi.png") center center no-repeat;
    background-size: cover;
    min-height: 200px;
    height: 400px;
}

.pjpk-container-visi-misi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 100%;
}

.pjpk-content-visi-misi {
  background-color: var(--color-blue);
  padding: 20px 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.pjpk-content-visi-misi-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr;
    width: 175%;
    align-items: center;
    height: 75%;
    transform: translateX(-500px);
}

.pjpk-item-visi-misi {
    background-color: var(--color-blue-accent);
    color: var(--color-white);
    width: 100%;
    height: 100%;
    padding: 30px;
}

.pjpk-item-visi-misi h5{
  font-family: 'Spartan-Reguler';
  font-size: 3.5rem;
}

.pjpk-item-visi-misi h6{
  font-family: 'Spartan-Reguler';
  font-size: 1.5rem;
  margin-top: 10px;
}

.pjpk-item-visi-misi h5:before {
    content: "";
    border-top: solid 2px var(--color-blue-primary);
    display: block;
    width: 50px;
    margin-top: 25px;
    border-top-width: 3px;
}

#img {
    width: 100%;
    height: 300px;
    position: relative;
}

#img-2 {
    width: 100%;
    height: 300px;
    position: relative;
}

.pjpk-content-visi {
  width: 100px;
  height: 100px;
  background: #68aaff;
}

.pjpk-text-visi {
  font-size: 10px;
  align-items: center;
}
/* VISI MISI END */

/* ABOUT ASO START */
.pjpk-section.about-aso {
    background: white;
    background-size: cover;
    min-height: 250px;
}

.pjpk-container-about-aso {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  height: 100%;
  align-items: center;
  padding: 50px 0;
}

/* .pjpk-content-aso {
  width: 100%;
  height: 100%;
} */

.pjpk-box-aso {
    background: linear-gradient(to right, #5a95f0, #2447b6);
    width: 106%;
    height: 70%;
    border-radius: 50px;
    text-align: right;
    color: white;
    padding: 50px;
    transform: translateX(-43px);
}

.pjpk-box-aso h5{
  font-family: 'Spartan-Bold';
  font-size: 2.5rem;
}

.pjpk-box-aso h6{
  font-family: 'Spartan-Reguler';
  font-size: 1.5rem;
}

#imgAso {
    width: 100%;
    height: 100%;
}

.pjpk-box-aso h5:before {
    content: "";
    border-top: solid 2px var(--color-blue-accent);
    display: block;
    width: 50px;
    border-top-width: 3px;
    position: relative;
    margin-left: 597px;
    margin-bottom: 15px;
}
/* ABOUT ASO END */

/* MANFAAT ASO START */
.pjpk-section.manfaat-aso {
    background: url("../image/manfaat.png") center center no-repeat;
    background-size: cover;
    min-height: 250px;
    height: 500px;
}

.pjpk-container-manfaat-aso {
    display: grid;
    grid-template-columns: 300px 1fr;
    position: relative;
    height: 100%;
    padding-top: 50px;
}

.pjpk-text-manfaat-aso{
  display: block;
  padding: 30px;

}

.pjpk-text-manfaat-aso h3{
  font-family: 'Spartan-Bold';
  font-size: 3rem;
}

.pjpk-text-manfaat-aso h3:before{
    content: "";
    border-top: solid 2px var(--color-blue-primary);
    display: block;
    width: 50px;
    border-top-width: 3px;
    position: relative;
    margin-bottom: 15px;
}

.pjpk-content-manfaat {
    padding: 70px;
    background: #3988ed;
    border-radius: 10px;
    height: 50%;
}

.pjpk-item-manfaat {
    display: grid;
    grid-template-columns: 300px 300px 300px;
    height: 100%;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.pjpk-box-manfaat {
    background: #68aaff;
    height: 340px;
    width: 250px;
    border-radius: 10px;
}

.pjpk-box-manfaat h5{
  font-family: 'Spartan-Bold';
  font-size: 11rem;
  color: var(--color-blue);
}

.pjpk-box-manfaat h5{
  font-family: 'Spartan-Bold';
  font-size: 11rem;
  color: var(--color-blue);
  padding: 10px;
}

.pjpk-box-manfaat h6{
  font-family: 'Spartan-Lite';
  font-size: 2rem;
  color: var(--color-white);
  text-align: center;
  padding: 10px;
}
/* MANFAAT ASO END */

/* LAYANAN ASO START */

.pjpk-section.layanan-aso {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 255px;
  height: 550px;
  position: relative;
}

.pjpk-container-layanan {
    background: linear-gradient(to right, #355fc8, #61a0f8);
    background-size: cover;
    height: 550px;
}

#img-layanan {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pjpk-content-layanan {
    position: absolute;
    left: 50%;
    top: 0;
    width: 120%;
    height: 550px;
    background-color: var(--color-blue-accent);
    opacity: 0.6;
}

.pjpk-decoration-layanan {
  position: absolute;
  top: 20px;
  width: 85%;
  height: 510px;
  border: 3px solid var(--color-white);
  border-radius: 20px;
  left: -15px;
}

.pjpk-item-grid-layanan {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 250px;
    position: absolute;
    padding: 0;
    top: 15%;
    left: 5%;
}

.pjpk-text-layanan {
    font-family: 'Sparta-Reguler';
    font-size: 2.5rem;
    padding: 30px;
    color: var(--color-white);
    line-height: 50px;
}

.pjpk-text-layanan li {
  font-size: 3rem;
  font-family: 'Sparta-SemiBold';
  color: var(--color-white);
  letter-spacing: 10px;
  padding: 10px;
  border-right: 3px solid var(--color-blue-accent);
}

.pjpk-text-layanan-2 {
  display: block;
  left: 200px;
  top: 100px;
  position: absolute;
  padding: 40px 0px;
  height: 200px;
  width: 183px;
}

.pjpk-text-layanan-2 h3 {
  font-family: 'Sparta-SemiBold';
  font-size: 3rem;
  color: var(--color-white);
}

.pjpk-text-layanan-2 h4 {
  font-family: 'Sparta-Reguler';
  font-size: 2rem;
  color: var(--color-white);
}

.pjpk-text-layanan-2 h3:before{
  content: "";
  display: block;
  border-top: 3px solid var(--color-blue-primary);
  margin-inline-start: 120px;
}
/* LAYANAN ASO END */

/* JARINGAN START */
.pjpk-section.jaringan {
  background: url("../image/INDO-MAPS-02.png") center center no-repeat;
  background-size: cover;
  padding: 65px;
  min-height: 255px;
  height: 550px;
  position: relative;
}

.pjpk-decoration-jairngan {
  position: absolute;
  top: 20px;
  width: 85%;
  height: 510px;
  border: 3px solid var(--color-blue-accent);
  border-radius: 20px;
  left: -15px;
}

.pjpk-content-jaringan {
  width: 100%;
  padding: 10px;
  height: 399px;
  align-items: center;
}

.pjpk-text-jaringan {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-white);
}
/* JARINGAN END */

/* CONTACT START */
.pjpk-section.contact {
  background: white;
  background-size: cover;
  min-height: var(--size-contact-height);
}

#img-peta{
  width: 500px;
  height: 294px;
}

.pjpk-box-peta {
  padding: 70px;
  margin-top: -316px;
  background: linear-gradient(to right, #5a95f0, #2447b6);
  height: 31%;
  margin-left: 236px;
  margin-right: -65px;
  text-align: left;
  font-size: 11px;
  color: white;
}

.pjpk-container-contact {
  display: grid;
  grid-template-columns: 50% 50%;
}

.pjpk-content-contact {
  float: left;
  width: 100%;
  padding: 10px;
  height: 399px;
  background: url("../image/Image 1.jpg") center center no-repeat;
}

.pjpk-content-contact-2 {
  float: left;
  width: 100%;
  padding: 10px;
  height: 399px;
  background: linear-gradient(to right, #5a95f0, #2447b6);
}

.pjpk-text-contact {
  font-size: 1.2rem;
  color: var(--color-white);
}
/* CONTACT END */

/* FOOTER START */
.pjpk-section.footer {
  background: linear-gradient(to right, #122ba2, #68aaff );
  padding: 65px;
  min-height: var(--size-about-us-height);
}

.pjpk-container-footer {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  align-items: center;
}

#logo {
  width: 140px;
  height: 116px;
  border-radius: 60px;
}

#pjpkTextFooter {
  font-size: 2.2rem;
  color: var(--color-white);
}

.pjpk-text-content {
  font-size: 1.2rem;
  color: var(--color-white);
}
/* FOOTER END */

/* PRIVACY POLICY START*/
.pjpk-section-privacy-policy {
  min-height: 100vh;
  border-bottom: solid 1px #000;
}

.pjpk-wrapper-privacy-policy {
  max-width: var(--size-max-page-width);
  margin: 0 auto;
}

.pjpk-container-privacy-policy {
  align-items: center;
  justify-items: left;
  padding: 100px;
}

.pjpk-item-privacy-policy {
  text-align: justify;
  font-size: 2rem;
}
li {
  line-height: 3rem;
}
.bg-pp {
  position: absolute;
  width: 400px;
  user-select: none;
  z-index: -1;
}

.bg-pp.top-right {
  top: 0;
  right: 0;
}

.bg-pp.top-right-1 {
  top: 150%;
  right: 0;
}

.bg-pp.top-right-2 {
  top: 300%;
  right: 0;
}

.bg-pp.top-right-3 {
  top: 450%;
  right: 0;
}

.bg-pp.top-right-4 {
  top: 600%;
  right: 0;
}

.bg-pp.top-right-5 {
  top: 750%;
  right: 0;
}

.bg-pp.top-right-6 {
  top: 900%;
  right: 0;
}

.bg-pp.top-right-7 {
  top: 1050%;
  right: 0;
}

.bg-pp.bottom-left {
  bottom: 0;
  left: 0;
}

.bg-pp.bottom-left-1 {
  bottom: -150%;
  left: 0;
}

.bg-pp.bottom-left-2 {
  bottom: -300%;
  left: 0;
}

.bg-pp.bottom-left-3 {
  bottom: -450%;
  left: 0;
}

.bg-pp.bottom-left-4 {
  bottom: -600%;
  left: 0;
}

.bg-pp.bottom-left-5 {
  bottom: -750%;
  left: 0;
}

.bg-pp.bottom-left-6 {
  bottom: -900%;
  left: 0;
}
/* PRIVACY POLICY END */
