*,
body {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
}

p {
  color: var(--primary-color);
  opacity: 0.65;
}

.pages-header {
  height: 300px;
  background-image: url(../../images/pages-img.png);
  background-size: cover;
  background-position: center;

  place-content: center;

  h4.title {
    font-size: 42px !important;
    font-weight: bold;
  }
}

header.bg-primary {
  .nav-link {
    color: white;
  }
}

header {
  .logo-dark {
    display: none;
  }

  &.navbar-stick {
    .logo-light {
      display: none;
    }

    .logo-dark {
      display: block;
    }
  }
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.text-accent {
  color: var(--accent-color);
}

.btn-accent {
  background-color: var(--accent-color) !important;
  color: var(--grey-color) !important;
}

.underline:after {
  background: var(--accent-color) !important;
}

.title {
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1.2;
}

.visi-misi {
  margin-bottom: 24px;
  position: relative;

  .title {
    position: relative;
    display: inline;

    &:after {
      content: "";
      position: absolute;
      bottom: 6px;
      left: 0;
      display: block;
      width: 100%;
      height: 6px;
      background-color: var(--accent-color);
      margin-top: 4px;
      z-index: 0;
    }
  }
}

.list-misi {
  display: flex;
  gap: 4px;

  .card {
    background: rgba(255, 255, 255, 0.039);

    .card-body {
      display: inline-flex;
      padding: 20px;

      .number {
        font-size: 48px;
        font-weight: 800;
        color: var(--accent-color);
        margin-right: 10px;
      }

      p {
        text-align: start;
        color: white;
        font-weight: 400;
      }
    }
  }
}

.cta {
  height: 320px;

  background: url(../img/cat.png) no-repeat center center;
  background-size: cover;

  align-content: center;
}

.list-mutu {
  .item {
    padding: 24px;
    padding-top: 80px;
    position: relative;

    background-color: #f5f5f5;

    &:nth-child(odd) {
      background-color: white;
    }

    .number {
      width: 80px;
      height: 60px;
      align-content: center;
      background-color: var(--primary-color);
      font-size: 32px;
      font-weight: 700;
      color: white;
      text-align: center;

      position: absolute;
      left: 0;
      top: 0;
    }

    .title {
      font-size: 21px;
      font-weight: 700;
      margin-bottom: 8px;
    }
  }
}

.teams {
  .card {
    background-color: transparent;
    box-shadow: none;

    .title {
      margin-top: 12px;
      margin-bottom: 4px;
      font-size: 20px;
      font-weight: bold;
    }

    span {
      font-size: 16px;
      font-weight: 400;
      color: var(--grey-color);
      opacity: 0.5;
    }
  }
}

.mini-title {
  letter-spacing: 3px;
}

.progress-wrap {
  position: absolute;
  right: 0;
  left: 0;
  top: -24px;
  margin: 0 auto;
  width: 2.3rem;
  height: 2.3rem;
  background-color: var(--accent-color);
  padding: 2px;
  cursor: pointer;
  display: block;
  border-radius: 100%;
  box-shadow: inset 0 0 0 0.1rem rgba(128, 130, 134, 0.25);
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: all 0.2s linear, margin-right 0s;
}


.layanan-kami {
  .card {
    cursor: pointer;
    border-color: #ececec28 !important;
    background: linear-gradient(315deg, #ffffff0f, transparent);

    transition: all 150ms ease;

    &:hover {
      background: white !important;

      .title {
        color: var(--primary-color) !important;

        -webkit-line-clamp: 4;
        line-clamp: 4;
      }

      ul {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 30;
        line-clamp: 30;
      }
    }

    .title {
      color: var(--accent-color) !important;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
      line-clamp: 1;
    }

    ul {
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 5;
      line-clamp: 5;
    }
  }
}

footer {
  padding-top: 48px;
  background-color: var(--dark-color) !important;

  .title {
    color: white;
    font-size: 18px;
    font-weight: bold;
  }

  .list-unstyled li a {
    color: rgb(255, 255, 255, 0.6);

    &:hover {
      color: var(--accent-color);
    }
  }
}

.books-card img {
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.books-card:hover img {
  transform: scale(1.1);
}

/* navbar-nav */
.navbar-nav.nav-link-white {
  .nav-link {
    color: white !important;
    font-weight: 500;

    &:hover {
      color: var(--accent-color) !important;
    }
  }
}

.navbar-stick .nav-link-white .nav-link {
  color: black !important;
}