:root {
  /* --mdb-primary: #007a33; */
  /* --mdb-primary: rgb(0, 122, 51);
  --mdb-primary-rgb: 0, 122, 51;
  --mdb-secondary: rgb(125, 186, 0);
  --mdb-secondary-rgb: 125, 186, 0; */

  --color-surface: #ffffff;
  --color-surface-transparent-8: rgba(255, 255, 255, 0.8);

  --navbar-height: 96px;

  --swiper-theme-color: var(--mdb-primary);
  --swiper-pagination-color: var(--mdb-primary);
}

.swiper-button-prev,
.swiper-button-next {
  /* Override Swiper */
  --swiper-theme-color: var(--mdb-primary);
}

body {
  /* background-color: var(--mdb-gray-200); */
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  top: 0px !important;
}
@media (max-width: 576px) {
  body {
    /* Increase font size on mobile*/
    font-size: 1.2rem;
  }
}

/* Dimensions */
.wh-64px {
  width: 64px;
  height: 64px;
}

/* Margin */
.mt-navbar {
  margin-top: var(--navbar-height);
}
.my-64 {
  margin-top: 64px;
  margin-bottom: 64px;
}
.mt-minus-64 {
  margin-top: -64px;
}
.mb-minus-64 {
  margin-bottom: -64px;
}

/* Padding */
.py-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}

/* Color */
.color-primary {
  background-color: var(--mdb-primary);
}
.color-secondary {
  background-color: var(--mdb-secondary);
}

/* Hide translate */
.skiptranslate iframe {
  height: 0px;
  display: none;
}

/* Column */
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15,
.col-xl-15 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}
.col-xs-15 {
  width: 20%;
  float: left;
}
@media (min-width: 576px) {
  .col-sm-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 768px) {
  .col-md-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-lg-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-xl-15 {
    width: 20%;
    float: left;
  }
}

/* Section */
.menu-title {
  height: 256px;
}

/* Container */
.container {
  max-width: 1920px;
}
.navbar .container {
  background: none;
}
#hero .container {
  background: none;
}

/* Button */
.btn-fab-lg {
  --mdb-btn-width-lg: 64px;
  --mdb-btn-height-lg: 64px;
  --mdb-btn-padding-top: 0.75rem;
  --mdb-btn-padding-bottom: 0.6875rem;
  --mdb-btn-padding-x: 1.6875rem;
  --mdb-btn-font-size: 2rem;
  --mdb-btn-line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .btn-fab-lg {
    --mdb-btn-width-lg: 48px;
    --mdb-btn-height-lg: 48px;
    --mdb-btn-padding-top: 0.75rem;
    --mdb-btn-padding-bottom: 0.6875rem;
    --mdb-btn-padding-x: 1.6875rem;
    --mdb-btn-font-size: 1.5rem;
    --mdb-btn-line-height: 1.6;
  }
}

/* Image */
.img-section {
  width: 100%;
  min-height: calc(188px * 2);
  height: calc(25vh * 2);
  max-height: calc(256px * 2);
  object-fit: cover;
}
.img-section-half {
  width: 100%;
  min-height: 188px;
  height: 25vh;
  max-height: 256px;
  object-fit: cover;
}

/* Frontend Navbar */
#frontend-navbar {
  transition: all 0.5s;
  padding: 1rem 0;
  background-color: var(--mdb-primary);
  min-height: 96px;
}
#frontend-navbar.navbar {
  box-shadow: none;
}
#frontend-navbar .navbar-brand {
  --logo: var(--logo-desktop);
  --logo-desktop: url("../img/logo-horizontal-pb-new.png");
  --logo-width: 256px; /* Logo's actual width */
  --logo-height: 90px; /* Logo's actual height */
  --logo-mobile: url("../img/icon.png");
  --logo-mobile-width: 90px; /* Logo's actual width */
  --logo-mobile-height: 90px; /* Logo's actual height */
  /* --logo-scrolled: url("../img/logo-horizontal-pb-new.png");
  --logo-scrolled-width: 342px;
  --logo-scrolled-height: 120px; */
  transition: all 0.25s ease;
  background: var(--logo) left center no-repeat;
  background-size: contain;
  width: var(--logo-width);
  height: var(--logo-height);
}
/* Hide the navbar brand when the navbar is expanded on mobile */
.navbar-collapse.show ~ #navbar-brand-wrapper {
  display: none !important;
}

/* Frontend Navbar if scrolled */
/* #frontend-navbar.header-scrolled,
#frontend-navbar.header-inner-pages {
  background: var(--mdb-body-bg);
}
#frontend-navbar.navbar.header-scrolled {
  box-shadow: var(--mdb-navbar-box-shadow);
}
#frontend-navbar.header-scrolled .navbar-brand {
  background: var(--logo-scrolled) left center no-repeat;
  background-size: contain;
  width: var(--logo-scrolled-width);
  height: var(--logo-scrolled-height);
} */

/* @media (min-width: 374.98px) and (max-width: 575px) {
  #frontend-navbar .navbar-brand {
    --logo: url("../img/logo-horizontal-pb-new.png");
    --logo-width: 256px;
    --logo-scrolled: url("../img/logo-horizontal-pb-new.png");
    --logo-scrolled-width: 342px;
  }
} */

@media (max-width: 374.98px) {
  #frontend-navbar .navbar-brand {
    --logo: var(--logo-mobile);
    --logo-width: var(--logo-mobile-width);
    --logo-height: var(--logo-mobile-height);
  }
}

/* Menu */
#menu .container {
  padding: 1.5rem; /* p-4 */
  padding-top: 4rem;
  height: calc(100vh - 96px);
  /* font-family: "Times New Roman", Times, serif; */
  scrollbar-width: thin;
  scrollbar-color: var(--mdb-primary) transparent;
}
#menu ul {
  list-style: none;
  padding-left: 0px;
}
#menu ul li {
  transition: all 0.25s;
  margin-bottom: 0.75rem;
}
#menu ul li:hover {
  padding-inline-start: 1rem;
}

/* Search */
#search {
  background-color: var(--mdb-body-bg);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999999;
}

#search .container {
  height: 100vh;
}

#formCari {
  max-width: 128px;
}

#formCari .form-control, /* The input */
#formCari .form-label, /* The input label */
#formCari .trailing /* Trailing icon */ {
  color: #000000;
}

@media (max-width: 1199.98px) {
  #formCari {
    max-width: 100%;
  }
}

/* Hero Section */
.hero {
  background-image: url("../img/wisuda.jpeg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 576px;
  height: 100vh;
  max-height: 542px;
}

.hero h1,
.hero h2,
.hero p {
  /* Set line height equal to lh-base to give more space between line */
  line-height: 1.5;
}

/* Card */
.card {
  border-radius: 0;
}

.card img {
  border-radius: 0;
}

/* Button */
.btn {
  border-radius: var(--mdb-border-radius-pill);
  user-select: none; /* Prevent text selection */
  -webkit-user-select: none; /* For WebKit browsers */
  -moz-user-select: none; /* For Firefox */
  -ms-user-select: none; /* For IE/Edge */
}

/* Footer */
#footer {
  font-size: 0.8rem;
}

#footer .footer-top {
  /* padding: 4rem 0 2rem 0; */
  position: relative;
  background-color: color-mix(
    in srgb,
    var(--mdb-primary),
    black 40%
  ); /* Mixes the primary color with black to make it darker */ /* Darkens by reducing lightness */
  z-index: 1;
}

#footer .footer-top h4 {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 1rem;
}

#footer .footer-top .footer-links {
  margin-bottom: 2rem;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  margin-right: 0.5rem;
  color: var(--color-on-primary);
}

#footer .footer-top .footer-links ul li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--color-on-primary-transparent-8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: var(--color-on-primary);
}

/* Line clamp */
.line-clamp-1 {
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.line-clamp-4 {
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* Gradient background */
.gradient-1 {
  background-image: linear-gradient(
      180deg,
      rgba(var(--mdb-body-bg-rgb), 0.01),
      rgba(var(--mdb-body-bg-rgb), 1) 85%
    ),
    radial-gradient(
      ellipse at top left,
      rgba(var(--mdb-primary-rgb), 0.25),
      transparent 50%
    ),
    radial-gradient(
      ellipse at top right,
      rgba(var(--mdb-secondary-rgb), 0.25),
      transparent 50%
    ),
    radial-gradient(
      ellipse at center right,
      rgba(var(--mdb-info-rgb), 0.25),
      transparent 50%
    ),
    radial-gradient(
      ellipse at center left,
      rgba(var(--mdb-warning-rgb), 0.25),
      transparent 50%
    );
}

/* Revolve */
.rev--90::before {
  bottom: 0;
  left: 0;
  transform: rotate(-90deg);
}
.rev-180::before {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.rev-90::before {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

/* Lurik */
.lurik {
  /* background: url("../img/lurik-hijau-vector-bg-2.jpg"); */
  background: url("../img/lurik.svg");
  /* opacity: 0.2; */
  opacity: 1;
  background-position: center top; /* Center horizontally */
  /* background-size: auto 50%; */
  background-repeat: repeat-x;
  /* background-repeat: no-repeat; */
  /* background-attachment: fixed; */
  background-size: contain;
  width: 100%;
  /* height: 192px; */
  height: 54px;
  max-height: 54px;
  position: absolute;
}
.lurik-2 {
  /* background: url("../img/lurik-hijau-vector-bg-2.jpg"); */
  background: url("../img/lurik-2.svg");
  /* opacity: 0.2; */
  opacity: 1;
  background-position: center top; /* Center horizontally */
  /* background-size: auto 50%; */
  background-repeat: repeat-x; /* Repeat horizontally */
  /* background-attachment: fixed; */
  background-size: contain;
  width: 100%;
  /* max-width: 1920px; */
  /* height: 192px; */
  height: 24px;
  max-height: 24px;
  position: absolute;
}
.lurik-3 {
  /* background: url("../img/lurik-hijau-vector-bg-2.jpg"); */
  background: url("../img/lurik-3.svg");
  /* opacity: 0.2; */
  opacity: 1;
  background-position: left top; /* Center horizontally */
  background-size: contain;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  /* background-size: cover; */
  width: 100%;
  max-width: 530px;
  /* max-width: 1920px; */
  /* height: 192px; */
  height: 20px;
}
.lurik-3-fill {
  /* background: url("../img/lurik-hijau-vector-bg-2.jpg"); */
  background: url("../img/lurik-3.svg");
  /* opacity: 0.2; */
  opacity: 1;
  background-position: left top; /* Center horizontally */
  background-size: 100% auto;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  /* background-size: cover; */
  transform: scaleX(
    0.749
  ); /* Scale factor to reduce height from 342px to 256px */
  width: 100%;
  max-width: 530px;
  /* max-width: 1920px; */
  /* height: 192px; */
  height: 20px;
}
.lurik-4 {
  /* background: url("../img/lurik-hijau-vector-bg-2.jpg"); */
  background: url("../img/lurik-4.svg");
  /* opacity: 0.2; */
  opacity: 1;
  background-position: left top; /* Center horizontally */
  background-size: contain;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  /* background-size: cover; */
  width: 100%;
  max-width: 260px;
  /* max-width: 1920px; */
  /* height: 192px; */
  height: 20px;
}
.lurik-silk {
  background: url("../img/lurik-hijau-silk-vector-bg.png");
  opacity: 0.2;
  background-position: center top; /* Center horizontally */
  background-size: auto 100%; /* Preserve height, auto width */
  background-repeat: repeat-x; /* Repeat horizontally */
  width: 100%;
  min-height: 433px;
  position: absolute;
}
.lurik-silk-inv {
  background: url("../img/lurik-hijau-silk-vector-bg-inv.png");
}

/* Slideshow */
/* #hero .container .row {
  height: 100vh;
  max-height: 1080px;
}
#hero .section-slideshow {
  position: static;
  width: 100%;
  max-width: 1920px;
  height: 100vh;
  max-height: 1080px;
  max-height: 700px;
  background-size: cover;
  background-position: center;
} 
#hero .card-body {
  background: rgba(var(--mdb-black-rgb), 0.5);
} */
