html {
   scroll-padding-top: 120px !important;
}

header {
   position: fixed;
   width: 100%;
   top: 0;
}

a {
   word-wrap: break-word!important;
}

.navigation-wrap {
   margin: auto;
   display: block;
   padding-left: 0rem;
   padding-right: 0rem;
}

.nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
   padding: 0 20px;
}

.top-nav {
   font-size: 12px;
   text-align: right;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 20px;
   background: #fff;
   width: 100%;
}

.logo-wrap {
   flex: 0 0 220px;
   display: flex;
   align-items: center;
   align-content: center;
   justify-content: start;
   height: 90px;
}

.header-spacer {
   display: block;
   position: relative;
   width: 100%;
   height: 138px;
}

header .container {
   /* border-bottom: 2px solid var(--medium-blue); */
   background-color: #fff;
}

/* For WebKit browsers (Chrome, Safari) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
   -webkit-appearance: none;
   margin: 0;
}

/* For Firefox */
input[type="number"] {
   -moz-appearance: textfield;
}

/* For Edge */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
   -webkit-appearance: none;
   margin: 0;
}

.js-cm-form input[type="text"],
.js-cm-form input[type="email"] {
   border: 1px solid var(--dark-blue);
   height: 40px;
   width: 100%;
   border-radius: 6px;
   color: var(--dark-blue);
   font-size: 16px;
}

.js-cm-form {
   max-width: 800px;
   margin: auto;
}

.landing-hero {
   position: relative;
   display: flex;
   padding: 30px 0;
}

.landing-hero>div.content:not(.noPad) {
   width: 50%;
   padding: 20px;
   position: relative;
   z-index: 2;
}

.landing-hero>div.content.noPad {
   width: 50%;
   position: relative;
   z-index: 2;
}

.landing-hero>div.content.noPad>div {
   padding: 20px 30px 20px 100px;
}

.landing-hero>div.content.noPad>div.separator {
   background: var(--dxrt-purple);
   width: 95%;
   height: 5px;
   padding: 0;
}

.landing-hero:before {
   background: linear-gradient(-15deg, #e2ded7 0%, #ffffff 50%);
   content: "";
   display: block;
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
}

.white-btn {
   padding: 10px 20px;
   margin: 3px 0;
   background: #fff;
   display: inline-block;
   border-radius: 10px;
   font-weight: bold;
   color: var(--dxr-green);
   transition: all .4s;
   text-decoration: none;
}

.white-btn:hover {
   background: var(--dark-blue);
   color: #fff;
}

.purple-btn {
   padding: 10px 20px;
   margin: 3px 0;
   background: var(--dxrt-purple);
   display: inline-block;
   border-radius: 10px;
   font-weight: bold;
   border: 2px solid var(--dxrt-purple);
   color: #fff;
   transition: all .4s;
   text-decoration: none;
}

.purple-btn:hover {
   background: #fff;
   color: var(--dxrt-purple);
}

.divider {
   border-bottom: 1px solid var(--dark-blue);
}

img.hero-image {
   max-width: 650px;
   width: 100%;
   margin-left: 0px;
}

@media(min-width:1280px) {
   img.hero-image {
      max-width: 650px;
      width: 130%;
      margin-left: -70px;
   }
}

.timeline.animate {
   animation: timelineimages 10s forwards;
}

div#timeline-animation {
   margin-top: -274px;
   position: relative;
   z-index: 1000;
   width: 15%;
   overflow: hidden;
   transition: all .4s linear;
}

div#timeline-animation.animate {
   animation: timelineanimate 10s forwards;
}

.timeline-buttons {
   opacity: 0;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 110;
}

.timeline-buttons.animate {
   animation: timelinebtns 10s forwards;
}

@keyframes timelineimages {
   0% {
      opacity: 1;
   }

   90% {
      opacity: 1;
   }

   92% {
      opacity: 0;
   }

   100% {
      opacity: 0;
   }
}

@keyframes timelinebtns {
   0% {
      opacity: 0;
   }

   92% {
      opacity: 0;
   }

   94% {
      opacity: 1;
   }

   100% {
      opacity: 1;
   }
}

@keyframes timelineanimate {
   0% {
      width: 15%;
      /* 1st */
   }

   10% {
      width: 15%;
   }

   12% {
      width: 30%;
      /* 2nd */
   }

   22% {
      width: 30%;
   }

   24% {
      width: 40%;
      /* 3rd */
   }

   34% {
      width: 40%;
   }

   36% {
      width: 52%;
      /* 4th */
   }

   46% {
      width: 52%;
   }

   48% {
      width: 67%;
      /* 5th */
   }

   58% {
      width: 67%;
   }

   60% {
      width: 75%;
      /* 6th */
   }

   70% {
      width: 75%;
   }

   72% {
      width: 85%;
      /* 7th */
   }

   82% {
      width: 85%;
   }

   84% {
      width: 100%;
      /* 8th */
   }

   90% {
      width: 100%;
   }

   100% {
      width: 100%;
   }
}

.timeline-photos {
   display: flex;
   align-items: baseline;
   gap: 8px;
   padding: 0 5px;
   flex-wrap: nowrap;
   width: 1320px;
}

.timeline-outer {
   width: 100%;
}

@media(max-width:1440px) {
   .timeline-outer {
      max-width: 1200px;
   }

   div#timeline-animation {
      max-width: 1200px;
   }

   .timeline-img {
      max-width: 1200px;
      margin: auto;
   }

   .timeline-photos {
      width: 1200px;
   }
}

.timeline-bar {
   background: linear-gradient(90deg, var(--dxr-green), var(--dxrt-purple));
   height: 30px;
   margin: -30px 0px 20px;
   border-radius: 50px;
   width: 100%;
   transition: all .4s linear;
   position: relative;
   z-index: 101;

}

@media(min-width:1280px) {
   .divider {
      border-bottom: 0px solid var(--dark-blue);
      border-right: 1px solid var(--dark-blue);
   }
}

.white-ghost {
   background: #fff;
   color: var(--dxrt-purple);
   border: 1px solid var(--dxrt-purple);
}

.white-ghost:hover {
   background: var(--dxrt-purple);
   color: #fff;
   border: 1px solid var(--dxrt-purple);
}

.grad1 {
   background: linear-gradient(90deg, var(--dxrt-purple), var(--dxr-green));
   color: #fff;
}

.grad2 {
   background: linear-gradient(90deg, var(--dxr-green), var(--dxrt-purple));
   color: #fff;
}

.lp-btn {
   line-height: 1;
   padding: 15px 30px;
   border: 1px solid;
   font-size: 18px;
   border-radius: 50px;
   text-decoration: none;
   font-weight: bold;
   letter-spacing: 1px;
   position: relative;
   overflow: hidden;
   display: inline-block;
   cursor: pointer;
   transition: all .4s;
}

.mobile-timeline-btns {
   margin-top: -90px;
}

@media(max-width: 680px) {
   .mobile-timeline-btns {
      margin-top: -150px;
   }
}

.choices {
   position: relative;
   margin: 10px 0;
}

.choices input {
   opacity: 0;
   position: absolute;
}

.choices label:before {
   content: "";
   width: 24px;
   height: 24px;
   border: 2px solid var(--dxrt-purple);
   display: block;
   position: absolute;
   left: 0;
   top: 3px;
   border-radius: 50%;
}

.choices label {
   position: relative;
   padding-left: 30px;
   display: block;
   line-height: 30px;
}

.form-btn {
   padding: 10px 20px;
   border-radius: 10px;
   background: var(--dxrt-purple);
   border: 2px solid var(--dxrt-purple);
   color: #fff;
   letter-spacing: 1px;
   font-weight: bold;
   transition: all .4s;
}

.form-btn:hover {
   background: #fff;
   color: var(--dxrt-purple);
}

.input-field input {
   width: 100%;
   max-width: 350px;
   border-radius: 10px;
   font-size: 16px;
   border: 2px solid var(--dark-blue);
}

.choices input:checked+label:before {
   background: var(--dxrt-purple);
}

.errmsg,
.errmsg2,
.errmsg3 {
   font-size: 14px;
   line-height: 20px;
   height: 20px;
   color: #ff0000;
}

.data-bar {
   display: inline-block;
   background: var(--dxrt-purple);
   height: 26px;
   vertical-align: middle;
}

.data-field {
   font-size: 14px;
   font-weight: 500;
   color: var(--dark-blue);
}

.nav-menu {
   text-transform: uppercase;
}

#isi-wrap ul li li::marker {
   content: "–";
   color: var(--dxrt-purple) !important;
   font-weight: 800;
}

#isi-wrap ul li::marker {
   color: var(--dxrt-purple) !important;
}

@media (max-width: 1279px) {
   .nav ul li:nth-last-of-type(1) {
      padding: 0px 30px !important;
   }
}

.landing-hero .heading * {
   color: var(--dxrt-purple);
}

.landing-hero .heading p {
   font-size: 1.2em;
   font-weight:500;
   text-transform: uppercase;
}

.landing-hero .heading h1 {
   font-weight:600;
}

.landing-hero .content p {
   font-weight: 600;
   color: #000;
   margin-bottom: 20px;
}

.landing-hero .content .heroBtn {
   background: var(--dxrt-purple);
   color: #fff !important;
   text-decoration: none;
   padding: 8px 16px;
   border-radius: 9px;
   display: inline-block;
   margin-bottom: 20px;
}

@media (max-width: 1024px) {
   .slider > section { min-height: 500px!important; }
   .landing-hero .left { width:100%!important; }
   .landing-hero .right { display: none !important; }
   .slick-slide img.imgMobile {
      max-width: 650px;
      margin: 0 auto;
   }
   .slick-slide img:not(img.imgMobile) {
      max-width: 500px;
      margin: 0 auto;
   }
}

@media (max-width: 768px) {
   .landing-hero { flex-direction: column; padding-bottom: 0px!important; }
   .landing-hero .left { width: 100% !important; }
   .landing-hero > div.content.noPad > div { padding: 20px 40px; }
}

@media (max-width: 550px) {
   .landing-hero .right { height: 160px!important; }
}



.landing-hero:not(.landing-hero:nth-of-type(1)) {
   display: none;
}

.arrows {
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: -50px;
   margin-bottom: 50px;
   position: relative;
   z-index: 999;
}

.arrows div {
   width: 20px;
   height: 20px;
   background: #fff;
   border: 3px solid var(--dxrt-purple);
   border-radius: 20px;
   margin: 5px 3px;
   cursor: pointer;
}

.arrows div.active {
   background: var(--dxrt-purple);
   pointer-events: none;
}

@media (max-width: 768px) {
   .arrows {
      margin-top: 20px!important;
      margin-bottom: 0px!important;
   }
}


.slick-slide img.imgDesktop { display:block; }
.slick-slide img.imgMobile { display:none; }

@media (max-width: 1024px) {
   .slick-slide img.imgDesktop { display:none; }
   .slick-slide img.imgMobile { display:block; }
}