@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* overflow-x: hidden; */
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ffc40065;
}

::-webkit-scrollbar-thumb {
    background: #1d1e1e;
    border-radius: 8px 0 0 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #640a0a;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: #1d1e1e;
}

/* -------------------------------------------------- */
/* TOPBAR */
/* -------------------------------------------------- */

.topbar {
    color: #1d1e1e;
    margin: 10px 20px 0 20px;
    padding: 0;
    font-size: 12px;
}

.search__form {
    /* height: 44px; */
    height: 32px;
    /* width: 50%; */
    width: 250px;
    border: 2px solid #1d1e1e;
    /* border-radius: 50px; */
    border-radius: 12px;
    padding: 8px;
    outline: none;
    color: #1d1e1e;
}

.search__form:focus {
    /* border: 3px solid #1d1e1e; */
    border: 2px solid #1d1e1e;
}

.search__form::placeholder {
    color: #1d1e1e;
}

.search__button {
    /* height: 44px; */
    height: 32px;
    /* width: 44px; */
    width: 32px;
    background-color: #1d1e1e;
    /* border-radius: 44px; */
    /* border-radius: 32px; */
    border-radius: 12px;
    outline: none;
    border: none;
    color: #fff;
    margin-left: 8px;
}

.search__button:hover {
    background-color: #640a0a;
}

.link__social__icon {
    text-decoration: none;
}

.top__social__icon {
    /* height: 32px;
    width: 32px; */
    height: 24px;
    width: 24px;
    /* border-radius: 12px; */
    border-radius: 8px;
    background-color: #1d1e1e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top__social__icon:hover {
    background-color: #640a0a;
}

/* -------------------------------------------------- */
/* END TOPBAR */
/* -------------------------------------------------- */

/* -------------------------------------------------- */
/* NAVBAR */
/* -------------------------------------------------- */

.navbar {
    /* box-shadow: 0 2px 2px #00000036; */
    background-color: #fff;
    padding: 12px 0;
    /* position: relative; */
    /* padding-left: 20px;
    padding-right: 20px; */
    transition: all .3s;
}

.navbar.sticky-top {
    box-shadow: 0 2px 2px #00000036;
    padding: 8px 0;
}

.navbar__logo {
    position: absolute;
    height: 50px;
    left: 15px;
    bottom: 30px;
    transition: all .3s;
}

@media screen and (max-width: 480px) {
    .navbar__logo {
        top: 8px;
    }
}

.navbar.sticky-top .navbar__logo {
    height: 38px;
    bottom: 8px;
}

.navbar-toggler {
    background-color: #1d1e1e;
    border-radius: 12px;
    border: none;
    outline: none;
    width: 40px;
    height: 40px;
    color: #fff;
}

.navbar-toggler:focus, .navbar-toggler:active, .navbar-toggler:hover {
    box-shadow: none;
    background-color: #640a0a;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #0e0e0e;
}

.nav-item:has(.dropdown-item.active) .nav-link {
    font-weight: bold;
    color: #000;
}

.nav-link.active {
    font-weight: bold;
    color: #000;
}

.dropdown-menu {
    border: none;
    outline: none;
    box-shadow: 1px 2px #00000036;
    padding: 5px;
    border-radius: 12px;
}

.dropdown-item {
    font-size: 14px;
    border-radius: 8px;
}

.dropdown-item.active {
    background-color: #1d1e1e;
}

.dropdown-item:hover {
    background-color: #1d1e1e;
    color: #fff;
}

@media screen and (max-width: 576px) {
    .dropdown-item::before {
        transform: rotate(-90deg);
    }
}

.search-link.dropdown-toggle::after {
    display: none;
}

.search-link.show .fa-magnifying-glass {
    display: none;
}

.search-link.show .fa-xmark {
    display: inline-block;
    font-size: 16px;
}

.search-link .fa-xmark {
    display: none;
}

/* -------------------------------------------------- */
/* END NAVBAR */
/* -------------------------------------------------- */

/* --------------------------------------------------- */
/* --------------------------------------------------- */
/* MAIN */
/* --------------------------------------------------- */
/* --------------------------------------------------- */

.my__top__divider {
    margin-top: 20px;
    height: 50px;
    width: 100%;
    background-image: url('/assets/frontend/theme-uti/images/background/tapis-atas.svg');
    background-repeat: repeat-x;
    background-size: auto 50px;
}

.my__left__side__divider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60px;
    background-image: url('/assets/frontend/theme-uti/images/background/tapis-samping.svg');
    background-repeat: repeat-y;
    background-size: 60px auto;
}

.my__right__side__divider {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60px;
    background-image: url('/assets/frontend/theme-uti/images/background/tapis-samping.svg');
    background-repeat: repeat-y;
    background-size: 60px auto;
}

@media screen and (max-width: 1279px) {
    .my__right__side__divider, .my__left__side__divider {
        display: none;
    }
}

@media screen and (min-width: 1366px) {
    .my__right__side__divider, .my__left__side__divider {
        width: 80px;
        background-size: 80px auto;
    }
}

main {
    position: relative;
    margin: 30px 20px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1500px;
    /* background-color: aquamarine; */
    padding: 0;
}

/* --------------------------------------------------- */
/* JUMBOTRON */
/* --------------------------------------------------- */
.jumbotron {
    width: 100%;
    height: 447px;

    margin: 0 auto 30px auto;
    position: relative;
    overflow: hidden;
    overflow: clip;
    list-style: none;
    /* Fix of Webkit flickering */
    z-index: 1;
    display: block;
}

@media screen and (max-width: 720px) {
    .jumbotron {
        height: 300px;
    }
}

.jumbotron .swiper-scrollbar {
    margin-bottom: 10px;
    background-color: #FFC300;
}

.jumbotron .swiper-scrollbar-drag {
    background-color: #1d1e1e;
}

.img__container {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
}

.img__container img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center center;
    background: #ffffff;
}

@media screen and (max-width: 720px) {
    .img__container img {

        object-fit: fill;
        background: #ffffff;

    }
}

.jumbotron .content__container {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #0e0e0e77;
    padding: 10px 10px 15px 10px;
    border-radius: 20px;
    text-align: center;
    text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}

.jumbotron .content__container h4 {
    font-size: 18px;
    font-weight: bold;
}

/* --------------------------------------------------- */
/* END JUMBOTRON */
/* --------------------------------------------------- */

.side__img {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.side__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------------------------------- */
/* GALERIES */
/* --------------------------------------------------- */
/* .galeries {
  border-radius: 12px;
  margin-top: 20px;
  width: 100%;
  height: 350px;

  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  z-index: 1;
  display: block;
}

.galeries .swiper-slide {
  height: calc((100% - 20px) / 2) !important;
  max-height: 170px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.galeries .swiper-slide a {
  width: 100%;
  height: 100%;
}

.galeries .swiper-slide a img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  max-height: 170px;
  object-fit: cover;
  transition: all .3s;
}

.galeries .swiper-slide img:hover {
  transform: scale(1.02);
}

.galeries .swiper-pagination-bullet {
  width: 40px;
  border-radius: 12px;
  background-color: #FFC300;
}

.galeries .swiper-pagination-bullet-active {
  background-color: #1d1e1e;
} */
/* --------------------------------------------------- */
/* END GALERIES */
/* --------------------------------------------------- */
/*
.main__content {
  margin-top: 30px;
} */

/* --------------------------------------------------- */
/* ARTICLE CARD */
/* --------------------------------------------------- */
article .card {
    width: 100%;
    height: 220px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    border: none;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 1px 2px #00000036;
}

article .card .img__container {
    width: 350px;
    height: 100%;
    position: relative;
    border-radius: 12px;
    margin-right: 15px;
    overflow: hidden;
    box-shadow: 1px 2px #00000036;
}

article .card .img__container img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: all .3s;
}

article .card .img__container img:hover {
    transform: scale(1.02);
}

article .card .content__topbar {
    display: flex;
    flex-direction: row;
    font-size: 14px;
    color: #1d1e1e;
}

article .card .content__title {
    line-height: 60%;
}

article .card .content__title a {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

article .card .content__desc {
    font-size: 14px;
}

article .card .content__button {
    background-color: #1d1e1e;
    border-radius: 12px;
    padding: 8px 20px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

@media screen and (max-width: 720px) {
    article .card {
        flex-direction: column;
        height: auto;
    }

    article .card .img__container {
        width: 100%;
        height: 200px;
        margin-bottom: 10px;
    }
}

/* --------------------------------------------------- */
/* END ARTICLE CARD */
/* --------------------------------------------------- */

/* --------------------------------------------------- */
/* SIDEBAR CARD */
/* --------------------------------------------------- */

.sidebar__title {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    display: inline-block;
}

.detail_agenda_button {
    display: inline;
    margin-left: 10px;
    padding: 4px 10px 1px 10px;
    font-weight: 500;
    background-color: #0e0e0e;
    color: #fefefe;
    border-radius: 4px;
}

.detail_agenda_button:hover {
    background-color: #292929;
    color: #fefefe;
}

.title__divider {
    height: 6px;
    width: 80%;
    border-radius: 8px;
    background-color: #000;
    margin-bottom: 20px;
    margin-top: -5px;
}

aside .card {
    width: 100%;
    height: 180px;
    padding: 10px;
    border: none;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 1px 2px #00000036;
}

aside .card.card__agenda {
    height: auto;
}

aside .card.card__visitor {
    height: auto;
}

aside .card .content__topbar {
    display: flex;
    flex-direction: row;
    font-size: 12px;
    color: #1d1e1e;
}

aside .card .content__time {
    display: flex;
    flex-direction: row;
    font-size: 14px;
    font-weight: bold;
    color: #1d1e1e;
}

aside .card .content__time .content__location {
    color: #0e0e0e;
}

aside .card .content__title {
    line-height: 60%;
    text-align: left;
}

aside .card .content__title a {
    font-size: 14px;
    font-weight: bold;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    pointer-events: none;
}

aside .card .content__desc {
    font-size: 12px;
}

aside .card .content__desc_agenda {
    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* --------------------------------------------------- */
/* END SIDEBAR CARD */
/* --------------------------------------------------- */

/* --------------------------------------------------- */
/* PAGINATION */
/* --------------------------------------------------- */
.page-link {
    background-color: #FFC300;
    color: #fff;
    margin: 0 5px;
}

.page-link:hover, .page-link:focus, .page-link:active {
    background-color: #bf9407;
    color: #fff;
    outline: none;
    border: none;
    box-shadow: none;
}

.page-item.active .page-link {
    background-color: #1d1e1e;
    outline: none;
    border: none;
}

/* --------------------------------------------------- */
/* PAGINATION */
/* --------------------------------------------------- */

/* --------------------------------------------------- */
/* --------------------------------------------------- */
/* END MAIN */
/* --------------------------------------------------- */
/* --------------------------------------------------- */

/* --------------------------------------------------- */
/* --------------------------------------------------- */
/* FOOTER */
/* --------------------------------------------------- */
/* --------------------------------------------------- */

footer {
    overflow-x: hidden;
    margin-top: 40px;

}

.top__footer {
    background-color: #1d1e1e;
    padding: 20px;
    color: #fff;

    background-image: url('/assets/frontend/theme-uti/images/background/gajah-gold.svg'), url('/assets/frontend/theme-uti/images/background/gajah-gold-kanan.svg');
    background-repeat: no-repeat, no-repeat;
    background-size: contain, contain;
    background-position: left bottom, right bottom;
}


@media screen and (max-width: 768px) {
    .top__footer {
        background-image: none;
    }
}

.bottom__footer {
    background-color: #0e0e0e;
    padding: 15px 20px;
    color: #bcbcbc;
    font-size: 12px;
}

.footer__title {
    font-size: 18px;
    font-weight: bold;
}

.footer__desc {
    font-size: 14px;
    margin-top: 10px;
}

.footer__link {
    color: #fff;
    margin-top: 10px;
}

.footer__link:hover {
    color: #FFC300;
}

.top__footer table {
    color: #fff;
}

.footer__link__social__icon {
    text-decoration: none;
}

.footer__social__icon {
    height: 32px;
    width: 32px;
    border-radius: 12px;
    background-color: #1d1e1e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__social__icon:hover {
    background-color: #640a0a;
    color: #fff;
}

/* --------------------------------------------------- */
/* --------------------------------------------------- */
/* END FOOTER */
/* --------------------------------------------------- */
/* --------------------------------------------------- */
