*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

body {
  font-family: "Montserrat";
}

header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 20px;
  left: 60px;
  z-index: 100;
}
header .container {
  width: calc(100% - 120px);
  background: transparent; /* Biar transparan */
  border: 1px solid #2596be; /* Biar bisa diisi border-image */
  border-radius: 60px; /* Opsional, untuk sudut melengkung */
  padding: 30px 200px 30px 60px;
  position: relative;
}
header .container .nav_box {
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 100%;
}
header .container .nav_box .slide_btn {
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.9), rgba(28, 229, 94, 0.9));
  text-transform: uppercase;
  height: 28px;
  line-height: 28px;
  padding: 0 30px;
  border-radius: 28px;
  margin-left: 45px;
}
header .container .nav_box .slide_btn.active {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
}
header .container .nav_box .slide_btn:hover {
  opacity: 0.8;
}
header .container .nav_box #logo {
  background: none !important;
  height: auto !important;
  line-height: normal !important;
  margin-left: 0 !important;
  padding: 0 !important;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  cursor: pointer;
}
header .container .nav_box #logo img {
  width: 160px;
  display: block;
}
header .container .menu_btn {
  width: 100px;
  height: 44px;
  background: url("../images/icon_burger.png") no-repeat center center/contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  cursor: pointer;
}
header .container .menu_list {
  display: none;
  position: absolute;
  top: 88px;
  right: 20px;
  border-radius: 10px;
  padding: 10px 0;
  width: 150px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(45deg, rgba(105, 202, 241, 0.76), rgba(28, 229, 94, 0.76));
  z-index: 1000;
}
header .container .menu_list .lang_ctr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  margin: 0 16px;
  font-weight: 600;
  font-size: 12px;
}
header .container .menu_list .lang_ctr .divider {
  width: 2px;
  height: 16px;
  background: #fff;
}
header .container .menu_list .lang_ctr .lang {
  cursor: pointer;
}
header .container .menu_list .lang_ctr .lang.active {
  color: #33dd8a;
}
header .container .menu_list .lang_btn,
header .container .menu_list .slide_btn_m {
  width: 120px;
  margin: 0 auto;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  font-weight: 500;
  background: none;
  text-transform: none;
  height: 28px;
  line-height: 28px;
  padding: 0 15px;
  border-radius: 0;
  text-align: center;
  text-transform: uppercase;
  display: block;
  border-radius: 20px;
}
header .container .menu_list .lang_btn:hover,
header .container .menu_list .slide_btn_m:hover {
  border-radius: 20px;
  border: 0.5px solid #fff;
  color: #00ff88;
}

section {
  width: 100vw;
  height: 100vh;
  display: flex;
  position: absolute;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
section .slider {
  position: absolute;
  inset: 0px;
  display: flex;
  align-items: center;
}
section .slider.no-anim,
section .slider.no-anim * {
  transition: none !important;
}
section .slider.invis {
  visibility: hidden;
}
section .slides {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 460px;
  background-size: cover;
  background-position: center center;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
}
section .slides.active {
  z-index: -10;
}
section .slides.one {
  background: url("../images/1.png") no-repeat center center/cover;
}
section .slides.two {
  background: url("../images/2.png") no-repeat center center/cover;
}
section .slides.three {
  background: url("../images/3.png") no-repeat center center/cover;
}
section .slides.four {
  background: url("../images/4.png") no-repeat center center/cover;
}
section .slides.five {
  background: url("../images/5.png") no-repeat center center/cover;
}
section .slides.six {
  background: url("../images/6.png") no-repeat center center/cover;
}
section .slides .label_thumbnail {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.5), rgba(28, 229, 94, 0.5));
  display: block;
  width: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
section .slides .label_thumbnail h3 {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
}
section .slides .label_thumbnail h3 span {
  display: block;
  font-size: 30px;
}
section .slides:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(0);
  background-size: cover;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  background-position: left 35% center;
}
section .slides:nth-child(1) .content::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
section .slides:nth-child(1) .content .content_box {
  display: flex;
  flex-wrap: wrap;
  opacity: 1;
  z-index: 10;
  transition: all 0.5s ease-in-out;
}
section .slides:nth-child(1) .label_thumbnail {
  display: none;
}
section .slides:nth-child(2) {
  left: 50%;
  background-size: cover;
  background-position: left 35% center;
}
section .slides:nth-child(3) {
  left: calc(50% + 320px);
  background-size: cover;
  background-position: left 35% center;
}
section .slides:nth-child(4) {
  left: calc(50% + 640px);
  background-size: cover;
  background-position: left 35% center;
}
section .slides:nth-child(5) {
  left: calc(50% + 960px);
  background-size: cover;
  background-position: left 35% center;
}
section .slides:nth-child(6) {
  left: calc(50% + 1280px);
  background-size: cover;
  background-position: left 35% center;
}
section .buttons {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 20px;
  z-index: 1000;
}
section .buttons span {
  width: 100px;
  height: 36px;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  display: block;
  color: #fff;
  transition: all 0.3s ease;
}
section .buttons span:hover {
  opacity: 0.8;
}
section .progress-container {
  position: absolute;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  top: 0;
  left: 0;
}
section .progress-bar {
  height: 100%;
  width: 0%;
  background: #00ff88;
  transition: width linear;
}
section .content_box {
  opacity: 0;
  z-index: -1;
  position: relative;
  z-index: 100;
  color: #fff;
  height: 100vh;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
  padding: 0 40px 0 80px;
  transition: all 0.5s ease-in-out;
}
section .content_box.full_width {
  width: 100% !important;
}
section .content_box .logo {
  width: 100%;
  max-width: 600px;
  display: block;
  margin-bottom: 40px;
}
section .content_box .play_btn {
  margin-top: 40px;
  width: 156px;
  height: 38px;
  border-radius: 38px;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.9), rgba(28, 229, 94, 0.9));
  line-height: 38px;
  font-size: 14px;
  font-weight: 600;
  padding-left: 10px;
  text-transform: uppercase;
  cursor: pointer;
}
section .content_box .play_btn span {
  background: url("../images/ic_play.png") no-repeat right 15px center/30px;
  display: block;
}
section .content_box .video_box {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
section .content_box .video_box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
section .content_box .cb_ctr h2 {
  font-weight: 700;
  font-size: 84px;
  line-height: 74px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
section .content_box .cb_ctr h2 span {
  display: block;
  font-size: 54px;
}
section .content_box .cb_ctr h2 img {
  width: 46px;
  display: inline-block;
  position: relative;
  top: 5px;
}
section .content_box .cb_ctr p {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}
section .content_box .cb_ctr h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
section .content_box .form_flex .form_box {
  margin-bottom: 20px;
}
section .content_box .form_flex .form_box input {
  width: 600px;
  height: 48px;
  background: linear-gradient(45deg, rgb(105, 202, 241), rgb(28, 229, 94));
  display: block;
  border: none;
  border-radius: 20px;
  padding-left: 20px;
  font-family: "Montserrat";
  color: #fff;
  font-size: 16px;
}
section .content_box .form_flex .form_box input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
section .content_box .form_flex .form_box input::placeholder {
  color: #fff;
  opacity: 1;
}
section .content_box .form_flex .form_box textarea {
  width: 600px;
  min-height: 48px;
  background: linear-gradient(45deg, rgb(105, 202, 241), rgb(28, 229, 94));
  display: block;
  border: none;
  border-radius: 20px;
  padding-left: 20px;
  font-family: "Montserrat";
  color: #fff;
  font-size: 16px;
  resize: none;
  padding-top: 40px;
}
section .content_box .form_flex .form_box textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
section .content_box .form_flex .form_box textarea::placeholder {
  color: #fff;
  opacity: 1;
}
section .content_box .form_flex .Submit_btn {
  width: 135px;
  height: 37px;
  background: rgba(255, 255, 255, 0.75);
  display: block;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  line-height: 37px;
  text-align: center;
  font-family: "Montserrat";
}
section .content_box .form_flex .Submit_btn:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit; /* Ikut border-radius parent */
  padding: 3px; /* Ketebalan border */
  background: linear-gradient(45deg, #69caf1, #1ce55e);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
section .content_box .tab_flex {
  display: flex;
  flex-wrap: wrap;
}
section .content_box .tab_flex .tab_box {
  padding: 0 30px;
  line-height: 48px;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.85), rgba(28, 229, 94, 0.85));
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: 48px;
}
section .content_box .know_more_btn {
  padding: 0 30px;
  line-height: 48px;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.85), rgba(28, 229, 94, 0.85));
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: 48px;
  display: inline-block;
  cursor: pointer;
}
section .content_box .pmu_market {
  display: none;
}
section .content_box .pmu_market .market_flex {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-top: 40px;
}
section .content_box .pmu_market .market_flex .market_box {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 10px;
  border-radius: 60px;
  line-height: 60px;
  text-align: center;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.85), rgba(28, 229, 94, 0.85));
}
section .content_box .pmu_market .market_flex .market_box:nth-child(3n) {
  margin-right: 0;
}
section .content_box .pmu_market .button_wrapper {
  display: flex;
  justify-content: flex-end;
}
section .content_box .pmu_market .button_wrapper .back_btn {
  width: 120px;
  border-radius: 36px;
  line-height: 36px;
  text-align: center;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.85), rgba(28, 229, 94, 0.85));
  cursor: pointer;
  opacity: 0.75;
}
section .content_box .pmu_market .button_wrapper .back_btn:hover {
  opacity: 1;
}

.label_menu {
  background: linear-gradient(45deg, rgb(105, 202, 241), rgb(28, 229, 94));
  height: 28px;
  padding: 0 20px;
  display: inline-block;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 28px;
  border-radius: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}

.place-box + .logo-box {
  margin-bottom: 0;
}

.play_btn {
  margin-top: 40px;
  width: 176px;
  height: 38px;
  border-radius: 38px;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.9), rgba(28, 229, 94, 0.9));
  line-height: 38px;
  font-size: 14px;
  font-weight: 600;
  padding-left: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.play_btn span {
  background: url("../images/ic_play.png") no-repeat right 15px center/30px;
  display: block;
}

.know_more_btn {
  padding: 0 30px;
  line-height: 48px;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.85), rgba(28, 229, 94, 0.85));
  margin-right: 20px;
  margin-bottom: 0px;
  border-radius: 48px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.75;
}
.know_more_btn:hover {
  opacity: 1;
}

.label_btn {
  padding: 0 30px;
  line-height: 48px;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.85), rgba(28, 229, 94, 0.85));
  border-radius: 48px;
  display: inline-block;
  cursor: pointer;
}

.tab_flex {
  display: flex;
  flex-wrap: wrap;
}
.tab_flex .tab_box {
  padding: 0 30px;
  line-height: 48px;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.85), rgba(28, 229, 94, 0.85));
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: 48px;
}

.form_flex .form_box {
  margin-bottom: 20px;
}
.form_flex .form_box input {
  width: 600px;
  min-height: 48px;
  background: linear-gradient(45deg, rgb(105, 202, 241), rgb(28, 229, 94));
  display: block;
  border: none;
  border-radius: 20px;
  font-family: "Montserrat";
  color: #fff;
  font-size: 16px;
  padding: 0 20px;
}
.form_flex .form_box input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.form_flex .form_box input::placeholder {
  color: #fff;
  opacity: 1;
}
.form_flex .form_box .textarea_box {
  width: 100%;
  padding: 0px;
  border-radius: 20px;
  padding: 12px 20px;
  background: linear-gradient(45deg, rgb(105, 202, 241), rgb(28, 229, 94));
  position: relative;
}
.form_flex .form_box .textarea_box .textarea {
  display: block;
  min-height: 24px;
  max-height: 122px;
  overflow: auto;
}
.form_flex .form_box .textarea_box .placeholder {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #fff;
  pointer-events: none;
  font-size: 16px;
}
.form_flex .Submit_btn {
  width: 135px;
  height: 37px;
  display: block;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  line-height: 37px;
  text-align: center;
  background: linear-gradient(45deg, #69caf1, #1ce55e);
  color: #fff;
  opacity: 0.75;
  font-family: "Montserrat";
}
.form_flex .Submit_btn:hover {
  opacity: 1;
}

.video_box {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.video_box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.video_box .back_btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 120px;
  border-radius: 36px;
  line-height: 36px;
  text-align: center;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.85), rgba(28, 229, 94, 0.85));
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.75;
}
.video_box .back_btn:hover {
  opacity: 1;
}

.pmu_market {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  background: url("../images/3.png") no-repeat center center/cover;
  padding: 160px 60px 60px;
}
.pmu_market h2 {
  position: relative;
  font-weight: 700;
  font-size: 84px;
  line-height: 74px;
  margin-bottom: 20px;
  text-transform: uppercase;
  z-index: 22;
}
.pmu_market h2 span {
  display: block;
  font-size: 54px;
}
.pmu_market h2 img {
  width: 46px;
  display: inline-block;
  position: relative;
  top: 5px;
}
.pmu_market .market_flex {
  position: relative;
  z-index: 22;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-top: 40px;
}
.pmu_market .market_flex .market_box {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 10px;
  border-radius: 60px;
  line-height: 60px;
  text-align: center;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.85), rgba(28, 229, 94, 0.85));
}
.pmu_market .market_flex .market_box:nth-child(3n) {
  margin-right: 0;
}
.pmu_market .button_wrapper {
  position: relative;
  z-index: 22;
  display: flex;
  justify-content: flex-end;
}
.pmu_market .button_wrapper .back_btn {
  width: 120px;
  border-radius: 36px;
  line-height: 36px;
  text-align: center;
  background: linear-gradient(45deg, rgba(105, 202, 241, 0.85), rgba(28, 229, 94, 0.85));
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.75;
}
.pmu_market .button_wrapper .back_btn:hover {
  opacity: 1;
}

#full_width {
  width: 100% !important;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 21;
}

footer {
  display: none;
  position: fixed;
  width: 100vw;
  padding: 20px;
  bottom: 0px;
  left: 0px;
  z-index: 100;
}
footer .container {
  padding: 0 40px;
}
footer p {
  font-size: 10px;
  color: #fff;
  line-height: 18px;
}
footer a {
  display: block;
  margin-top: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
}
footer img {
  width: 200px;
  display: block;
  position: absolute;
  top: 20px;
  right: 60px;
}

@media only screen and (max-width: 1560px) {
  header .container {
    padding: 25px 145px 25px 50px;
  }
  header .container .menu_btn {
    width: 70px;
    right: 35px;
  }
  header .container .nav_box .slide_btn {
    font-size: 10px;
    margin-left: 45px;
    padding: 0 30px;
  }
  .form_flex .form_box input,
  .form_flex .form_box textarea,
  .form_flex .form_box .textarea_box {
    width: 480px;
  }
}
@media only screen and (max-width: 1024px) {
  header {
    position: absolute;
    top: 10px;
    left: 20px;
  }
  header .container {
    width: calc(100% - 40px);
    padding: 20px 100px 20px 20px;
  }
  header .container .menu_btn {
    width: 50px;
    right: 20px;
    height: 34px;
  }
  header .container .nav_box .slide_btn {
    display: none;
    font-size: 8px;
    margin-left: 30px;
    padding: 0 20px;
    height: 24px;
    line-height: 24px;
  }
  header .container .nav_box #logo img {
    width: 120px;
  }
  header .container .menu_list {
    top: 42px;
    right: 0px;
  }
  .form_flex {
    width: calc(100% - 0px);
  }
  .form_flex .form_box input,
  .form_flex .form_box textarea {
    height: 32px;
    width: 100%;
    font-size: 12px;
  }
  .form_flex .form_box .textarea_box {
    width: 100%;
    padding: 14px 20px;
  }
  .form_flex .form_box .textarea_box {
    padding: 16px 20px;
  }
  .form_flex .form_box .textarea_box .placeholder {
    font-size: 12px;
  }
  .form_flex .form_box .textarea_box .textarea {
    min-height: 18px;
    font-size: 12px;
  }
  .form_flex .Submit_btn {
    width: 100px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
  }
  footer {
    display: none !important;
  }
  .video_box {
    background: #000;
  }
  .video_box video {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .pmu_market {
    padding: 100px 20px 20px;
  }
  .pmu_market h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .pmu_market h2 span {
    font-size: 36px;
  }
  .pmu_market .market_flex {
    margin-top: 20px;
    max-height: calc(100vh - 300px);
    overflow-y: scroll;
  }
  .pmu_market .market_flex .market_box {
    width: 100% !important;
    margin-right: 0px;
  }
}
@media only screen and (max-width: 743px) {
  .form_flex .form_box .textarea_box {
    padding: 14px 20px;
  }
  .form_flex .form_box .textarea_box .textarea {
    max-height: 50px;
  }
}/*# sourceMappingURL=main.css.map */