:root {
  --background: #f5f9fc;
  --card: #ffffff;
  --text: #030239;
  --violet: #9747ff;
  --violet-hover: #7822e9;
  --aqua: #30c2fd40;
}

body {
  background-color: var(--background) !important;
}
button {
  border-radius: 7px !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
div {
  color: var(--text);
}
.text {
  color: var(--text) !important;
}
.container-mt {
  margin-top: 100px;
}
.card {
  border-radius: 20px;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn-blue {
  border-radius: 10px;
  background-color: var(--text);
  color: white;
  padding: 6px 10px;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.btn-blue:hover {
  border: 2px solid var(--text);
  border-radius: 10px;
  background-color: white;
  color: var(--text);
  transition: all 0.3s;
}
.btn-outline-blue {
  border-radius: 10px;
  background-color: transparent;
  color: var(--text);
  padding: 10px 20px;
  transition: all 0.3s;
  border: 2px solid var(--text);
}
.btn-outline-blue:hover {
  border: 2px solid var(--text);
  border-radius: 10px;
  background-color: var(--text);
  color: white;
  transition: all 0.3s;
}
.btn-white {
  border-radius: 10px;
  background-color: white;
  color: var(--text);
  padding: 10px 20px;
  transition: all 0.3s;
}
.btn-white:hover {
  border-radius: 10px;
  background-color: var(--text);
  color: white;
  transition: all 0.3s;
}
.heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* .heading-text {
    width: max-content;
    border-bottom: 3px solid var(--text);
    margin-bottom: 20px;
} */

/* wrapper app */
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* header-bg */
#myVideo {
  object-fit: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
/* .wrap-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/pamflet/33120.jpg);
  background-position: top center;
  background-size: cover;
  z-index: -2;
} */
.wrap-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.wrap-header {
  position: relative;
  min-height: 100vh;
}

/* navbar */
.nav-item {
  padding-inline: 10px;
}

/* header-content */
.wrap-header .container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  color: var(--text);
  z-index: 2;
}
.wrap-header .row {
  height: max-content;
  width: 100%;
}
.wrap-header .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  opacity: 0.6;
  z-index: -1;
  border-radius: 10px;
}
.wrap-header .card {
  min-height: 120px;
  /* border-radius: 20px; */
  background-color: transparent;
}
.wrap-header .card .card-body {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 40px;
  padding-inline: 30px;
}
.d-sm-none {
  display: block !important;
}

/* grafik */
#canvas {
  width: 100px;
  height: 100px;
}

/* jurusan */
#jurusan .card-body {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 40px;
  padding-inline: 30px;
}

/* footer */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8vh;
  background-color: var(--text);
  color: white !important;
}

@media (max-width: 576px) {
  .wrap-header .container {
    gap: 20px;
  }
  .d-sm-none {
    display: none !important;
  }
}
