@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Rubik:wght@400;500;600&display=swap");

/* variabels */
:root {
    --base-1: #1f1c18;
    --base-2: #437057;
    --base-2-hover: #2f5249;
}

body {
    font-family: "Quicksand", sans-serif;
    color: #444444;
    background-color: #f4e4c5;
}

.bg-base-1 {
    background: var(--base-1);
}

.bg-base-2 {
    background: var(--base-2);
}

.base-2 {
    color: var(--base-2);
}

a {
    color: var(--base-2);
    text-decoration: none;
}

a:hover {
    color: var(--base-2-hover);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Rubik", sans-serif;
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--base-2);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--base-2-hover);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Header */
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: #437057 !important;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 40px;
}

/* Navigation Menu */
/* Desktop Navigation */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #57cfb0;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    border: 2px solid #fff;
    font-weight: 600;
    box-shadow: 0.3rem 0.3rem #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: var(--base-2);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: var(--base-1);
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--base-2);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(50, 48, 48, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--base-1);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--base-2);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    color: var(--base-1);
    background: #fff;
    border: 2px solid var(--base-1);
    font-weight: 600;
    box-shadow: 0.3rem 0.3rem var(--base-1);
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: var(--base-2);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*
# Hero Section
*/
#hero {
    width: 100%;
    height: 70vh;
    background: #2e7d32;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, var(--base-2), var(--base-1));
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, var(--base-2), var(--base-1));
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

#hero .container {
    padding-top: 72px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 24px;
}

#hero .hero-img {
    text-align: center;
}

#hero .hero-img img {
    width: 55%;
}

#hero .btn-get-started {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 8px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: var(--base-2);
    box-shadow: 0.5rem 0.5rem #000;
    border: 3px solid #000;
}

#hero .btn-get-started:hover {
    background: var(--base-2-hover);
}

#hero .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
}

#hero .btn-watch-video i {
    line-height: 0;
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
}

#hero .btn-watch-video:hover i {
    color: var(--base-2);
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
        text-align: center;
    }

    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 70%;
    }

    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*
# Sections General
*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #ecfae5;
}

.section-title {
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 250px;
    height: 4px;
    background: var(--base-2);
    bottom: 0;
    left: calc(5% - 60px);
    border-radius: 1rem;
}

.section-title p {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .section-title h2::after {
        left: calc(20% - 70px);
    }
}

/*
# Pengumuman
*/
.pengumuman .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.pengumuman .content ul {
    list-style: none;
    padding: 0;
}

.pengumuman .content ul li {
    padding-left: 28px;
    position: relative;
}

.pengumuman .content ul li + li {
    margin-top: 10px;
}

.pengumuman .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--base-2);
    line-height: 1;
}

.pengumuman .content p:last-child {
    margin-bottom: 0;
}

.pengumuman .content .btn-learn-more {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: var(--base-2);
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid var(--base-2);
}

.pengumuman .content .btn-learn-more:hover {
    background: var(--base-2);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 575px) {
    .pengumuman .carousel-item img {
        width: 100% !important;
    }
}

/* Informasi Umum */
.informasi-umum .informasi-umum-list {
    padding: 0 100px;
}

.informasi-umum .informasi-umum-list ul {
    padding: 0;
    list-style: none;
}

.informasi-umum .informasi-umum-list li + li {
    margin-top: 1.5rem;
}

.informasi-umum .informasi-umum-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.informasi-umum .informasi-umum-list a {
    display: block;
    position: relative;
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.informasi-umum .informasi-umum-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: var(--base-2);
}

.informasi-umum .informasi-umum-list .icon-show,
.informasi-umum .informasi-umum-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.informasi-umum .informasi-umum-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.informasi-umum .informasi-umum-list .icon-show {
    display: none;
}

.informasi-umum .informasi-umum-list a.collapsed {
    color: #37517e;
    transition: 0.3s;
}

.informasi-umum .informasi-umum-list a.collapsed:hover {
    color: var(--base-2);
}

.informasi-umum .informasi-umum-list a.collapsed .icon-show {
    display: inline-block;
}

.informasi-umum .informasi-umum-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .informasi-umum .informasi-umum-list {
        padding: 0;
    }
}

/*
# Breadcrumbs
*/
.breadcrumbs {
    padding: 15px 0;
    /* background: #f3f5fa; */
    min-height: 40px;
    /* margin-top: 72px; */
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--base-2);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4668a2;
    content: "/";
}

/*
# Footer
*/
#footer {
    font-size: 14px;
    background: var(--base-1);
}

#footer .footer-top {
    padding: 60px 0;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--base-2);
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Rubik", sans-serif;
    color: var(--base-1);
}

#footer .footer-top h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--base-2);
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: var(--base-1);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #000;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--base-1);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 6px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #fff;
    color: var(--base-2);
    text-decoration: none;
}

#footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
}

#footer .copyright {
    float: left;
}

#footer .credits {
    float: right;
    font-size: 13px;
}

#footer .credits a {
    transition: 0.3s;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }
}

/*
Start Beasiswa Biaya Pendidikan 
*/
.inner-page1 h3,
.inner-page2 h3,
.inner-page3 h3,
.inner-page4 h3 {
    color: var(--base-2);
}

.beasiswa-title h2,
.sps-title h2 {
    font-size: 3rem;
}

.beasiswa-title h2:after,
.sps-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 350px;
    height: 4px;
    background: var(--base-2);
    bottom: 0;
    left: calc(40% - 50px);
    border-radius: 1rem;
}

.inner-page4 a:hover {
    text-decoration: underline;
}

.daftar-btn {
    background: var(--base-2);
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
}

.daftar-btn:hover {
    background: var(--base-2-hover);
    color: #fff;
}

@media (max-width: 575px) {
    .daftar-sekarang {
        margin-left: 4rem;
    }

    .daftar-sekarang .card {
        margin-bottom: 2rem;
    }

    .beasiswa-title h2 {
        font-size: 1.8rem;
    }

    .beasiswa-title h2:after {
        width: 250px;
        left: calc(30% - 50px);
    }
}

/*
Sarjana
*/
.jalur-mandiri li {
    padding: 0.5rem;
}

.academic-calendar ul {
    list-style: none;
}

.academic-calendar li + li {
    margin-top: 15px;
}

.academic-calendar li {
    padding: 20px;
    background: #ffffff;
    border-radius: 4px;
    position: relative;
}

.cc-1 > ul > li:nth-child(1),
.cc-1 > ul > li:nth-child(2),
.cc-1 > ul > li:nth-child(5),
.cc-1 > ul > li:nth-child(6),
.cc-1 > ul > li:nth-child(9),
.cc-1 > ul > li:nth-child(10),
.cc-1 > ul > li:nth-child(13),
.cc-1 > ul > li:nth-child(14) {
    background: #777;
    color: #fff;
}

.cc-2 > ul > li:nth-child(1),
.cc-2 > ul > li:nth-child(3),
.cc-2 > ul > li:nth-child(5),
.cc-2 > ul > li:nth-child(7) {
    background: #777;
    color: #fff;
}

.registration-snmptn li,
.informasi-daftar-ulang li {
    margin: 1rem 0;
    padding-left: 4px;
}

@media (max-width: 575px) {
    .pengumuman-title {
        font-size: 1.5rem !important;
    }

    .pimpinan {
        margin-left: 3.5rem;
    }

    .pimpinan .card {
        margin-bottom: 2rem;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1); /* membuat warna icon hitam */
}
