@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.cdnfonts.com/css/open-dyslexic");

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #fff;
  color: #333;
  font-size: 17px !important;
  line-height: 30px;
  transition: all 1s ease;
}

a {
  text-decoration: none;
}

p {
  margin: 0 0 20px 0;
}
.container {
  max-width: 1280px;
}
.global-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* colors */
.bg-white {
  background-color: #fff;
}
.bg-red {
  background-color: #c61d25;
}
.bg-blue {
  background-color: #dd0404;
}
.bg-yellow {
  background-color: #fdb92e;
}
.bg-grey {
  background-color: #eee;
}
.bg-darkgrey {
  background-color: #ddd;
}
.bg-black {
  background-color: #000;
}

.red {
  color: #c61d25;
}
.yellow {
  color: #fdb92e;
}
.white {
  color: #fff;
}

.top {
  position: fixed;
  z-index: 998;
  width: 100%;
  color: #fff;
  font-size: 1em;
}
.top a {
  color: #111;
}
.top * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.top ul {
  list-style: none;
}
.sticky {
  position: fixed;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.brand {
  margin: 0;
}

.header {
  display: block;
  top: 0;
  left: 0;
  height: auto;
  padding: 0;
  margin: 0 auto;
  z-index: 999;
  border: none;
  outline: none;
  font-size: 1em;
}

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin: 0;
}
.header .wrapper1 {
  padding: 1em 3em;
  background: rgba(221, 4, 4, 1);
}
.header .wrapper2 {
  padding: 0 1em;
  background: rgba(26, 28, 32, 1);
}

.header-item-left {
  display: flex;
  justify-content: flex-start;
}

.header-item-right {
  display: flex;
  justify-content: flex-end;
}

.header-item-center {
  width: 100%;
  text-align: center;
}

.header-item-right .menu-icon {
  font-size: 1rem;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  margin-left: 1rem;
  border: none;
  outline: none;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-icon-nospace {
  margin-left: 0 !important;
}
.menu-icon-smallspace {
  margin: 0 0.25rem !important;
}
.menu-mobile-header,
.menu-mobile-trigger {
  display: none;
}

.menu { font-size: .9em; }
.menu i { font-size: .8em; margin: 0 0 0 10px; }
.menu ul { margin: 0; padding: 0; list-style: none; }
.menu > ul { position: relative !important; }
.menu ul li { text-align: left; }
.menu ul li ul li { text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.1);  }
.menu,
.menu a { color: #e2e2e2; text-decoration: none; display: block; white-space: nowrap; }
.menu a:hover { background: #dd0404; }
.menu-dropdown,
.menu input[type=checkbox] { display: none; }
.menu-dropdown { width: 250px; }
.menu label:hover { cursor: pointer; }


/* large styles */
@media screen and (min-width: 1025px) {
  .menu { width: 100%; }
  .menu > label,
  .menu input[type=checkbox] { display: none; }
  .menu a { padding: 10px 20px; }
  .menu > ul > li { display: inline-block; }
  .menu-hasdropdown { position: relative; }
  .menu-hasdropdown:hover > ul { display: block; -webkit-animation: grow 0.5s ease-in-out; animation: grow 0.5s ease-in-out; }
  .menu-hasdropdown > ul { position: absolute; top: 100%; left: 0; background: #1A1C20; }
  .menu-hasflyout > ul { left: 100%; top: 0; }
  .menu-hasflyout .menu-downicon { display: none; }
}
/* look and feel only, not needed for core menu*/
@-webkit-keyframes grow {
  0% { display: none; opacity: 0; }
  50% { display: block; opacity: 0.5; }
  100% { opacity: 1; }
}
@keyframes grow {
  0% { display: none; opacity: 0; }
  50% { display: block; opacity: 0.5; }
  100% { opacity: 1; }
}
.menu-dropdown a { padding: 8px 10px; white-space: normal; }

/* narrow  */
@media screen and (max-width: 1024px) {
  .menu { position: absolute; max-height: 100vh; width: 100%; top: 57px; left: 0; overflow-y: auto; background: #1A1C20; }
  .menu > ul  { display: none; }
  .menu-righticon { display: none !important;}
  input[type=checkbox]:checked + ul { display: block; position: relative; -webkit-animation: grow 0.5s ease-in-out; animation: grow 0.5s ease-in-out; }
  input[type=checkbox]:checked + label i { transform: rotate(90deg); }
  .menu > label { display: block; padding: 10px; }
  .menu a { padding: 10px; }
  .menu > ul i { padding: 7px 10px; }
  .menu > ul li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .menu-dropdown { width: 100% !important; }
  .menu-dropdown a { background: #1A1C20; }
  .menu-hasdropdown > ul a { background: #1A1C20; padding: 10px 20px;}
  .menu-hasdropdown > ul li ul a { background: #1A1C20; padding: 10px 30px;}
  .menu-hasdropdown > ul li { border-bottom: none !important; border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .menu-hasdropdown label { position: absolute; right: 0; }
}
@media screen and (min-width: 1025px) {
  .menu { margin: 0 auto; text-align: center; }
}

@media only screen and (max-width: 1024px) {
  .sticky {
    background: none;
    backdrop-filter: none;
  }
  .brand {
    margin: 0;
  }
  .header-item-right {
    margin: -5px 10px 0 0;
  }
  .header-item-center {
    width: 100%;
    text-align: left;
  }
  .wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header-item-right .menu-icon {
    top: 2px;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.55);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.search {
  cursor: pointer;
  color: #fff;
}
.search:hover {
  color: #e4a622;
}
.searcharea {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
.searchinput {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}
.searchclose {
  position: absolute;
  right: 1em;
  top: 1em;
  font-size: 1.5em;
  cursor: pointer;
}
.searchlogo {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 240px;
}
.searchlogo img {
  width: 100%;
}
.searchinput input {
  background: #fff;
  padding: 1em;
  border: 1px solid #ddd;
  border-radius: 0;
  float: left;
  width: 90%;
}
.searchinput .btn-search {
  float: left;
  width: 10%;
  height: 100%;
  background: #002240;
  color: #fff;
  border-radius: 0;
  padding: 1em;
  text-align: center;
}

.display {
  position: relative;
  margin-top: 136px;
  padding: 5em 0;
  height: calc( 100vh - 136px );
}
.display:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}
.display:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}
.display video {
  position: absolute;
  margin: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  top: 0;
  left: 0;
  object-fit: cover;
}
.display .content {
  position: absolute;
  width: 70%;
  bottom: 10%;
  left: 10%;
  z-index: 2;
  color: #fff;
}
.display .quote {
  position: relative;
  padding: 0 0 0 3px;
  margin: 1em 0 0 0;
}
/*.display .quote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
}*/
.display h1 {
  font-size: 3em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0;
  padding: 0;
  text-shadow: 0 0 5px rgba(0,0,0,0.6);

}

.partner {
  padding: 0 1em 0 0;
  margin: 0 1em 0 0;
  border-right: 1px solid white;
}
.partner img {
  height: 50px;
  width: auto;
  margin: 2px 0.5em 0 0.5em;
}

.welcome {
  position: relative;
  padding: 3em 0 3em 0;
  overflow: hidden;
  background: #FFF;
}
.welcome img {
  width: 100%;
  height: auto;
}
.welcome .container {
  position: relative;
  z-index: 2;
}
.welcome .content { margin: 0; }
.welcome .content h1 {
  font-size: 2.25em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 1em 0;
  color: #000;
}
.welcome .content h1 .gold { color: #DD9B33; }

.welcome2 {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: url(/images/bg-welcome2.png?1) no-repeat center 0;
}
.welcome2 img {
  width: 100%;
  height: auto;
}
.welcome2 .container {
  position: relative;
  z-index: 2;
}
.welcome2 .content2 { }
.welcome2 .content2 h2 {
  font-size: 2.25em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 1em 0;
  color: #000;
}

.statistik { position: relative; padding: 3em 0; }
.statistik .content-wrap { position: relative; z-index: 2; text-align: center; padding: 7em 0; }
.statistik .col-md-3:nth-child(odd) .content-wrap { background: #CFCFCF; }
.statistik .col-md-3:nth-child(even) .content-wrap { background: #F3F3F3; }
.statistik .content { position: absolute; width: 90%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.statistik .content span { display: block; height: 60px; color: #333; }
.statistik .content h2 {
  font-size: 3em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0;
}

.studi { padding: 0 0 3em 0; }
.studi h2 {
  font-size: 3em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 .5em 0;
}
.studi h3 {
  font-size: 2.75em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 .5em 0;
  color: #FFF;
}
.studi h3.dark {
  color: #000;
}
.studi h3 div { font-size: .6em; }
.studi img { width: 100%; height: auto; }
.studi .box { position: relative; margin: 1.5em 0 0 0; overflow: hidden; }
.studi .box .title-box { position: absolute; z-index: 0; top: 2em; left: 2em; width: 60%; }
.studi .box .content { position: absolute; z-index: 1; color: #FFF; top: -100%; width: 100%; height: 100%; background: rgba(0,0,0,.9); padding: 1em; transition: ease all .1s; }
.studi .box .roundbut { position: absolute; z-index: 2; cursor: pointer; width: 60px; height: 60px; line-height: 60px; text-align: center; bottom: 1em; left: 1em; border-radius: 50%; background: #DD9B33; color: #FFF; font-size: 1.5em; transition: ease all .1s; }
.spined{ rotate: 45deg; background: #dd0404 !important; }
.studi .box .roundbut2 { display: none; position: absolute; z-index: 2; cursor: pointer; transition: ease all .1s; left: 1em; bottom: 1em; width: auto; }
.spined{ rotate: 45deg; background: #dd0404 !important; }
.opened { top: 0 !important; }
.studi .box a.btn-studi { background: #CE1C1A; color: #FFF; }

.kemahasiswaan {
  position: relative;
  padding: 3em 0 0 0;
  overflow: hidden;
  background: #F3F3F3;
}
.kemahasiswaan .content {
  position: relative;
  z-index: 2;
  margin: 0 0 3em 0;
}
.kemahasiswaan h2 {
  font-size: 1.75em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 0.5em 0;
  color: #000;
}
.kemahasiswaan .image {
  position: relative;
  z-index: 2;
}
.kemahasiswaan img {
  width: 100%;
  height: auto;
  margin: 0 0 1em 0;
}

.gurubesar {
  position: relative;
  padding: 0;
  text-align: center;
}
.gurubesar h2 {
  font-size: 2.25em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0;
  text-align: left;
}
.gurubesar .content {
  position: relative;
  border: 1px solid #ccc;
  background: #dd0404;
  background: linear-gradient(
    180deg,
    rgba(221, 4, 4, 1) 0%,
    rgba(221, 4, 4, 1) 40%,
    rgba(255, 255, 255, 1) 40%
  );
  text-align: center;
  padding: 1em;
}
.gurubesar .content:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  filter: brightness(5) opacity(0.1);
  background: url(/images/big-logo.png) no-repeat top center;
  background-size: contain;
}
.gurubesar .content .image {
  position: relative;
  z-index: 2;
  width: 50%;
  margin: 0 auto;
  height: 0;
  padding-bottom: 50%;
  border-radius: 50%;
  border: 5px solid #dd0404;
  overflow: hidden;
}
.gurubesar .content img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.gurubesar .content .text {
  position: relative;
  z-index: 2;
  padding: 1em 0;
}
.gurubesar .content .text .nama {
  font-weight: bold;
  height: 70px;
}
.gurubesar .content .text .status {
  font-size: 1;
}
.gurubesar .content .text .link {
  margin: 2em 0 0 0;
}
.gurubesar .slick-slide {
  padding-top: 1em;
  padding-left: 1em;
  margin: 0;
}

.ppid {
  position: relative;
  padding: 5em 0;
  text-align: center;
  background: #eee;
}
/*.ppid:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; width: 100%; height: 100%; opacity: 1; background: #DDD url(/images/ppid.jpg) no-repeat center center fixed; background-size: cover; filter: brightness(.5) opacity(.2) grayscale(1); }*/
.ppid h1 {
  font-size: 2.25em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 0.5em 0;
}
.ppid a {
  background: #dd0404;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  padding: 1em 2em;
}

.berita {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.berita * {
  transition: 0.5s;
}
.berita a { color: #FFF; }
.berita h1 {
  font-size: 2.25em;
  font-weight: bold;
  position: absolute;
  width: auto;
  height: 100%;
  z-index: 3;
  padding: 0.5em;
  top: 0;
  left: 0;
  background: #1F1F1F;
  color: #fff;
  font-size: 2em;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  text-transform: uppercase;
}
.berita .big-box {
  position: relative;
  height: 100%;
}
.berita .big-box:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.berita .big-box .content {
  position: absolute;
  z-index: 2;
  padding: 1em;
  bottom: 0;
  left: 4.5em;
}
.berita .big-box:hover .image img {
  transform: scale(1.1);
}
.berita .big-box:hover .content {
  background: none;
}
.berita .big-box h2 {
  font-size: 2em;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  font-size: 1.5em;
}
.berita .box {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
  width: 100%;
}
.berita .box .content {
  position: relative;
  z-index: 2;
  height: 50%;
  padding: 1em;
  bottom: 0;
  left: 0;
  background: #F3F3F3;
}
.berita .box .content a { color: inherit; }
.berita .box h2 {
  font-size: 1.5em;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  font-size: 1em;
}
.berita .image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  overflow: hidden;
  margin: 0;
}
.berita .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.berita .date {
  color: #DD9B33;
  font-size: 0.8em;
  margin: 0 0 1em 0;
}
.berita .box:hover .image img {
  transform: scale(1.2);
}
.berita .detect:nth-child(2n + 2) .box .content {
  order: 1;
  background: #dd0404;
  color: #FFF;
}
.berita .detect:nth-child(2n + 2) .box .content a {
  color: #FFF;
}
.berita .detect:nth-child(2n + 2) .box .image {
  order: 2;
}
.all-news-link { text-align: center; width: 100%; margin: 2em 0 3em 0; }
.all-news-link a {
  background: #dd0404;
  border-radius: .375rem;
  display: inline-block;
  color: #FFF;
  font-weight: bold;
  padding: 1em 2em;
}

.lokasi {
  position: relative;
  padding: 2.5em 0 0 0;
  overflow: hidden;
}
.lokasi .content {
  position: relative;
  z-index: 2;
}
.lokasi .box {
  position: relative;
  z-index: 2;
  margin: 2em 0 0 0;
}
.lokasi .col-md-6:nth-child(odd) .box { background: #dd0404; color: #FFF; }
.lokasi .col-md-6:nth-child(even) .box { background: #CFCFCF; }
.lokasi .box span {
  display: block;
  padding: 1em 1em .5em 1em;
}
.lokasi h2 {
  font-size: 2.25em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 0.5em 0;
}
.lokasi h3 {
  font-size: 1.5em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 0.5em 0;
}
.lokasi .image {
  position: relative;
  z-index: 2;
}
.lokasi img {
  width: 100%;
  height: auto;
  margin: 0;
}

.agenda {
  position: relative;
  padding: 3em 0;
  background: #f9f9f9;
}
/*.agenda:before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: .2; z-index: -1; background: url(/images/ancient.jpg) no-repeat center center; background-size: cover; filter: sepia(1); }
.agenda .round { position: absolute; z-index: -1; width: 650px; height: 650px; filter: opacity(.3); border-radius: 100%; border: 100px solid #243567; bottom: 20%; right: 0; }
.agenda .round:before { content :""; position: absolute; width: 650px; height: 650px; filter: opacity(.5); border-radius: 100%; border: 50px solid #243567; top: -20%; right: -5%; }*/
.agenda h2 {
  font-size: 2.25em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 1em 0;
  text-align: center;
}
.agenda .title-box {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.agenda .title-box img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}
.agenda .box {
  position: relative;
  margin: 0 0 0.5em 0;
  padding: 0 0 0.5em 0;
  border-bottom: 1px solid #aaa;
}
.agenda .box:first-child {
  padding-top: 0.5em;
  border-top: 1px solid #ccc;
}
.agenda .box:last-child {
  margin-bottom: 0;
}
.agenda .box a {
  color: inherit;
}
.agenda .box .thedate {
  position: relative;
}
.agenda .box .view {
  text-align: right;
}
.agenda .box .month {
  font-size: 0.7em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1em;
  margin: .7em 0;
}
.agenda .box .date {
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  text-align: center;
  font-size: 2em;
  line-height: 1em;
}
.agenda .box .day {
  font-size: 0.7em;
  text-transform: uppercase;
  text-align: center;
}
.agenda .box .title {
}
.agenda .viewall {
  display: block;
  text-align: center !important;
  margin: 3em 0 0 0;
}
.agenda .viewall a {
  background: #dd0404;
  border-radius: .375rem;
  display: inline-block;
  color: #FFF;
  font-weight: bold;
  padding: 1em 2em;
}
.agenda .statue {
  display: none;
  position: absolute;
  z-index: -1;
  width: 400px;
  height: 500px;
  bottom: 0;
  right: 0%;
  filter: sepia(1);
  background: url(/images/statue.png) no-repeat top center;
  background-size: cover;
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.testimoni {
  position: relative;
  z-index: 2;
  padding: 3em 0;
  background: url(/images/bg-testi.jpg) no-repeat center center;
  background-size: cover;
}
.testimoni h2 {
  font-size: 2.25em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 0.5em 0;
  text-align: center;
  color: #FFF;
}
.testimoni .testimoni-box {
}
.testimoni .testimoni-box .testimoni-content {
  position: relative;
  background: #f9f9f9;
  text-align: center;
  margin: 0;
  padding: 4em 2em 2em 2em;
}
.testimoni .testimoni-box .testimoni-content .image {
  position: absolute;
  width: 120px;
  height: 120px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100%;
  border: 10px solid #f9f9f9;
}
.testimoni .testimoni-box .testimoni-content .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}
.testimoni .testimoni-box .testimoni-content .text {
  font-size: 1em;
  font-style: italic;
  margin: 0 0 1em 0;
}
.testimoni .testimoni-box .testimoni-content .name {
  font-size: 0.8em;
  font-weight: bold;
}
.testimoni .testimoni-box .testimoni-content .status {
  font-size: 0.8em;
  color: #be0404;
}
.testimoni .slick-slider {
  margin: 0;
}
.testimoni .slick-slide {
  padding-top: 3.5em;
  margin: 0 1em;
}
.testimoni .slick-dots {
  position: relative;
  bottom: 2em;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
}

.sdg {
  position: relative;
  z-index: 3;
  padding: 3em 0;
  background: #f9f9f9;
}
.sdg h1 {
  font-size: 2.25em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 0.5em 0;
  color: #dd0404;
}
.sdg img {
  width: 100%;
  height: auto;
  margin: 0 0 1em 0;
}

.sdg-area-inner { text-align: center; padding: 3em 0 0 0; }
.sdg-area-inner h5 { font-size: 1em; font-weight: 600; margin: 0 0 1em 0; }
.sdg-area-inner .box { padding: 5px; display: inline-block; border-radius: 8px; border: 1px solid #DDD; margin: .25em; }
.sdg-area-inner img { border-radius: 5px; width: 80px !important; height: 80px !important; }
.footer {
  position: relative;
  z-index: 3;
  padding: 3em 0 0 0;
  overflow: hidden;
}
.footer .biglogo {
  position: absolute;
  width: 800px;
  height: 800px;
  top: 10%;
  left: 50%;
  filter: brightness(5) opacity(0.1);
  background: url(/images/big-logo.png) no-repeat top center;
  background-size: contain;
}
.footer .box {
  position: relative;
  color: #fff;
  margin: 0 auto;
  padding: 0;
}
.footer .box h3 {
  font-size: 1.1em;
  font-weight: bold;
  color: #ecb93d;
}
.footer .box ul {
  list-style: none;
  margin: 0 0 2em 0;
  padding: 0;
}
.footer .box ul li {
  margin: 0 0 0.5em 0;
  transition: 0.5s;
}
.footer .box ul li:hover {
  margin: 0 0 0.5em 10px;
}
.footer .box ul li.static:hover {
  margin: 0 0 0.5em 0;
}
.footer .box a {
  color: inherit;
}
.footer .box a:hover {
  color: #ecb93d;
}
.footer .copy {
  position: relative;
  padding: 2em 0;
  font-size: 1em;
  color: #fff;
  text-align: center;
}
.footer .copy:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #ecb93d;
}
.footer-sep { padding-top: 2em !important; border-top: 1px solid #ecb93d; }
ul.sosmed i { margin: 0 10px 0 0; }

.inner-area {
  position: relative;
  margin-top: 100px;
  padding: 4em 0;
  min-height: 100vh;
}
.inner-area a {
  color: #333;
}
.inner-area .content {
  margin: 0 1em 1em 0; /*text-align: justify;*/
}
.inner-area .content-section {
  margin: 0 0 3em 0;
}
.box-dosen-wrapper {
  margin: 0 0 2.5em 0 !important;
}
.inner-area .with-line {
  padding: 0 0 2em 0;
  border-bottom: 1px solid #ddd;
}
.inner-area .content-section img {
  width: 100%;
  height: auto;
}
.inner-area .content-section img.logo-alumni { width: 50%; max-width: 300px; height: auto; margin: 0 auto 1em auto; }
.inner-area .content-section .feat-image {
  margin: 0 0 1em 0;
}
.inner-area .content-section .feat-image img {
  width: 100%;
  height: auto;
  margin: 0 0 1em 0;
}
.inner-area .content-section .btn-readmore { 
  background: #dd0404 !important;
  color: #fff !important;
  margin: 0 0 1em 0;
}
.inner-area h1 {
  font-size: 2.5em;
  font-weight: 800;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 1em 0;
}
.inner-area h2 {
  font-size: 2em;
  font-weight: 800;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 .5em 0;
}
.inner-area h3 {
  font-size: 1.5em;
  font-weight: 600;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 .5em 0;
}
.inner-area .red-box { position: relative; background: #CD1C18 url(/images/bg-welcome2.png) no-repeat 80% -20%; background-blend-mode: multiply; height: 0; padding-bottom: 60%; margin: 2em 0 0 0; }
.inner-area .red-box .text { position: absolute; z-index: 2; left: 2em; top: 2em; color: #FFF; }
.inner-area .red-box .person { position: absolute; right: 0; bottom: 0; width: 55%; }
.inner-area .red-box .person img { margin: 0; padding: 0; width: 100%; height: auto; }
.inner-area .red-box .text h3 { font-size: 1.25em; }
.inner-area .grey-box { position: relative; background: #CCC url(/images/bg-welcome2.png) no-repeat 80% -20%; background-blend-mode: multiply; height: 0; padding-bottom: 60%; margin: 2em 0 0 0; }
.inner-area .grey-box .text { position: absolute; z-index: 2; left: 2em; top: 2em; }
.inner-area .grey-box .person { position: absolute; right: 0; bottom: 0; width: 55%; }
.inner-area .grey-box .person img { margin: 0; padding: 0; width: 100%; height: auto; }
.inner-area .grey-box .text h3 { font-size: 1.25em; }
.inner-area .inner-mitra { text-align: center; }
.inner-area .inner-mitra img { height: 80px; width: auto; margin: 2em }
.inner-area .inner-mitra-box div { display: inline; }
.inner-area .col-md-4:nth-child(odd) .layanan-box { background-color: #be0404; color: #FFF; padding: 1em; margin-bottom: 1.5em; }
.inner-area .col-md-4:nth-child(even) .layanan-box { background: #EEE; padding: 1em; margin-bottom: 1.5em }
.inner-area .inner-banner { position: relative; margin: 0; padding: 0; color: #333333; }
.inner-area .inner-banner img { margin: 0; padding: 0; }
.inner-area .inner-banner .text { position: absolute; left: 0; top: 50%; transform: translateY(-50%); padding: 2em; }
.inner-area .inner-banner .text a { background: #333333; color: #FFF; border-radius: 0; font-weight: bold; padding: .5em 2em; }
.inner-area .inner-banner .text a:hover { background: #CD1C18; }
.inner-area-bg-grey {
  background-color: #eee;
  padding: 2em;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link { background: #CD1C18; font-weight: bold; }
.nav-link { color: #000; font-weight: bold; text-align: left; }
.nav-link:hover { color: #CD1C18; }

a.pedoman-box { color: #FFF; }

.kolom-cpl { width: 10%; }

.archive1-area {
  position: relative;
  margin-top: 100px;
  padding: 5em 0;
  min-height: 100vh;
}
.archive1-area a {
  color: #333;
}
.archive1-area h1 {
  font-size: 2.5em;
  font-weight: bold;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 .5em 0;
}
.archive1-area .content {
  margin: 0 1em 1em 0;
  text-align: justify;
}
.archive1-area .box {
  padding: 1em 0;
  border-bottom: 1px solid #ccc;
}
.archive1-area .box .image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  margin: 10px 0 0 0;
}
.archive1-area .box .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.archive1-area .box h2 {
  font-size: 1.25em;
  color: #2a3566;
  margin: 0 0 0.5em 0;
}
.archive1-area .box .excerpt {
  margin: 0;
}
.archive1-area .box .date {
  font-size: 0.8em;
  margin: 1em 0 0 0;
  color: #d5a631;
}
.archive1-area .paging {
  padding: 3em 0 0 0;
}

.archive2-area {
  position: relative;
  margin-top: 100px;
  padding: 5em 0;
  min-height: 100vh;
}
.archive2-area a {
  color: #dd0404;
}
.archive2-area h1 {
  font-size: 2.5em;
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  margin: 0 0 0.5em 0;
  text-align: left;
}
.archive2-area .box {
  padding: 0.5em 0;
  margin: 0;
  border-bottom: 1px solid #ccc;
}
.archive2-area .content {
  margin: 0 1em 1em 0;
  text-align: justify;
}
.archive2-area .paging {
  padding: 3em 0 0 0;
}

.dekan-box {
  padding: 1em;
  border: 1px solid #ddd;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  height: 100%;
}
.dekan-box img {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}
.dekan-box .nama {
  font-size: 0.8em;
  font-weight: bold;
}
.dekan-box .misc {
  font-size: 0.8em;
}

.fab-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  user-select: none;
  position: fixed;
  bottom: 1.5em;
  right: 1em;
  z-index: 101;
}
.fab-container:hover {
  height: 100%;
}
.fab-container:hover .sub-button:nth-child(2) {
  transform: translateY(-60px);
}
.fab-container:hover .sub-button:nth-child(3) {
  transform: translateY(-110px);
}
.fab-container:hover .sub-button:nth-child(4) {
  transform: translateY(-160px);
}
.fab-container:hover .sub-button:nth-child(5) {
  transform: translateY(-210px);
}
.fab-container:hover .sub-button:nth-child(6) {
  transform: translateY(-260px);
}
.fab-container .fab {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: #f9b129;
  border-radius: 50%;
  z-index: 2;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.fab-container .fab .fab-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.fab-container .fab .fab-content .material-icons {
  color: white;
  font-size: 2em;
}
.fab-container .sub-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  right: 10px;
  height: 40px;
  width: 40px;
  background-color: #f9b129;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.fab-container .sub-button:hover {
  cursor: pointer;
}
.fab-container .sub-button .material-icons {
  color: white;
  padding-top: 6px;
}

.go-center { text-align: center; }

.chatbox {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  z-index: 1001;
  width: 325px;
  right: 5em;
  bottom: -1.5em;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  overflow-y: auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.chatbox-open {
  opacity: 1;
  visibility: visible;
  bottom: 1.5em;
}
.chabox-close {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.chatbox-header {
  position: relative;
  background: #000000;
  padding: 1.25em 1em;
  font-weight: bold;
  color: #fff;
  line-height: 1em;
  border-bottom: 1px solid #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5),
    0 2px 4px -1px rgba(0, 0, 0, 0.5);
}
.chatbox-header img {
  width: 40px;
  height: auto;
  float: left;
  margin: -12px 10px 0 0;
}
.chatbox-content {
  background: #fff;
  padding: 1em;
  height: 350px;
  overflow-y: auto;
  font-size: 0.8em;
}
.chatbox-content::-webkit-scrollbar {
  width: 5px;
}
.chatbox-content::-webkit-scrollbar-track {
  background: #000000;
}
.chatbox-content::-wesbkit-scrollbar-thumb {
  background: #e4a622;
}
.chatbox-content .ask {
  background: #ffaa95;
  width: 90%;
  padding: 10px;
  margin: 0 0 10px 0;
  border-radius: 0.375rem;
}
.chatbox-content .ask a {
  display: block;
  background: #fff;
  padding: 5px;
  margin: 5px 0 0 0;
  color: #c30;
  border-radius: 0.375rem;
}
.chatbox-content .answer {
  background: #95ff95;
  width: 90%;
  padding: 10px;
  margin: 0 0 10px 10%;
  border-radius: 0.375rem;
}

.disabilities {
  position: fixed;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  width: 325px;
  right: -30%;
  bottom: 1.5em;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.disabilities-open {
  right: 1em;
  opacity: 1;
  visibility: visible;
}
.disabilities-head {
  position: relative;
  color: #fff;
  padding: 0;
  background: #000;
  z-index: 2;
}
.disabilities-content {
  background: #ddd;
  padding: 1em;
  height: 400px;
  overflow-y: auto;
}
.disabilities-content::-webkit-scrollbar {
  width: 5px;
}
.disabilities-content::-webkit-scrollbar-track {
  background: #000;
}
.disabilities-content::-webkit-scrollbar-thumb {
  background: #e4a622;
}
.disabilities h2 {
  font-size: 1.25rem;
  border-bottom: 1px solid #fff;
  padding: 1em;
  margin: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5),
    0 2px 4px -1px rgba(0, 0, 0, 0.5);
}
.disabilities h3 {
  font-size: 1em;
  padding: 0 0 0.5em 0;
  margin: 0 0 0.5em 0;
  color: #000;
}
.disabilities-button-close {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  color: #fff;
  cursor: pointer;
  font-size: 1.25em;
}
.disabilities-overlay {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.disabilities-overlay-open {
  opacity: 1;
  visibility: visible;
}
.disabilities-content-x {
  margin: 0 0 1.5em 0;
}
.disabilities-content-y {
  padding: 0 0 1em 0;
}
.disabilities-box {
  margin: 0 0 1em 0;
  padding: 0 0 0.5em 0;
  border-bottom: 1px solid #ccc;
  font-size: 0.8em;
}
.disabilities-box2 {
  margin: 0 0 1em 0;
  padding: 0 0 0.5em 0;
  border-bottom: 1px solid #ccc;
  font-size: 0.8em;
}
.disabilities-box span {
  position: relative;
  top: -5px;
}
.disabilities-box input[type="checkbox"] {
  position: relative;
  top: 0;
  width: 40px;
  height: 20px;
  margin: 0 1em 0 0;
  -webkit-appearance: none;
  background: #ccc;
  outline: none;
  border-radius: 20px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  cursor: pointer;
}
.disabilities-box input:checked[type="checkbox"] {
  background: #dd0404;
}
.disabilities-box input[type="checkbox"]:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 15px;
  top: 3px;
  left: 3px;
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
.disabilities-box input:checked[type="checkbox"]:before {
  left: 23px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 300px;
  user-select: none;
  margin: 0 0 1em 0;
  padding: 0 0 1em 0;
  border-bottom: 1px solid #ccc;
}
.checkbox-input {
  height: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 0;
}
.checkbox-input:checked + .checkbox-tile {
  background: #dd0404;
}
.checkbox-input:checked + .checkbox-tile .checkbox-icon,
.checkbox-input:checked + .checkbox-tile .checkbox-label {
  color: #fff;
}
.checkbox-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 83.5px;
  height: 83.5px;
  background-color: #fff;
  color: #1a1a1a;
  cursor: pointer;
  position: relative;
  margin: 0 10px 10px 0;
  transition: ease all 0.5s;
}
.checkbox-tile-big {
  width: 130px;
  height: 130px;
}
.checkbox-tile:hover {
  background: #dd0404;
  color: #fff;
}
.checkbox-icon {
  color: #000;
  font-size: 1.5em;
  transition: ease all 0.5s;
}
.checkbox-icon-lowcolor {
  color: #999;
}
.checkbox-tile:hover .checkbox-icon {
  color: #fff;
}
.checkbox-label {
  color: #111;
  text-align: center;
  font-size: 0.8em;
}
.checkbox-tile:hover .checkbox-label {
  color: #fff;
}

.controllSize a {
  transition: 0.3s ease-in-out;
}
.controllSize .boxCtrl {
  margin: 0 0 0.75em 0;
  font-size: 1.5em;
  display: flex;
  flex-wrap: wrap;
  line-height: 83.5px;
}
.controllSize .boxCtrl a {
  text-align: center;
  background-color: #fff;
  color: #1a1a1a;
  text-decoration: none;
  width: 83.5px;
  height: 83.5px;
  margin: 0 10px 0 0;
  padding: 0;
}
.controllSize .boxCtrl a:hover {
  background-color: #dd0404;
  color: #fff;
}

.epilepsy {
  filter: saturate(50%);
}
.empaired {
  filter: saturate(150%) contrast(120%);
}
.saturate-more {
  filter: saturate(150%);
}
.saturate-less {
  filter: saturate(50%);
}
.contrast-more {
  filter: contrast(120%);
}
.contrast-less {
  filter: contrast(80%);
}
.bright-more {
  filter: brightness(120%);
}
.bright-less {
  filter: brightness(80%);
}
.monochrome {
  filter: grayscale(100%);
}

.font-dyslexia {
  font-family: "Open-Dyslexic", sans-serif !important;
}
.align-left {
  text-align: left !important;
}
.align-center {
  text-align: center !important;
}
.align-right {
  text-align: right !important;
}
.image-gone {
  visibility: hidden !important;
}

.hightlight {
  border: 2px solid #0f0 !important;
}

#rg-v {
  position: fixed;
  z-index: 99999;
  top: 0;
  bottom: 0;
  left: 50vw;
  height: 100vh;
  width: 0;
  border-left: 1px dashed red;
}
#rg-h {
  position: absolute;
  z-index: 99999;
  left: 0;
  right: 0;
  top: 50vh;
  height: 0;
  width: 100%;
  border-top: 1px dashed red;
}

.spotlight {
  position: absolute;
  z-index: 201;
  width: 100%;
  height: 0;
  pointer-events: none;
  cursor: none;
  opacity: 0;
  visibility: hidden;
}
.spotlight-active {
  opacity: 1;
  visibility: visible;
  height: 100px;
}
.spotlight-overlay1 {
  position: absolute;
  bottom: 150px;
  left: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0, 0, 0, 0.8);
}
.spotlight-overlay2 {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0, 0, 0, 0.8);
}

.about-visi h2 {
  color: #fff;
}
.about-visi img {
  object-fit: cover;
  width: 100%;
  height: 100% !important;
}
.about-visi-content {
  position: relative;
  background: #dd0404;
  padding: 1em;
  color: #fff;
  height: 100%;
  overflow: hidden;
}
.about-visi-content .biglogo {
  position: absolute;
  width: 250px;
  height: 250px;
  top: 10%;
  right: 5%;
  filter: brightness(5) opacity(0.03);
  background: url(/images/big-logo.png) no-repeat top center;
  background-size: contain;
}
.about-misi h2 {
  color: #1a1a1a;
}
.about-misi img {
  object-fit: cover;
  width: 100%;
  height: 100% !important;
}
.about-misi-content {
  position: relative;
  background: #dddddd;
  padding: 1em;
  color: #1a1a1a;
  height: 100%;
  overflow: hidden;
}
.about-misi-content .round {
  position: absolute;
  width: 500px;
  height: 500px;
  filter: opacity(0.1);
  border-radius: 100%;
  border: 60px solid #243567;
  bottom: -30%;
  left: -30%;
}
.about-misi-content .round:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  filter: opacity(0.5);
  border-radius: 100%;
  border: 60px solid #243567;
  bottom: 5%;
  left: -30%;
}
.about-misi-content .round:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  filter: opacity(0.5);
  border-radius: 100%;
  border: 60px solid #243567;
  bottom: -30%;
  left: 5%;
}
.about-misi-content li {
  margin: 0 0 1em 0;
}

.table {
  text-align: left;
}
.table-unpad th {
  background-color: #dd0404;
  color: #fff;
  border-bottom: 3px solid #e4bb55;
}

.accordion {
  text-align: left;
}
.accordion-header {
  margin: 0 !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}
.accordion-button,
.accordion-button:not(.collapsed) {
  display: block !important;
  position: relative;
  background-color: #dd0404;
  color: #fff;
  border-bottom: 3px solid #e4bb55 !important;
}
.accordion-header-bigtext {
  color: #e4bb55;
}
.accordion-header-smalltext {
  font-weight: normal;
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  font-family: FontAwesome;
  content: "\f078";
  color: #fff;
  background: none;
  transition: ease all 0.5s;
}
.accordion-button:not(.collapsed)::after {
  transform: scaleY(-1) translateY(50%);
}
.accordion-body {
  background: none;
  padding: 0.5em 0 0 0;
}

.image-graph-accordion {
  width: 80%;
  margin: 0 auto 2em auto;
}

.inner-slider {
}
.inner-slider img {
  width: 100%;
  height: auto;
}
.inner-slider .slick-slider {
  margin: 0;
}
.inner-slider .slick-slide {
  margin: 0 0.5em;
}

.block-pengurus {
  margin: 0 0 2em 0;
  text-align: left !important;
}
.block-pengurus img {
  width: 100%;
  height: auto;
}
.block-pengurus .nama {
  font-weight: bold;
}
.block-pengurus .title {
  font-size: 0.8em;
}

.block-jurnal {
  margin: 0 0 2em 0;
  text-align: left !important;
}
.block-jurnal img {
  width: 100%;
  height: auto;
  margin: 0 0 2em 0;
}
.block-jurnal .link {
  font-weight: bold;
  padding: 2em 0;
}
.block-jurnal .link a { margin: 0 1em 0 0; }
.block-jurnal a { color: #be0404; margin: 0 0 0 1em; }
.block-jurnal a.red-link { color: #be0404; margin: 0; }

.block-pimpinan {
  text-align: center !important;
  margin: 0 0 2em 0;
}
.block-pimpinan img {
  width: 100%;
  height: auto;
  margin: 0 0 0.5em 0;
}
.block-pimpinan .nama {
  font-weight: bold;
  font-size: 0.8em;
}
.block-pimpinan .title {
  font-size: 0.8em;
  line-height: 1.5em;
}
a.staydark {
  color: #1a1a1a !important;
}

.btn-special {
  background: #dd0404 !important;
  color: #fff !important;
}
.btn-special:hover {
  background: #e4bb55 !important;
  color: #dd0404 !important;
}

.btn-special2 {
  background: linear-gradient(
    90deg,
    rgba(27, 52, 104, 1) 0%,
    rgba(51, 98, 195, 1) 50%,
    rgba(27, 52, 104, 1) 100%
  ) !important;
  color: #fff !important;
  border-radius: 100px;
}
.btn-special2:hover {
  background: linear-gradient(
    90deg,
    rgba(19, 36, 73, 1) 0%,
    rgba(27, 52, 165, 1) 50%,
    rgba(19, 36, 73, 1) 100%
  ) !important;
  color: #fff !important;
}

.bg-abu {
  background: #eee;
  padding: 1em;
  border-radius: 1em;
}

.sociallink {
}
.sociallink .item {
  display: inline-block;
  margin: 0 0.5em 0 0;
}
.sociallink i {
}
.sociallink a {
  display: block;
  font-size: 25px;
  background: #1a1a1a;
  color: #fff;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
}
.sociallink a:hover {
  background: #dd0404;
}

.box-gallery-youtube {
  margin: 0 0 1em 0;
  display: block;
  text-align: left;
  font-size: 0.9em;
}
.box-gallery-youtube .image {
  margin: 0;
}
.box-gallery-youtube .title {
  font-weight: normal;
  margin: 0.5em 0;
}
.box-gallery-youtube a {
  color: #1a1a1a;
}

.dosen-filter {
}
.dosen-filter .select {
  position: relative;
}
.dosen-filter .select select {
  -webkit-appearance: none;
  background-color: transparent;
  outline: 0;
  border: 0;
  display: block;
  width: 100%;
  padding: 0px 15px;
  height: 3rem;
  font-size: 1rem;
  font-weight: 400;
}
.dosen-filter .select select:focus-visible + fieldset legend {
  top: -1px;
  left: -1px;
}
.dosen-filter .select select:hover + fieldset {
  border-color: #ccc;
}
.dosen-filter .select fieldset {
  position: absolute;
  border: 1px solid #ddd;
  border-radius: 5px;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 10px;
}
.dosen-filter .select legend {
  position: relative;
  font-size: 12px;
  padding: 0 5px;
  line-height: 0;
  color: #808080;
  float: none;
  width: auto;
}
.dosen-filter .select svg {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 0;
  margin: auto;
  height: 1.5rem;
  width: 1.5rem;
  fill: #808080;
  pointer-events: none;
}

.list-dosen {
  padding: 2em 0 0 0;
}
.box-dosen {
  background: #f7f7f7;
  border: 1px solid #ddd;
  margin: 0 0 2em 0;
}
.box-dosen .urut-1 {
  order: 1;
  padding: 1em 2em;
}
.box-dosen .urut-2 {
  order: 2;
}
.box-dosen h2 {
  font-size: 1.5em;
}
.box-dosen .status {
  color: #808080 !important;
  margin: 0 0 0.5em 0;
}
.box-dosen .posisi {
  color: #808080 !important;
  margin: 0 0 1em 0;
}
.box-dosen .image {
  width: 100%;
  height: 100%;
}
.box-dosen .image2 {
  padding: 2em;
}
.box-dosen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-dosen .link a {
  font-size: 0.7em !important;
  margin: 0 0 1em 0;
}
.detail-dosen {
  padding: 0;
}
.data-dosen {
  background: #f7f7f7;
  border: 1px solid #ddd;
  padding: 1em;
  margin: 0 0 2em 0;
}

.bg-accent {
  background: #f7f7f7;
  padding: 1em;
  margin: 0 0 5em 0 !important;
  text-align: center;
}

.ppid-box {
  position: relative;
  text-align: center;
  background: #f7f7f7;
  padding: 1em;
  margin: 0 0 3em 0;
  border: 1px solid #dd0404;
  height: 100%;
}
.ppid-box h3 {
  font-family: "Plus Jakarta Sans Slab", sans-serif;
  font-size: 1.1em;
  color: #2a3566;
}
.ppid-box .icon {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto;
}
.ppid-box .icon img {
  width: 100%;
  height: 100%;
}
.ppid-box .text {
  margin: 0 0 1em 0;
}
.ppid-box .link {
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  left: 50%;
  transform: translateX(-50%);
}

.img-wrapper {
  position: relative;
}
.img-wrapper img {
}

.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
}
.img-overlay i {
  color: #fff;
  font-size: 2em;
}

#overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 5%;
}
@media screen and (min-width: 768px) {
  #overlay img {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  #overlay img {
    width: 50%;
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}
#nextButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #nextButton {
    font-size: 3em;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}
#prevButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #prevButton {
    font-size: 3em;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}
#exitButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #exitButton {
    font-size: 3em;
  }
}

.innertab section {
  display: none;
  padding: 20px 0 0;
  border-top: 1px solid #ddd;
}
.innertab input {
  display: none;
}
.innertab label {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
  color: #1a1a1a;
  border: 1px solid transparent;
}
.innertab label:before {
  font-family: fontawesome;
  font-weight: normal;
  margin-right: 10px;
}
.innertab label[for*="1"]:before {
  content: "\f328";
}
.innertab label[for*="2"]:before {
  content: "\f0c0";
}
.innertab label[for*="3"]:before {
  content: "\f03a";
}
.innertab label[for*="4"]:before {
  content: "\f005";
}
.innertab label:hover {
  color: #dd0404;
  cursor: pointer;
}
.innertab input:checked + label {
  color: #fff;
  border: 1px solid #dd0404;
  border-top: 3px solid #e4bb55;
  border-bottom: 1px solid #dd0404;
  background: #dd0404;
}
.innertab #tab1:checked ~ #content1,
.innertab #tab2:checked ~ #content2,
.innertab #tab3:checked ~ #content3,
.innertab #tab4:checked ~ #content4 {
  display: block;
}

.active > .page-link,
.page-link.active {
  background: #dd0404;
  border-color: #dd0404;
}
a.page-link:hover {
  color: #dd0404;
}

@media screen and (max-width: 650px) {
  .innertab label {
    font-size: 0;
  }
  .innertab label:before {
    margin: 0;
    font-size: 17px;
  }
}
@media screen and (max-width: 400px) {
  .innertab label {
    padding: 15px;
  }
}

@media (min-aspect-ratio: 16/9) {
}

@media (max-aspect-ratio: 16/9) {
}

@media (max-width: 1024px) {
  .header .wrapper2 {
    padding: 0;
    display: block;
  }
}

@media (max-width: 992px) {
  .header {
    padding: 0;
  }
  .header .wrapper1 {
    padding: 0.5em 0;
  }
  .top img {
    height: 40px;
    margin: 0 0 0 10px;
  }
  .top {
    background: rgba(0, 0, 0, 0.8);
  }
  .display {
    margin-top: 58px;
    height: 50vh;
  }
  .display:after {
    height: 50vh;
  }  
  .display:before {
    height: 50vh;
  }
  .display .content {
    width: 100%;
    left: 0;
    padding: 0 12px;
  }
  .display h1 {
    font-size: 1.5em;
  }
  .display .quote {
    font-size: .8em;
  }  
  .display video {
    height: 50vh;
  }
  .partner {
    display: none;
  }
  .partner img {
    height: 50px;
    width: auto;
    margin: 0 2%;
  }
  .welcome {
    padding: 3em 0;
  }
  .welcome .content h1 {
    font-size: 2em;
  }
  .welcome img {
    width: 100%;
    margin: 0 0 1em 0;
  }
  .welcome .urut1 {
    order: 2;
  }
  .welcome .urut2 {
    order: 1;
    text-align: center;
  }  
  .welcome2 .content2 img { margin: 3em 0 0 0; width: 50%; }
  .welcome2 .content2 h2 {
    font-size: 2em;
  }  
  .statistik { padding: 3em 0 0 0; }
  .statistik .content-wrap { padding: 3em 0; margin: 0 0 1em 0; }
  .statistik .content span { height: auto; }
  .statistik .content h2 {
    font-size: 2em;
  }
  .kemahasiswaan {
    padding: 3em 0 0 0;
  }  
  .kemahasiswaan .content {
    margin: 0 0 3em 0;
  }
  .kemahasiswaan .biglogo {
    display: none;
  }
  .kemahasiswaan h1 {
    font-size: 1.5em;
  }
  .kemahasiswaan .urut1 {
    order: 2;
  }
  .kemahasiswaan .urut2 {
    order: 1;
  }
  .kemahasiswaan img {
    margin: 0 0 1em 0;
  }
  .kemahasiswaan ul li {
    float: none;
    width: 100%;
  }
  .berita h1 {
    position: relative;
    writing-mode: inherit;
    transform: rotate(0);
    font-size: 1.5em;
  }
  .berita .big-box {
    position: relative;
    height: 100%;
    background: #dd0404;
  }
  .berita .big-box:before {
    display: none;
  }
  .berita .big-box .content {
    position: relative;
    z-index: 2;
    padding: 1em;
    bottom: auto;
    left: auto;
    color: #fff;
  }
  .berita .big-box:hover .image img {
    transform: scale(1);
  }
  .berita .big-box:hover .content {
    background: none;
  }
  .berita .big-box h2 {
    font-family: "Plus Jakarta Sans Slab", sans-serif;
    font-size: 1em;
  }
  .berita .box .content {
    position: relative;
    font-size: 1em;
    padding: 1em;
    bottom: auto;
    left: auto;
  }
  .berita .box:hover .image img {
    transform: scale(1);
  }
  .berita .detect:nth-child(2n + 2) .box .content {
    order: 2;
  }
  .berita .detect:nth-child(2n + 2) .box .image {
    order: 1;
  }
  .agenda {
    padding: 3em 0;
  }
  .agenda .box .month {
    font-size: 10px;
  }
  .agenda .box .date {
    font-size: 33px;
  }
  .agenda .box .day {
    font-size: 10px;
  }
  .agenda .viewall {
    margin: 3em 0;
  }
  .testimoni {
    padding: 3em 0;
  }
  .testimoni h1 {
    font-size: 1.5em;
  }
  .testimoni .statue {
    display: none;
  }
  .testimoni .slick-slide {
    margin: 0 0.5em;
  }
  .sdg h1 {
    font-size: 1.5em;
  }
  .disabilities {
    width: 80%;
    right: -80%;
    max-width: 320px;
  }
  .disabilities-open {
    right: 0;
  }
  .checkbox-tile-big {
    width: 120px;
    height: 120px;
  }
  .hide-mobile {
    display: none !important;
  }
  .searchinput {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  .searchinput input {
    width: 80%;
  }
  .searchinput .btn-search {
    width: 20%;
  }
  .inner-area {
    position: relative;
    margin-top: 80px;
    padding: 3em 0;
    min-height: 100vh;
  }
  .inner-area .content-section {
    margin: 0 0 3em 0;
  }
  .inner-area .content {
    margin: 0 0 1em 0;
  }
  .inner-area h1 {
    font-size: 1.5em;
  }
  .inner-area h2 {
    font-size: 1.25em;
    font-weight: 600;
  }
  .inner-area h3 {
    font-size: 1em;
    font-weight: 600;
  }

  .inner-area .red-box { margin: 3em 0 0 0; }
  .inner-area .red-box .text { left: 1em; top: 1em; width: 60%; font-size: .8em; }
  .inner-area .red-box .text p { margin: 0 0 .5em 0; line-height: 1.25em; }
  .inner-area .red-box .text h3 { font-size: 1.5em; }
  .inner-area .grey-box { margin: 1em 0 0 0; }
  .inner-area .grey-box .text {  left: 1em; top: 1em; width: 60%; font-size: .8em }
  .inner-area .grey-box .text p { margin: 0; }
  .inner-area .grey-box .text h3 { font-size: 1.5em; }
  .inner-area .inner-mitra { text-align: center; }
  .inner-area .inner-mitra img { width: auto; height: 50px; margin: 1em 0; }
  .inner-area .inner-mitra-box { display: flex; flex-direction: column; flex-basis: 100%; flex: 2; margin: 0 0 1em 0; }
  .inner-area .col-md-4:nth-child(odd) .layanan-box { margin-bottom: 1em; }
  .inner-area .col-md-4:nth-child(even) .layanan-box { margin-bottom: 1em; }
  .inner-area-bg-grey { padding: 1em; }
  .inner-area-bg-grey h3 { font-size: 1.25em; }

  .inner-area .inner-banner { position: relative; margin: 0; padding: 0; color: #FFF; background: #CE1C1A; }
  .inner-area .inner-banner .text { position: relative; left: 0; top: 0; transform: translateY(0); padding: 1em 1em 1.5em 1em; text-align: center }
  .inner-area .inner-banner .text h2 { text-align: center !important; }
  .inner-area .inner-banner .text a { background: #e4a622; color: #FFF; border-radius: 0; font-weight: bold; padding: .5em 2em; }
  .inner-area .inner-banner .text a:hover { background: #e4a622; color: #FFF; }

  .inner-area .tab-content-cpl { background: #EEE; padding: 1em; margin: 1em 0 0 0; border-radius: 0.375rem; }

  .gurubesar .slick-slide { padding: 0 12px; margin: 0; }

  .kolom-cpl { width: 25%; }

  .studi { padding: 3em 0; }
  .studi h2 { font-size: 2em; }
  .studi h3 { font-size: 2em; }
  .studi h3 div { font-size: .6em; }
  .studi .box .title-box { font-size: .8em; top: 1em; left: 1em; }
  .studi .box .content { padding: 1em; font-size: .6em; display: none; }
  .studi .box .roundbut { display: none; }
  .studi .box .roundbut2 { display: block; }
  .studi .box .roundbut2 a{ color: #FFF; }
  .studi .box a.btn-studi { background: #CE1C1A; color: #FFF; }
  .studi .box a.btn-studi2 { margin:10px 0 0 0; background: #FFF; color: #000; font-weight: bold; }
  .studi .box a.btn-studi3 { margin: 10px 0 0 0; background: #CE1C1A; color: #FFF; font-weight: bold; }

  .lokasi { padding: 3em 0 0 0; }
  .lokasi .box {
    margin: 0;
  }
  .lokasi .box span { padding: 1em; }
  .lokasi h2 {
    font-size: 2em;
  }
  .lokasi h3 {
    font-size: 1.5em;
    font-weight: bold;
    font-family: "Plus Jakarta Sans Slab", sans-serif;
    margin: 0 0 0.5em 0;
  }
  .lokasi .image {
    position: relative;
    z-index: 2;
  }
  .lokasi img {
    width: 100%;
    height: auto;
    margin: 0 0 1em 0;
  }

  .box-dosen .urut-1 {
    order: 2;
    padding: 1em 2em;
  }
  .box-dosen .urut-2 {
    order: 1;
  }
  .image-graph-accordion {
    width: 100%;
    margin: 0 auto 2em auto;
  }
}

#answer-box,
#ask-box,
#initiate-box {
  display: none;
}

/* GRID BUILDER */
.filament-tiptap-grid-builder {
    display: grid;
    gap: 1.25rem;
}

/* Required for columns to behave inside grid */
.filament-tiptap-grid-builder__column {
    display: block;
    min-width: 0;    /* ← prevents text/image overflow */
    overflow-wrap: break-word; /* ← safety for long content */
}

@media (max-width: 768px) {
    .filament-tiptap-grid-builder {
        grid-template-columns: 1fr !important;
    }
}
/* GRID BUILDER END */