:root {
  --primary: #841536;
  --primary-dark: #1d0b0d;
  --secondary: #ff7b55;
  --blue: #4287f5;
  --blue-dark: #3872cf;
  --yellow: #fcff38;
  --white: #ffffff;
  --black-light: #161616;
  --black-lightest: #3e3e3e;
  --black: #0f3357;

  --shadow-1: rgba(0, 0, 0, 0.04) 0px 5px 22px,
    rgba(0, 0, 0, 0.03) 0px 0px 0px 0.5px;
}

* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: 0;
}

body {
  font-family: "Manrope";
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Montserrat";
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  font-size: 12px;
  line-height: 1.114rem;
  letter-spacing: 0.01rem;
}

li {
  list-style-type: disc;
  font-size: 14px;
  margin-left: 20px;
}

li::marker {
  color: var(--primary);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 80px;
  max-height: 80px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 999;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

nav ul {
  display: flex;
  gap: 1rem;
}

nav ul li {
  list-style: none;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

footer a:hover {
  border-bottom: solid 1px var(--primary);
}

.nav-img {
  height: 60px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 12px;
  text-transform: uppercase;
}

.nav-contact {
  padding: 10px 20px;
}

.p-fixed {
  position: fixed;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.bottom-8px {
  bottom: 8px;
}

.bottom-1 {
  bottom: 1rem;
}

.left-1 {
  left: 1rem;
}

.right-1 {
  right: 1rem;
}

.right-12px {
  right: 12px;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-20p {
  width: 50%;
}

.w-50p {
  width: 50%;
}

.w-80p {
  width: 80%;
}

.w-100p {
  width: 100%;
}

.w-40px {
  width: 40px;
}

.w-280px {
  width: 280px;
}

.w-300px {
  width: 300px;
}

.w-500px {
  width: 500px;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-100p {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.h-40px {
  height: 40px;
}

.mh-64px {
  min-height: 64px;
}

.mh-145px {
  min-height: 145px;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-grow-1 {
  flex-grow: 1;
  -webkit-box-flex: 1;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-flow-wrap {
  flex-flow: wrap;
}

.gap-0_25 {
  gap: 0.25rem;
}

.gap-0_5 {
  gap: 0.5rem;
}

.gap-075 {
  gap: 0.75rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.fs-14px {
  font-size: 14px;
}

.fs-16px {
  font-size: 16px;
}

.fw-800 {
  font-weight: 800;
}

.lh-22px {
  line-height: 22px;
}

.ls-003 {
  letter-spacing: 0.03rem;
}

.text-up {
  text-transform: uppercase;
}

.color-primary {
  color: var(--primary);
}
.color-primary-dark {
  color: var(--primary-dark);
}

.color-gray {
  color: #fafafa;
}

.color-yellow {
  color: var(--yellow);
}

.color-blue {
  color: var(--blue);
}

.color-blue-tech {
  color: #1af3ff;
}

.color-white {
  color: var(--white);
}

.color-black {
  color: var(--black);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-white {
  background-color: var(--white);
}

.bg-black-tech {
  background-color: #00060d;
}

.bg-black-light {
  background-color: var(--black-light);
}

.bg-black {
  background-color: var(--black);
}

.bg-gray {
  background-color: #fafafa;
}

.bg-yellow {
  background-color: var(--yellow);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-blue-tech {
  background-color: #1af3ff;
}

.bg-blue-dark {
  background-color: var(--blue-dark);
}

.bg-gradi-blue-tech {
  background-image: linear-gradient(13deg, #16cfd9, #40f5ff);
}

.bg-gradi-yellow {
  background-image: linear-gradient(13deg, #d6d930, #fcff5e);
}

.bg-glass {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.p-05 {
  padding: 0.5rem;
}

.p-1 {
  padding: 1rem;
}

.p-1_5 {
  padding: 1.5rem;
}

.p-2 {
  padding: 2rem;
}

.pt-1_5 {
  padding-top: 1.5rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pt-2_5 {
  padding-top: 2.5rem;
}

.pb-1_5 {
  padding-bottom: 1.5rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-2_5 {
  padding-bottom: 2.5rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-1_5 {
  padding-left: 1.5rem;
}

.pl-280px {
  padding-left: 280px;
}

.pr-1 {
  padding-right: 1rem;
}

.pr-1_5 {
  padding-right: 1.5rem;
}

.mt-3 {
  margin-top: 3rem;
}

.z-min-1 {
  z-index: -1;
}

.rounded-0_5 {
  border-radius: 0.5rem;
}

.rounded-1 {
  border-radius: 1rem;
}

.rounded-2 {
  border-radius: 2rem;
}

.rounded-100p {
  border-radius: 100%;
}

.shadow-1 {
  box-shadow: var(--shadow-1);
}

.inset-shadow-1 {
  box-shadow: inset 0 8px 20px rgba(0, 0, 0, 0.2);
}

.inset-shadow-2 {
  box-shadow: inset 0 8px 40px rgba(0, 0, 0, 0.2);
}

.text-shadow-1 {
  filter: drop-shadow(0px 1px 2px rgb(0 0 0 / 0.264));
}

.frame-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
}

.frame-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  justify-items: center;
}

.a-button {
  padding: 12px 20px;
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.read-more-button {
  color: var(--primary);
  background-color: transparent;
  border: solid 1px;
}

.register-button {
  color: var(--black);
  background-color: var(--white);
}

button.menu-toggle {
  background-color: transparent;
  border: none;
}

.area {
  overflow-y: auto;
  min-height: 100px;
  white-space: pre-wrap;
  word-wrap: break-word;
  box-sizing: border-box;
}

.form-style {
  display: inline-flex;
  flex-direction: column;
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0px;
  padding: 0px;
  margin: 0px;
  border: 0px;
  vertical-align: top;
  width: 100%;
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
  justify-content: center;
}

.form-style label {
  transform: translate(12px, 6px) scale(0.85);
  color: rgb(108, 126, 127);
  line-height: 1.4375em;
  padding: 0px;
  font-size: 12px;
  font-weight: 500;
  transform-origin: left top;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(133% - 24px);
  position: absolute;
  left: 0px;
  top: 0px;
  transform: translate(12px, 7px) scale(0.75);
  transition: color 200ms cubic-bezier(0, 0, 0.2, 1) 0ms,
    transform 200ms cubic-bezier(0, 0, 0.2, 1) 0ms,
    max-width 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
  z-index: 1;
  pointer-events: auto;
  user-select: none;
  box-sizing: border-box;
}

.form-input-style {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4375em;
  color: rgb(17, 38, 39);
  box-sizing: border-box;
  cursor: text;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  border-color: rgb(229, 235, 235);
  transition: border-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.form-input-style input,
.form-input-style textarea {
  font-style: inherit;
  font-variant: inherit;
  font-stretch: inherit;
  font-family: inherit;
  font-optical-sizing: inherit;
  font-kerning: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  letter-spacing: inherit;
  box-sizing: content-box;
  background: none;
  height: 1.4375em;
  margin: 0px;
  -webkit-tap-highlight-color: transparent;
  display: block;
  min-width: 0px;
  width: 100%;
  animation-name: mui-auto-fill-cancel;
  animation-duration: 10ms;
  padding: 25px 12px 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  position: relative;
  background-color: transparent;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  border-color: rgb(229, 235, 235);
  transition: border-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.form-input-style input:focus,
.form-input-style textarea:focus {
  outline-color: var(--primary);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Menghilangkan spinner di Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="submit"] {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: 0px;
  border: 0px;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.75;
  min-width: 64px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  color: rgb(255, 255, 255);
  background-color: var(--primary);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 5px;
  width: 100%;
  border-radius: 12px;
  text-transform: none;
  padding: 11px 24px;
}

input[type="submit"]:hover {
  background-color: var(--primary-dark);
}

input[type="file"] {
  cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-right: 10px;
  padding: 2.5px 8px;
  transition: background-color 0.3s ease;
  color: var(--white);
  background-color: var(--primary);
}

input[type="file"]::-webkit-file-upload-button:hover,
input[type="file"]::-webkit-file-upload-button:active {
  background-color: var(--primary-dark);
}

.nav-img a.color-black {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 21px;
  font-weight: bolder;
  color: #0f3257;
}

.nav-img span {
  display: none;
}

@media (min-width: 1025px) {
  main {
    gap: 100px;
  }

  nav,
  section {
    width: 1140px;
    margin: 0 auto;
  }

  .nav-img span {
    display: block;
  }
}

@media (max-width: 1024px) {
  h1,
  h2 {
    font-size: 21px;
  }

  h3 {
    font-size: 18px;
  }

  main {
    gap: 50px;
  }

  nav,
  section {
    margin: 0 32px;
  }

  .lg-w-100p {
    width: 100%;
  }

  .lg-w-unset {
    width: unset;
  }

  .lg-w-auto {
    width: auto;
  }

  .lg-w-content {
    width: fit-content;
  }

  .lg-h-auto {
    height: auto;
  }

  .lg-d-none {
    display: none;
  }

  .lg-flex-col {
    flex-direction: column;
  }

  .lg-flex-col-reverse {
    flex-direction: column-reverse;
  }

  .lg-align-start {
    align-items: flex-start;
  }

  .lg-align-center {
    align-items: center;
  }

  .lg-justify-center {
    justify-content: center;
  }

  .lg-gap-1 {
    gap: 1rem;
  }

  .lg-p-0 {
    padding: 0;
  }

  .lg-p-1 {
    padding: 1rem;
  }

  .lg-frame-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
  }
}

@media (max-width: 480px) {
  h1,
  h2 {
    font-size: 21px !important;
  }

  h3 {
    font-size: 18px !important;
  }

  main {
    gap: 50px !important;
  }

  nav,
  section {
    margin: 0 16px !important;
  }

  .sm-w-100p {
    width: 100% !important;
  }

  .sm-w-unset {
    width: unset !important;
  }

  .sm-w-auto {
    width: auto !important;
  }

  .sm-w-content {
    width: fit-content !important;
  }

  .sm-mh-55px {
    min-height: 55px;
  }

  .sm-h-auto {
    height: auto !important;
  }

  .sm-d-none {
    display: none !important;
  }

  .sm-flex-col {
    flex-direction: column !important;
  }

  .sm-flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .sm-align-start {
    align-items: flex-start !important;
  }

  .sm-gap-1 {
    gap: 1rem !important;
  }

  .sm-p-0 {
    padding: 0 !important;
  }

  .sm-p-1 {
    padding: 1rem !important;
  }

  .sm-pt-1 {
    padding-top: 1rem !important;
  }

  .sm-pb-1 {
    padding-bottom: 1rem !important;
  }

  .sm-frame-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    justify-items: center;
  }

  .nav-img span {
    display: block;
  }
}
