@import url("https://use.typekit.net/gdk8qyo.css");
:root {
  --brand-lighter: #f6e292;
  --brand-light: #fbf0c9;
  --brand-primary: rgba(31, 66, 155, 80%);
  --brand-dark: #D63200;
  --brand-darker: #B22A00;
  --brand-secondary: #222B45;
  --bg-vly: #4BA9D3;
  --neutral100: #F9FAFB;
  --neutral200: #F4F6F8;
  --neutral300: #DFE3E8;
  --neutral400: #C4CDD5;
  --neutral500: #919EAB;
  --neutral600: #637381;
  --neutral700: #454F5B;
  --neutral800: var(--brand-secondary);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-size: 1rem;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--neutral600);
}

#root {
  width: 100vw;
  position: relative;
  overflow-x: hidden;
  transition: opacity 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  letter-spacing: -0.8px;
}

h2, h3 {
  color: var(--brand-secondary);
}

h1 {
  font-size: 3rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--neutral600);
  text-rendering: optimizeLegibility;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  text-rendering: optimizeLegibility;
}

ul li {
  list-style: none;
}

img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.gradient {
  background: linear-gradient(166.83deg, #537add 2.11%, #1f429b 62.55%);
}

.bg-orange-light {
  background-color: var(--brand-lighter);
}

.text-color-white {
  color: #ffffff;
}

.text-color-primary {
  color: var(--brand-primary);
}

.text-color-secondary {
  color: var(--brand-secondary);
}

.text-color-neutral {
  color: var(--neutral600);
}

.wrapper992 {
  width: 100%;
  height: auto;
  max-width: 992px;
  padding: 0 16px;
  margin: 0 auto;
  position: relative;
}

.wrapper992-company {
  width: 100%;
  height: auto;
  max-width: 992px;
  padding: 0 16px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .wrapper992-company {
    padding: 0;
  }
}

.outer-wrapper1152 {
  width: 100%;
  height: auto;
  max-width: 1152px;
  margin: 0 auto;
  padding: 96px 0;
  position: relative;
}

.bg-white-rounded-overlap {
  background-color: #ffffff;
  padding: 32px;
  margin-top: -80px;
  border-radius: 24px 24px 0 0;
}
@media screen and (max-width: 534px) {
  .bg-white-rounded-overlap {
    margin-top: -60px;
  }
}

.img100 {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.img50 {
  width: 50%;
}
@media screen and (max-width: 800px) {
  .img50 {
    width: 90%;
  }
}

.max700 {
  width: 100%;
  max-width: 700px;
}

.imgwrp {
  overflow: hidden;
  transform: translate(32px, -32px);
  border-radius: 0 16px 16px 16px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .imgwrp {
    transform: none;
    border-radius: 16px;
  }
}
.imgwrp img {
  object-fit: cover;
}

.dflex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .dflex {
    flex-direction: column;
  }
}

.spacebetween {
  justify-content: space-between;
}

.justify-center {
  justify-content: center !important;
}

.flex-end {
  justify-content: flex-end;
}
.flex-end fieldset {
  width: auto;
}

.flex-start {
  align-items: flex-start;
}

.col50 {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .col50 {
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  .mobile-hide {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .mobile-column {
    flex-direction: column;
  }
}
.mt-48 {
  margin-top: 48px;
}

.space72 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.bg-brand-lighter {
  background-color: var(--brand-lighter);
}

.shadow-large {
  box-shadow: -30px 20px 50px rgba(0, 0, 0, 0.1);
}

.headroom {
  will-change: transform;
  transition: all 300ms linear;
}

.headroom--pinned {
  transform: translateY(0%);
  background-color: var(--brand-primary);
}

.headroom--unpinned {
  transform: translateY(-100%);
}

.headroom--not-top {
  background-color: var(--bg-vly);
}

.headroom--top {
  background-color: transparent;
}

.headroom--not-top.headroom--not-bottom {
  transform: translateY(-100%);
}

.headroom--not-top.headroom--not-bottom.headroom--pinned {
  transform: translateY(0);
}

.nav-invert.headroom {
  will-change: transform;
  transition: all 300ms linear;
}

.nav-invert.headroom--pinned {
  transform: translateY(0%);
  background-color: #ffffff;
}

.nav-invert.headroom--unpinned {
  transform: translateY(-100%);
}

.nav-invert.headroom--not-top {
  background-color: #ffffff;
}

.nav-invert.headroom--top {
  background-color: transparent;
}

.nav-invert.headroom--not-top.headroom--not-bottom {
  transform: translateY(-100%);
}

.nav-invert.headroom--not-top.headroom--not-bottom.headroom--pinned {
  transform: translateY(0);
}

.title-icon {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .title-icon img.checkmark {
    width: 32px;
  }
}
.title-icon svg {
  width: 48px;
  height: 48px;
  margin-right: 8px;
}
@media screen and (max-width: 1000px) {
  .title-icon svg {
    width: 32px;
  }
}

.subtitle {
  font-weight: 500;
  color: var(--brand-secondary);
}

.bodycopy {
  width: 100%;
  margin: 24px 0;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .bodycopy {
    padding-right: 24px;
    line-height: 1.75;
  }
}

.text-center {
  text-align: center;
}

.center680 {
  text-align: center;
  max-width: 680px;
  margin: 24px auto;
}

.bg-primary {
  background-color: var(--brand-primary);
}

.bg-white {
  background-color: #ffffff !important;
}

nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
nav .nav-mobile {
  display: none;
  height: auto;
  cursor: pointer;
  z-index: 100;
  -webkit-tap-highlight-color: transparent;
}
@media only screen and (max-width: 1000px) {
  nav .nav-mobile {
    display: block;
  }
}
nav .nav {
  width: 100%;
  height: 68px;
  max-width: 992px;
  padding: 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav #logo {
  width: auto;
  z-index: 100;
}
nav #logo svg {
  width: 140px;
  height: auto;
}
@media screen and (max-width: 768px) {
  nav #logo svg {
    width: 120px;
  }
}
nav ul.nav-items {
  width: 65%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1000px) {
  nav ul.nav-items {
    width: 100%;
    height: auto;
    position: absolute;
    top: 68px;
    left: 0;
    z-index: 90;
    padding: 24px;
    display: flex;
    flex-direction: column;
    background-color: var(--brand-primary);
    opacity: 0;
    transform: translateY(-100%);
    border-radius: 0 0 24px 24px;
    box-shadow: 0px 16px 16px rgba(10, 22, 70, 0.1), 0px 0px 1px rgba(10, 22, 70, 0.06);
  }
}
nav ul.nav-items li.nav-item {
  list-style: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1000px) {
  nav ul.nav-items li.nav-item {
    margin: 16px 0;
  }
}
nav ul.nav-items li.nav-item a {
  color: white;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  nav ul.nav-items li.nav-item a {
    font-size: 1.5rem;
  }
}
nav ul.nav-items li.nav-item:last-child::before {
  content: "";
  width: 1px;
  height: 32px;
  display: inline-block;
  margin-right: 20px;
  background-color: var(--brand-light);
}
@media screen and (max-width: 1000px) {
  nav ul.nav-items li.nav-item:last-child::before {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  nav ul.nav-items li.nav-item:last-child {
    border-top: 1px solid var(--brand-light);
    width: 100%;
    padding: 24px 0;
  }
}
nav .lk-link {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  nav .lk-link {
    width: 100%;
    display: flex;
  }
}
nav .lk-link span:nth-child(1) {
  font-size: 0.8rem;
  margin-bottom: 4px;
}
nav .lk-link span:nth-child(2) {
  font-size: 1rem;
}
@media screen and (max-width: 1000px) {
  nav .lk-link span:nth-child(2) {
    font-size: 1.25rem;
  }
}
nav .lk-link .layanan-konsumen {
  font-weight: 400;
}
nav .lk-link .cs-phone {
  font-weight: 700;
}
nav .icon-nav {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

nav.nav-invert {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
nav.nav-invert .nav-mobile {
  display: none;
  height: auto;
  cursor: pointer;
  z-index: 100;
  -webkit-tap-highlight-color: transparent;
}
@media only screen and (max-width: 1000px) {
  nav.nav-invert .nav-mobile {
    display: block;
  }
}
nav.nav-invert .nav {
  width: 100%;
  height: 68px;
  max-width: 992px;
  padding: 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.nav-invert #logo {
  width: auto;
  z-index: 100;
}
nav.nav-invert #logo svg {
  width: 140px;
  height: auto;
}
@media screen and (max-width: 768px) {
  nav.nav-invert #logo svg {
    width: 120px;
  }
}
nav.nav-invert ul.nav-items {
  width: 65%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1000px) {
  nav.nav-invert ul.nav-items {
    width: 100%;
    height: auto;
    position: absolute;
    top: 68px;
    left: 0;
    z-index: 90;
    padding: 24px;
    display: flex;
    flex-direction: column;
    background-color: var(--brand-primary);
    opacity: 0;
    transform: translateY(-100%);
    border-radius: 0 0 24px 24px;
    box-shadow: 0px 16px 16px rgba(10, 22, 70, 0.1), 0px 0px 1px rgba(10, 22, 70, 0.06);
  }
}
nav.nav-invert ul.nav-items li.nav-item {
  list-style: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1000px) {
  nav.nav-invert ul.nav-items li.nav-item {
    margin: 16px 0;
  }
}
nav.nav-invert ul.nav-items li.nav-item a {
  color: var(--brand-secondary);
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  nav.nav-invert ul.nav-items li.nav-item a {
    font-size: 1.5rem;
  }
}
nav.nav-invert ul.nav-items li.nav-item:last-child::before {
  content: "";
  width: 1px;
  height: 32px;
  display: inline-block;
  margin-right: 20px;
  background-color: var(--brand-light);
}
@media screen and (max-width: 1000px) {
  nav.nav-invert ul.nav-items li.nav-item:last-child::before {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  nav.nav-invert ul.nav-items li.nav-item:last-child {
    border-top: 1px solid var(--brand-light);
    width: 100%;
    padding: 24px 0;
  }
}
nav.nav-invert .lk-link {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  nav.nav-invert .lk-link {
    width: 100%;
    display: flex;
  }
}
nav.nav-invert .lk-link span:nth-child(1) {
  font-size: 0.8rem;
  margin-bottom: 4px;
}
nav.nav-invert .lk-link span:nth-child(2) {
  font-size: 1rem;
}
@media screen and (max-width: 1000px) {
  nav.nav-invert .lk-link span:nth-child(2) {
    font-size: 1.25rem;
  }
}
nav.nav-invert .lk-link .layanan-konsumen {
  font-weight: 400;
}
nav.nav-invert .lk-link .cs-phone {
  font-weight: 700;
}
nav.nav-invert .icon-nav {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.rounded-bottom {
  border-radius: 0 0 48px 48px !important;
}

.mt-overlap {
  margin-top: -500px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .mt-overlap {
    margin-top: -550px;
  }
}
@media screen and (max-width: 640px) {
  .mt-overlap {
    margin-top: -490px;
  }
}
.mt-overlap .img50 {
  transform: translateX(-4%);
}
@media screen and (max-width: 1000px) {
  .mt-overlap .img50 {
    width: 80%;
  }
}

.float-badge {
  width: 25%;
  height: auto;
  position: absolute;
}
@media screen and (max-width: 1000px) {
  .float-badge {
    position: relative;
    height: 100%;
  }
}

.b-lacak {
  top: 160px;
  left: 0;
}

.b-jadwal {
  width: 25%;
  top: 250px;
  left: 56px;
}

.b-biaya {
  top: 390px;
  left: 2%;
}

.b-koli {
  top: 160px;
  right: 5%;
}

.b-akunbisnis {
  width: 25%;
  top: 280px;
  right: 0;
}

.b-asuransi {
  width: 25%;
  top: 390px;
  right: 5%;
}

@media screen and (max-width: 1000px) {
  .b-lacak, .b-jadwal, .b-biaya, .b-koli, .b-akunbisnis, .b-asuransi {
    position: relative;
    top: 0;
    left: 0;
    width: 40% !important;
  }
}

@media screen and (max-width: 1000px) {
  .badge-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.text-wrap {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .text-wrap h1 {
    font-size: 2.5rem;
  }
}

.push-top {
  margin-top: -240px;
}
@media screen and (max-width: 1000px) {
  .push-top {
    margin-top: 0;
  }
}

.bg-white {
  background-color: white;
}

.outer-wrapper-hero {
  height: 80vh;
  min-height: 656.8px;
  border-radius: 0 0 48px 0;
}
@media screen and (max-width: 1000px) {
  .outer-wrapper-hero {
    height: 150%;
    border-radius: 0;
    overflow: hidden;
  }
}

.outer-wrapper-hero-medium {
  height: 50vh;
  border-radius: 0 0 48px 48px;
}
@media screen and (max-width: 1000px) {
  .outer-wrapper-hero-medium {
    height: 150%;
    border-radius: 0;
    overflow: hidden;
  }
}

section#hero {
  height: 80vh;
  min-height: 656.8px;
}
@media screen and (max-width: 1000px) {
  section#hero {
    height: 150%;
  }
}
@media screen and (max-width: 1000px) {
  section#hero #hero .dflex {
    flex-direction: column;
  }
}
section#hero .hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--brand-lighter);
}
@media screen and (max-width: 1000px) {
  section#hero .hero-subtitle {
    font-size: 1.125rem;
  }
}
section#hero h1 {
  margin: 16px 0;
  font-size: 3rem;
  color: white;
}
@media screen and (max-width: 1000px) {
  section#hero h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
}
section#hero p {
  color: var(--brand-lighter);
  line-height: 1.75;
}
section#hero .hero-left {
  width: 60%;
  height: 80vh;
  min-height: 656.8px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  section#hero .hero-left {
    width: 100%;
    height: 100%;
    padding-top: 120px;
    justify-content: flex-start;
  }
}
section#hero .hero-left .hero-text {
  height: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  section#hero .hero-left .hero-text {
    height: auto;
    min-height: 100%;
    justify-content: center;
    text-align: center;
  }
}
section#hero .hero-right {
  width: 40%;
  height: auto;
  position: relative;
}
@media screen and (max-width: 1000px) {
  section#hero .hero-right {
    width: 100%;
    height: 500px;
  }
}
section#hero .hero-right .phone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%);
  z-index: 88;
}
@media screen and (max-width: 800px) {
  section#hero .hero-right .phone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -30px;
  }
}
section#hero .hero-right .screen {
  width: 248px;
  height: 438px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -56%);
  z-index: 98;
}
@media screen and (max-width: 1000px) {
  section#hero .hero-right .screen {
    display: flex;
  }
}

.bg-hero {
  background: url("image/bg_banner.png") no-repeat center center;
  background-size: cover;
}

.hero-medium {
  height: 50vh !important;
}

.hero-center {
  width: 100%;
  height: 100%;
  text-align: center;
}
.hero-center span, .hero-center h1 {
  color: #ffffff;
}
.hero-center h1 {
  margin-top: 24px;
}
@media screen and (max-width: 1000px) {
  .hero-center {
    padding-top: 130px;
  }
}

#hero.hero-soft {
  width: 100%;
  height: 240px;
  display: block;
}

.hero-button {
  margin-bottom: -24px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  .hero-button {
    width: 100%;
    flex-direction: column;
    margin-bottom: 0;
    margin-top: 24px;
  }
}

#lanjut {
  width: 24px;
  height: 24px;
  margin-left: 24px;
  transition: all 0.3s ease-in-out;
}

#playstore {
  margin-right: 16px;
  transition: all 0.3s ease-in-out;
}

a.button {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: white;
  padding: 8px 24px;
  border-radius: 8px;
  margin-right: 24px;
  height: 56px;
  box-shadow: 0px 16px 16px rgba(10, 22, 70, 0.1), 0px 0px 1px rgba(10, 22, 70, 0.06);
  transition: all 0.3s ease-in-out;
  border: 2px solid white;
}
@media screen and (max-width: 1000px) {
  a.button {
    width: 100%;
    margin-top: 24px;
  }
}

a.button:hover {
  border-color: var(--brand-light);
  background-color: var(--brand-lighter);
  box-shadow: 0px 32px 32px rgba(10, 22, 70, 0.05), 0px 0px 1px rgba(10, 22, 70, 0.06);
}
a.button:hover #lanjut {
  transform: scale(1.2);
}

a.button-secondary {
  background-color: var(--brand-secondary);
  color: white;
  border-color: var(--brand-secondary);
}

a.button-secondary:hover {
  background-color: #323f67;
  border-color: var(--brand-secondary);
}
a.button-secondary:hover #playstore {
  transform: scale(1.1);
}

.bg-radial {
  background: url("image/radial.0d76dc58_2.svg") no-repeat center center;
  background-size: cover;
}

#layanan {
  width: 100%;
  height: auto;
  background: #1F429B;
  background: linear-gradient(90deg, #1F429B 0%, #1F429B 50%, white 50%, white 100%);
  position: relative;
  overflow-x: hidden;
}
#layanan .layanan-inner-wrapper {
  display: flex;
  width: 100%;
  height: auto;
  max-width: 992px;
  padding: 0 16px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  #layanan .outer-wrapper1152 {
    padding: 56px 0;
  }
}
#layanan .left-column {
  width: 50%;
  height: auto;
  margin-right: 24px;
}
@media screen and (max-width: 1000px) {
  #layanan .left-column {
    width: 100%;
  }
}
#layanan .right-column {
  position: absolute;
  top: 0;
  right: -25vw;
  width: 80%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#layanan .right-column img {
  width: 80%;
  margin-left: 48px;
}
@media screen and (max-width: 1000px) {
  #layanan .right-column {
    display: none;
  }
}
#layanan .corner {
  display: none;
}
@media screen and (min-width: 1068px) {
  #layanan .corner {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
}
#layanan .layanan-antarstation, #layanan .layanan-sewa {
  width: 100%;
  max-width: 500px;
  margin: 48px 0;
  position: relative;
}
@media screen and (max-width: 1000px) {
  #layanan .layanan-antarstation, #layanan .layanan-sewa {
    margin: 32px 0;
  }
}
@media screen and (max-width: 1000px) {
  #layanan .layanan-antarstation {
    padding: 32px 0;
    border-top: 1px solid var(--neutral300);
    border-bottom: 1px solid var(--neutral300);
  }
}
#layanan h3 {
  color: var(--brand-primary);
  margin-bottom: 8px;
}
#layanan .layanan-feat {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  #layanan .layanan-feat {
    justify-content: space-between;
  }
}
#layanan .layanan-feat li {
  width: 50%;
  margin-bottom: 16px;
  height: 24px;
}
@media screen and (max-width: 1000px) {
  #layanan .layanan-feat li {
    width: 100%;
  }
}
#layanan .layanan-feat img.icon-small {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
#layanan .icon {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  box-shadow: 0px 6px 15px rgba(10, 22, 70, 0.1), 0px 0px 1px rgba(10, 22, 70, 0.06);
  border-radius: 4px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1280px) {
  #layanan .icon {
    position: absolute;
    top: 0;
    left: -152px;
  }
}
@media screen and (max-width: 1000px) {
  #layanan .icon {
    margin-bottom: 32px;
  }
}

section#keunggulan {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #222b45;
  background: linear-gradient(90deg, #222b45 0%, #222b45 50%, #ffefe6 50%, #ffefe6 100%);
}
@media screen and (max-width: 1000px) {
  section#keunggulan {
    height: 100%;
  }
}
section#keunggulan .wrapper-section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  section#keunggulan .wrapper-section {
    height: 100%;
  }
}
section#keunggulan .keunggulan-left {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  section#keunggulan .keunggulan-left {
    width: 100%;
    height: auto;
    margin-bottom: 48px;
  }
}
section#keunggulan .keunggulan-right {
  width: 50%;
  margin-left: 24px;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  section#keunggulan .keunggulan-right {
    width: 100%;
    padding: 0 16px;
  }
}
section#keunggulan .keunggulan-right .keunggulan-item {
  padding-right: 24px;
}
section#keunggulan h2 {
  color: var(--brand-primary);
  margin-bottom: 48px;
}
section#keunggulan .keunggulan-list-title {
  margin: 16px 0;
}
section#keunggulan li:not(:last-child) {
  margin-bottom: 32px;
}
section#keunggulan .list-active {
  opacity: 1;
}
section#keunggulan #slide-container {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: var(--brand-secondary);
  overflow: hidden;
  border-radius: 16px;
  margin-left: -112px;
}
@media screen and (max-width: 1000px) {
  section#keunggulan #slide-container {
    margin: 0;
    width: 90%;
    height: 300px;
  }
}
section#keunggulan .slide-element {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 8;
}
section#keunggulan .slide-element .slide-image {
  opacity: 1;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1000px) {
  section#keunggulan .slide-element .slide-image {
    width: 100%;
    object-fit: cover;
  }
}
section#keunggulan .slide-element .slide-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(34, 43, 96, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
section#keunggulan .slide-element .slide-icon svg {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 1000px) {
  section#keunggulan .slide-element .slide-icon {
    display: none;
  }
}
section#keunggulan #slide-container .slide-element.active {
  z-index: 10;
}
section#keunggulan #slide-container .slide-element.last-active {
  z-index: 9;
}
section#keunggulan .keunggulan-list .keunggulan-item.active .checkmark {
  opacity: 1;
}
section#keunggulan .checkmark {
  margin-right: 16px;
  opacity: 0.2;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1000px) {
  section#keunggulan .checkmark {
    opacity: 1;
  }
}
section#keunggulan .mbg {
  position: absolute;
  top: -32px;
  right: -24px;
  z-index: 2;
  width: 400px;
  opacity: 0.5;
}

section#station {
  width: 100%;
  overflow: hidden;
}
section#station .wrapper-section {
  width: 100vw;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  section#station .wrapper-section {
    flex-direction: column;
  }
}
section#station .station-left {
  width: 30%;
}
@media screen and (max-width: 1000px) {
  section#station .station-left {
    width: 100%;
  }
}
section#station .station-left .station-list .station-active a {
  color: var(--brand-primary);
}
@media screen and (max-width: 1000px) {
  section#station .station-left .station-list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1000px) {
  section#station .station-left .station-list li {
    width: 50%;
    margin: 8px 0;
  }
}
section#station .station-left .station-list li a {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-secondary);
  line-height: 1.6;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1000px) {
  section#station .station-left .station-list li a {
    font-size: 1rem;
  }
}
section#station .station-left .station-list li a:hover {
  color: var(--brand-primary);
}
section#station .station-right {
  background-color: var(--neutral300);
  margin-left: 24px;
  width: 50%;
  min-width: 900px;
}
@media screen and (max-width: 1000px) {
  section#station .station-right {
    width: calc(100% - 32px);
    min-width: 100px;
    height: 300px;
    margin-left: 0;
    margin-top: 24px;
  }
}
section#station #station-map {
  height: 500px;
  z-index: 80;
}
@media screen and (max-width: 1000px) {
  section#station #station-map {
    height: 300px;
  }
}

section#faq .accordion {
  width: 100%;
  margin: 48px 0;
}
section#faq .accordion-header,
section#faq .accordion-body {
  background: white;
}
section#faq .accordion-header {
  padding: 1rem;
  background-color: #F9FAFB;
  color: #222B45;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section#faq .accordion-header span {
  width: 90%;
}
@media screen and (max-width: 530px) {
  section#faq .accordion-header {
    font-size: 14px;
  }
}
section#faq .accordion__item {
  margin-bottom: 16px;
}
section#faq .accordion__item .accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
section#faq .accordion-header:hover {
  background: #84a0e6;
  position: relative;
  z-index: 5;
}
section#faq .accordion-body {
  background: #fcfcfc;
  color: #353535;
  display: none;
}
section#faq .accordion-body p {
  font-size: 14px;
  line-height: 1.5;
  max-width: 680px;
}
section#faq .accordion-body p span {
  font-weight: 700;
}
section#faq .accordion-body__contents {
  padding: 1rem;
  font-size: 0.85em;
}
section#faq .accordion__item.active:last-child .accordion-header {
  border-radius: none;
}
section#faq .accordion:first-child > .accordion__item > .accordion-header {
  border-bottom: 1px solid transparent;
}
section#faq .accordion__item > .accordion-header:after {
  content: "";
  background: url("/chevron.54d713ca.svg") no-repeat center center;
  width: 24px;
  height: 24px;
  float: right;
  display: block;
  transition: 0.3s all;
  transform: rotate(0deg);
}
section#faq .accordion__item.active > .accordion-header:after {
  transform: rotate(-180deg);
}
section#faq .accordion__item.active .accordion-header {
  background: #1F429B;
  color: white;
}
section#faq .accordion__item .accordion__item .accordion-header {
  background: #f1f1f1;
  color: #353535;
}

footer {
  background-color: var(--neutral100);
  margin-top: 96px;
  border-top: 1px solid var(--neutral300);
  font-size: 14px;
  position: relative;
}
footer .left-footer {
  display: flex;
  width: 70%;
}
@media screen and (max-width: 1000px) {
  footer .left-footer {
    width: 100%;
    max-width: 500px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1000px) {
  footer .left-footer ul {
    width: 100%;
    margin: 16px 0;
    text-align: center;
  }
}
footer .left-footer ul li {
  line-height: 1.8;
}
footer .left-footer ul li:first-child {
  margin-bottom: 8px;
  font-weight: 500;
}
footer .left-footer ul li a {
  color: var(--neutral500);
  transition: all 0.3s ease-in-out;
}
footer .left-footer ul li a:hover {
  color: var(--brand-primary);
}
footer .left-footer ul.footer-layanan {
  margin-right: 80px;
}
@media screen and (max-width: 1000px) {
  footer .left-footer ul.footer-layanan {
    margin-right: 0;
  }
}
footer .right-footer {
  width: 30%;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  footer .right-footer {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 48px;
  }
}
footer .right-footer svg {
  width: 100%;
}
footer .bottom-footer {
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid var(--neutral300);
  font-size: 12px;
}
@media screen and (max-width: 1000px) {
  footer .bottom-footer > .dflex {
    align-items: center;
    flex-direction: column-reverse;
  }
}
footer .bottom-footer-left {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  footer .bottom-footer-left {
    align-items: center;
  }
}
footer .bottom-footer-left .logo-footer {
  margin-bottom: 16px;
}
footer .bottom-footer-right .ikuti-kami {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  footer .bottom-footer-right {
    margin-bottom: 48px;
  }
}
footer ul.socmed {
  display: flex;
  margin-top: 16px;
}
footer ul.socmed li:not(:last-child) {
  margin-right: 16px;
}
footer ul.socmed a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: var(--neutral300);
  transition: all 0.3s ease-in-out;
}
footer ul.socmed a:hover {
  background-color: var(--brand-primary);
}
footer ul.socmed a:hover svg path {
  fill: white;
}
footer ul.socmed a svg {
  width: 24px;
}
footer ul.socmed a svg path {
  fill: var(--neutral600);
  transition: all 0.4s ease-in-out;
}
footer .border-bottom {
  width: 100%;
  height: 12px;
  display: block;
}

.show-menu {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.mobile-init {
  transition: all 0.3s ease-in-out;
}
.mobile-init::after {
  content: "";
  transition: all 0.3s ease-in-out;
}

.lock-body {
  overflow: hidden;
  position: relative;
}
.lock-body::after {
  content: "";
  width: 100vw;
  height: 10000px;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 89;
}

#cta {
  /* background: #ff5a00 url("/bg-illustrasi.2dcc728d.png") no-repeat center center; */
  background-size: cover;
}
@media screen and (min-width: 1000px) {
  #cta .col50 {
    width: 100%;
    text-align: center;
  }
}
#cta .cta-gp {
  width: 100%;
  margin-top: -130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  #cta .cta-gp {
    margin-top: 24px;
    margin-bottom: 24px;
    align-items: center;
  }
}
#cta .cta-gp a.button {
  width: auto;
  max-width: 400px;
  margin-right: 0;
}
#cta .cta-gp svg {
  width: 400px;
  height: auto;
  margin: 0 0 48px 0;
}
@media screen and (max-width: 1000px) {
  #cta .cta-gp svg {
    width: 80%;
    height: auto;
  }
}

.mokirim-app-border {
  margin-top: 32px;
  padding-top: 56px;
  border-top: 1px solid var(--neutral300);
}
.mokirim-app-border a {
  text-align: center;
}

#kirim-satukoli {
  position: relative;
}
#kirim-satukoli h3 {
  color: var(--brand-primary);
  padding-top: 72px;
  margin-bottom: 8px;
}
@media (min-width: 1001px) and (max-width: 1280px) {
  #kirim-satukoli h3 {
    padding-top: 0;
  }
}
@media screen and (max-width: 1000px) {
  #kirim-satukoli h3 {
    padding-top: 0;
  }
}
#kirim-satukoli .layanan-feat {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  #kirim-satukoli .layanan-feat {
    justify-content: space-between;
  }
}
#kirim-satukoli .layanan-feat li {
  width: 50%;
  margin-bottom: 16px;
  height: 24px;
}
@media screen and (max-width: 1000px) {
  #kirim-satukoli .layanan-feat li {
    width: 100%;
  }
}
#kirim-satukoli .layanan-feat img.icon-small {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
#kirim-satukoli .icon {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  box-shadow: 0px 6px 15px rgba(10, 22, 70, 0.1), 0px 0px 1px rgba(10, 22, 70, 0.06);
  border-radius: 4px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1280px) {
  #kirim-satukoli .icon {
    position: absolute;
    top: -80px;
    left: 0;
  }
}
@media screen and (max-width: 1000px) {
  #kirim-satukoli .icon {
    margin-bottom: 32px;
  }
}

.cta-kirim {
  max-width: 400px;
  margin: 24px 0;
}
.cta-kirim a, .cta-kirim svg path {
  transition: all 0.3s ease-in-out;
}
.cta-kirim a {
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: var(--brand-lighter);
  border-radius: 8px;
  font-weight: 700;
}
.cta-kirim a:hover {
  background-color: var(--brand-primary);
  color: white;
}
.cta-kirim a:hover svg path {
  fill: white;
}

.app-mokirim {
  width: 100%;
}

.w100 {
  width: 100%;
  height: 700px;
  padding-top: 260px;
  margin-top: -340px;
}

.cta-normal {
  margin-top: 0 !important;
}

.content p {
  margin: 16px 0;
}
.content .bold {
  font-weight: 500 !important;
}
.content h3 {
  margin-top: 24px;
}
.content h4 {
  margin-top: 24px;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--brand-secondary);
}
.content img {
  width: 100%;
  margin: 16px 0;
}

@media screen and (max-width: 1000px) {
  .margin-mobile {
    padding: 32px 16px !important;
  }
}

@media screen and (max-width: 1000px) {
  .company-title h1 {
    font-size: 2rem;
  }
}

button[type=submit] {
  cursor: pointer;
  min-width: 200px;
  border: none;
  border-radius: 8px;
  background: var(--brand-secondary);
  color: #ffffff;
  padding: 16px 24px;
  line-height: 1.5;
  font-size: 18px !important;
  font-weight: 700;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type=submit]:hover {
  background: var(--brand-primary);
}

#contact button[type=submit]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.button-light {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--brand-lighter);
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  margin: 24px 0;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.button-light:hover {
  background-color: #ffe2d2;
}

/* CONTACT FORM */
.inner-wrapper-form, .contact-option {
  width: 100%;
}

.contact-option {
  display: flex;
  border-top: 1px solid var(--neutral300);
  border-bottom: 1px solid var(--neutral300);
  margin: 24px 0;
}
.contact-option .two-row {
  display: flex;
  flex-direction: column;
  margin: 24px 0;
  width: 100%;
}
.contact-option .two-row:not(:last-child) {
  margin-right: 32px;
}

.dflex fieldset:nth-child(2) {
  margin-left: 16px;
}
@media screen and (max-width: 1000px) {
  .dflex fieldset:nth-child(2) {
    margin-left: 0;
  }
}

#contact input[type=text],
#contact input[type=email],
#contact input[type=tel],
#contact textarea,
#contact button[type=submit] {
  font-size: 16px;
  line-height: 2;
}

label {
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
}

#contact {
  background: #fff;
  padding: 25px;
  border: 1px solid #C4CDD5;
  width: 100%;
}
#contact h4 {
  margin-bottom: 24px;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  padding: 0;
  width: 100%;
}

#contact input[type=text],
#contact input[type=email],
#contact input[type=tel],
#contact textarea {
  width: 100%;
  border: 1px solid #DFE3E8;
  background-color: #F9FAFB;
  margin: 0 0 5px;
  padding: 10px;
  border-radius: 4px;
}

#contact input[type=text]:hover,
#contact input[type=email]:hover,
#contact input[type=tel]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid var(--brand-primary);
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid var(--brand-primary);
  background-color: #fff;
}

#contact input:valid {
  background-color: #fff;
}

::-webkit-input-placeholder {
  color: #919EAB;
}

:-moz-placeholder {
  color: #919EAB;
}

::-moz-placeholder {
  color: #919EAB;
}

:-ms-input-placeholder {
  color: #919EAB;
}

.close-top {
  transform: translateX(-4px) translateY(-4px) rotate(-45deg);
  transform-origin: center;
}

.close-middle {
  transform: translateX(100%);
}

.close-bottom {
  transform: translateX(-4px) translateY(3px) rotate(45deg);
  transform-origin: center;
}

#nav-icon2 {
  width: 60px;
  height: 45px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  transform: scale(0.4);
  margin-top: -8px;
  right: -8px;
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 9px;
  width: 50%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.nav-invert #nav-icon2 span {
  background: var(--brand-secondary);
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
  top: 18px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
  top: 36px;
}

#nav-icon2.open span:nth-child(1), #nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2), #nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 29px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 29px;
}

/*# sourceMappingURL=/style.ff1c4cab.css.map */