aside a  {
    
color: #1E1E1E !important;
}

/* Header */

.hotline {
    background-color: #004054;
    color: #fff;
    padding: 10px 0;
}

.hotline .container,
.nav-section .container {
    width: 100%;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.hotline h5 {
    font-family: 'Poppins', sans-serif;
}

.hotline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.hotline-contact {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.hotline-contact .fa-phone {
    margin-right: 6px;
}

.hotline-contact a {
    color: #fff;
    text-decoration: underline;
}

.hotline-contact a:hover {
    color: #F2C230;
}

.hotline-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hotline-social a {
    color: #fff;
    font-size: 16px;
    transition: color .2s ease;
}

.hotline-social a:hover {
    color: #F2C230;
}

/* Logo + Menu */

.nav-section {
    margin-top: 0;
    margin-bottom: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08);
}

.nav-section .navbar-default {
    background-color: #fff;
    border: 0;
    margin-bottom: 0;
}

.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 14px 0;
}

.header-brand {
    display: flex;
    align-items: center;
}

.header-brand img {
    height: 56px;
    width: auto;
    max-width: none;
}

.nav-section .navbar-header {
    float: none;
}

.nav-section .navbar-collapse {
    padding: 0;
    border: 0;
    box-shadow: none;
    margin-left: 0;
    margin-right: 0;
}

.nav-section .nav-main {
    align-items: center;
}

.nav-section li a {
    color: #222222;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 16px;
}

.nav-ico {
    display: none;
}

.nav-section li a:hover,
.nav-section li a:focus {
    color: #217A80;
}

.nav-section li a.btn-login {
    color: #fff !important;
    background-image: linear-gradient(135deg, #36ADB5, #217A80);
    border-radius: 30px;
    padding: 9px 26px;
    margin-left: 6px;
    box-shadow: 0 4px 10px 0 rgba(33, 122, 128, 0.3);
    transition: transform .25s ease, box-shadow .25s ease;
}

.nav-section li a.btn-login:hover,
.nav-section li a.btn-login:focus {
    background-image: linear-gradient(135deg, #36ADB5, #217A80);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px 0 rgba(33, 122, 128, 0.4);
}

@media screen and (max-width: 767px) {
    .hotline .container,
    .nav-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hotline -- dibuat lebih ringkas di mobile */
    .hotline {
        padding: 6px 0;
    }

    .hotline-row {
        gap: 4px;
    }

    .hotline-contact {
        font-size: 11px;
        line-height: 1.4;
    }

    .hotline-contact .fa-phone {
        margin-right: 4px;
    }

    .hotline-social {
        gap: 12px;
    }

    .hotline-social a {
        font-size: 13px;
    }

    .header-main-row {
        padding: 10px 0;
    }

    .header-brand img {
        height: 44px;
    }

    /* Logo + tombol hamburger dikelompokkan dalam satu baris tersendiri --
       supaya posisinya konsisten (center secara vertikal, tidak bergeser)
       dan tidak ikut dihitung ulang oleh flex-wrap saat panel menu di bawah
       dibuka/ditutup. */
    .header-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .nav-section .navbar-header {
        margin-left: 0;
        margin-right: 0;
        float: none;
    }

    /* Tombol hamburger -- disamakan dengan tema teal situs, ikon di tengah */
    .nav-section .navbar-toggle {
        margin: 8px 0;
        padding: 9px 10px;
        border: 1px solid #217A80;
        border-radius: 8px;
        background-color: #fff;
    }

    .nav-section .navbar-toggle:hover,
    .nav-section .navbar-toggle:focus {
        background-color: #EAF5F6;
    }

    .nav-section .navbar-toggle .icon-bar {
        background-color: #217A80;
    }

    .nav-section .navbar-collapse {
        flex-basis: 100%;
    }

    /* Panel menu mobile -- kartu terpisah dari header supaya lebih menarik */
    .nav-section .nav-main {
        display: block;
        width: 100%;
        text-align: left;
        margin: 6px 0 12px;
        padding: 8px;
        background-color: #F7FBFC;
        border: 1px solid #E3EFF0;
        border-radius: 12px;
        box-shadow: 0 4px 14px 0 rgba(33, 122, 128, 0.1);
    }

    .nav-section .nav-main > li {
        display: block;
        float: none;
        width: 100%;
        margin: 0;
    }

    .nav-section .nav-main > li + li {
        border-top: 1px solid #E3EFF0;
    }

    .nav-section .nav-main > li > a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 13px 10px;
        border-radius: 8px;
        transition: background-color .2s ease, color .2s ease;
    }

    .nav-section .nav-main > li > a:hover,
    .nav-section .nav-main > li > a:focus {
        background-color: #EAF5F6;
        color: #217A80;
    }

    .nav-ico {
        display: inline-block;
        width: 22px;
        font-size: 15px;
        color: #36ADB5;
        text-align: center;
    }

    .nav-section li a.btn-login {
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 10px;
    }

    .nav-section li a.btn-login .nav-ico {
        color: #fff;
    }

    .nav-section li a.btn-login:hover,
    .nav-section li a.btn-login:focus {
        transform: none;
    }
}

/* ================================ */

/* All */
.title-page {
    text-align: center;
}

.title-page h2 {
    font-weight: 600;
}

.title-page hr {
    border: 1px solid #000;
    width: 130px;
    margin-top: -5px;
}

.page-informasi, .page-pendaftaran, .page-lokasi, .page-login {
    background-image: linear-gradient(#ffffff, #e9f9ff);
}


/* ================================ */

/* Page Home */

/* Jumbotron Home*/

.jumbotron {
    background-image: linear-gradient(#ffffff, #D5EDF4);
    padding-top: 20px;
    padding-bottom: 20px;
}

.title-home {
    margin-top: 20px;
    margin-bottom: 30px;
}

.title-home h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 27px;
    font-weight: 600;
    color: #191919;
}

.text-welcome .text-ppdb {
    color: #217A80;
    
}

.angkatan-tahun h3 {
    margin-top: 20px;
    font-weight: 600;
    color: #1E1E1E;
}

/* ================================ */

/* Unit Sekolah (Home) - Card Version */

.unit-hero {
    background-image: linear-gradient(#ffffff, #D5EDF4);
    padding-top: 30px;
    padding-bottom: 50px;
}

.unit-hero-subtitle {
    max-width: 620px;
    margin: 12px auto 0;
    color: #4C6367;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.unit-card-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 35px;
}

.unit-card-row > div {
    display: flex;
    margin-bottom: 30px;
}

.unit-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px 0 rgba(0, 64, 84, 0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.unit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px 0 rgba(0, 64, 84, 0.2);
}

.unit-card-img {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.unit-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.unit-card:hover .unit-card-img img {
    transform: scale(1.1);
}

.unit-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background-image: linear-gradient(135deg, #36ADB5, #217A80);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .5px;
    padding: 5px 12px;
    border-radius: 30px;
    box-shadow: 0 4px 10px 0 rgba(0, 64, 84, 0.25);
}

.unit-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px 24px 26px;
    text-align: center;
}

.unit-card-body h4 {
    margin: 0 0 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: #004054;
}

.unit-card-body h4 .fa {
    color: #36ADB5;
    margin-right: 6px;
}

.unit-card-body p {
    margin: 0 0 18px;
    color: #6B7E81;
    font-size: 14px;
}

.unit-card-body p .fa {
    color: #217A80;
    margin-right: 4px;
}

.unit-card-btn {
    margin-top: auto;
    align-self: center;
    display: inline-block;
    background-image: linear-gradient(135deg, #36ADB5, #217A80);
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 4px 10px 0 rgba(33, 122, 128, 0.3);
}

.unit-card-btn:hover,
.unit-card-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px 0 rgba(33, 122, 128, 0.4);
    text-decoration: none;
    color: #fff;
}

.unit-card-btn .fa {
    margin-left: 4px;
}

/* Kartu ikon untuk halaman pilih jalur / tipe / kelas tujuan mutasi */

.unit-card-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, #e9f9fb, #d5edf4);
}

.unit-card-icon .fa {
    font-size: 46px;
    color: #217A80;
}

.unit-card.is-disabled {
    opacity: .55;
}

.unit-card.is-disabled:hover {
    transform: none;
    box-shadow: 0 6px 18px 0 rgba(0, 64, 84, 0.1);
}

.unit-card.is-disabled .unit-card-icon {
    background-image: linear-gradient(135deg, #f2f2f2, #e2e2e2);
}

.unit-card.is-disabled .unit-card-icon .fa {
    color: #999;
}

.unit-card-kuota {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.unit-card-kuota.tersedia {
    background-color: #E6F7EE;
    color: #1B8A4C;
}

.unit-card-kuota.penuh {
    background-color: #FDECEC;
    color: #D33333;
}

.breadcrumb-jalur {
    text-align: center;
    color: #6B7E81;
    font-size: 14px;
    margin: -12px 0 10px;
}

.breadcrumb-jalur a {
    color: #217A80;
    text-decoration: underline;
}

.breadcrumb-jalur-sep {
    margin: 0 8px;
    color: #B9C7C9;
}

/* Brosur Digital -- flipbook viewer (full page + toolbar) */

.brosur-fullpage {
    background-color: #f4fafb;
    min-height: 100vh;
    padding-top: 14px;
    padding-bottom: 10px;
}

.brosur-fullpage.is-fullscreen {
    background-color: #12181a;
    padding-top: 10px;
}

.brosur-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 20px 14px;
    position: relative;
}

.brosur-back-btn {
    position: absolute;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: #217A80;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none !important;
    box-shadow: 0 4px 10px 0 rgba(33, 122, 128, 0.3);
}

.brosur-back-btn:hover,
.brosur-back-btn:focus {
    background-color: #1B5F64;
    color: #fff;
}

.brosur-topbar-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #004054;
    margin: 0;
    text-align: center;
}

.is-fullscreen .brosur-topbar-title {
    color: #fff;
}

.flipbook-wrap {
    max-width: 1100px;
    margin: 10px auto 0;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: max-width .25s ease;
}

.flipbook-wrap.flipbook-zoomed {
    max-width: 1500px;
}

.flipbook-loading {
    padding: 80px 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #6B7E81;
}

.flipbook-loading .fa {
    color: #217A80;
    margin-right: 8px;
}

.flipbook-container {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.fb-page-info {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #4C6367;
    margin-top: 10px;
}

.is-fullscreen .fb-page-info {
    color: #cfe4e6;
}

/* Toolbar pill (prev/next/grid/share/download/zoom/fullscreen) */

.flipbook-toolbar {
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    background-color: #fff;
    border-radius: 40px;
    padding: 8px 10px;
    box-shadow: 0 6px 20px 0 rgba(0, 64, 84, 0.18);
    position: relative;
    z-index: 20;
}

.fb-tool-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    color: #217A80;
    font-size: 15px;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}

.fb-tool-btn:hover,
.fb-tool-btn:focus {
    background-color: #E9F9FB;
    color: #1B5F64;
    text-decoration: none;
}

.fb-tool-sep {
    width: 1px;
    height: 22px;
    background-color: #E1EBEC;
    margin: 0 4px;
}

/* Grid semua halaman */

.fb-grid-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 32, 40, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
}

.fb-grid-panel {
    background-color: #fff;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fb-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
}

.fb-grid-header h4 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #004054;
}

.fb-grid-body {
    padding: 20px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 14px;
}

.fb-grid-thumb {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0;
    background: #f4fafb;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.fb-grid-thumb:hover {
    border-color: #217A80;
}

.fb-grid-thumb img {
    width: 100%;
    display: block;
}

.fb-grid-thumb span {
    position: absolute;
    bottom: 4px;
    right: 6px;
    background-color: rgba(0, 64, 84, 0.75);
    color: #fff;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 10px;
}

/* Toast notifikasi share */

.fb-toast {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translate(-50%, 20px);
    background-color: #004054;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 3000;
}

.fb-toast-show {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media screen and (max-width: 767px) {
    .brosur-topbar {
        flex-direction: column;
        gap: 6px;
        padding: 10px 15px 14px;
    }

    .brosur-back-btn {
        position: static;
    }

    .brosur-topbar-title {
        font-size: 17px;
    }

    .fb-tool-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

@media screen and (max-width: 767px) {
    .unit-hero {
        padding-bottom: 30px;
    }

    .unit-hero-subtitle {
        font-size: 15px;
    }

    .unit-card-row {
        margin-top: 22px;
    }

    .unit-card-img {
        height: 170px;
    }

    .unit-card-icon {
        height: 100px;
    }

    .unit-card-icon .fa {
        font-size: 36px;
    }
}

@media screen and (max-width: 480px) {
    .unit-card-row > div {
        margin-bottom: 20px;
    }

    .unit-card-body {
        padding: 18px 18px 22px;
    }

    .unit-card-body h4 {
        font-size: 17px;
    }
}

/* Information Home */

.information {
    margin-left: 40px;
    margin-bottom: 70px;
}

.information img {
    width: 40px;
    margin-top: -10px;
}

.information h3{
    display: inline-block;
    margin-left: 10px;
    font-weight: 600;
    color: #293B3D;
}


.section-information-home {
    margin-top: 40px;
}

.text-information-home{
    margin-left: 39px;
    font-size: 16px;
    width: 90%;
    font-family: 'Inter', sans-serif;
    text-align: justify;
    margin-top: 8px;
    line-height: 28px;
}

.section-information-home .text-information-home p {
    margin-bottom: 20px;
}

.text-information-home a {
    background-color: #e2f6ff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-align: end;
}

/* ================================ */

/* Page Infromasi */

.nav-tabs-section {
    padding-bottom: 50px;
}

.nav-tabs {
  float: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  margin-top: 40px;
}

.nav-tabs-item {
    padding-right: 30px;
    padding-left: 30px;
}

.nav-tabs-item a {
    font-size: 18px;
    color: #1E1E1E;
    
}

.tab-content {
    margin-top: 90px;
    margin-left: 30px;
}

.title-sub h4 {
    font-weight: 600;
    font-size: 20px;
    margin-top: 35px;
}

.content-informasi {
    line-height: 30px;
    font-size: 16px;
    width: 900px;
}

.content-informasi p {
    font-weight: 600;
}

.content-informasi .info-khusus {
    font-style: italic;
}

.img-alur {
    text-align: center;
    margin-top: 30px;
}

.img-alur img {
    width: 70%;
    border: 1px solid #004054;
}


.alur-detail h5 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
}


/* ================================ */

/* Page Pendaftaran */
.hr-dftr hr {
    width: 170px;
}

.text-pilih-unit p {
    text-align: center;
    font-size: 20px;
    margin: 30px;
}

.list-unit img {
    width: 110px;
    border-radius: 50%;
    border: .5px solid #9de2f7;
}

.list-unit img:hover {
    box-shadow: 10px 10px 10px 0 rgba(0, 99, 157, 0.2), 0 6px 20px 0 rgba(71, 169, 217, 0.19);
}

.list-unit h6{
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    line-height: 25px;
}

/* form pendaftaran sementara */

.form-pendaftaran-sementara {
    margin-top: 30px;
    padding-bottom: 40px;
}

/* .card-form-smntr{
    width: 1180px;
    border: .5px solid #d9d8d8;
} */

.card-form-smntr h3{
    font-weight: 500;
    font-size: 22px;
    margin-left: 15px;
    text-align: left;
}

.card-form-smntr hr {
    border: 1px solid #000000;
    margin-left: 15px;
    width: 290px;
    margin-top: -5px;
    margin-bottom: 35px;
}

.form-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
}

.btn-form-smntr {
    background-color: #36ADB5;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
}

.btn-form-smntr:hover {
    background-color: #69d2db;
    color: #fff;
}


/* ================================ */

/* Lokasi */
.page-lokasi hr {
    width: 265px;
}

.lokasi-section {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 900px;
    margin: auto;
}

.item-lokasi {
    margin-bottom: 40px;
}

.item-lokasi img {
    width: 20px;
    margin-top: -5px;
}

.item-lokasi h4 {
    display: inline-block;
    font-weight: 600;
    margin-left: 15px;
    margin-bottom: 15px;
}

.map-box {
  border: 2px solid #ddd;
  border-radius: 0 !important;   /* <-- ubah ini jadi 0 biar kotak */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-top: 20px;
  width: 100%;
  max-width: 800px;
}

.map-iframe {
  width: 100%;
  height: 350px;
  border: none; /* supaya gak dobel border */
}

.item-lokasi p {
    margin-left: 40px;
    font-size: 17px;
}

/* ================================ */

/* Page Login */

.page-login {
    margin-top: -30px;
}

.page-login hr {
    width: 80px;
}

.login-section {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    padding-bottom: 50px;
}

.text-login p {
    text-align: justify;
    line-height: 25px;
    
}

.text-login img {
    margin-top: 5px;
    width: 170px;
    
}

.form-for-login hr {
    width: auto;
    border: .3px solid #2a2a2a;
    margin-top: -4px;
}

.form-for-login .input-group-text {
    margin-bottom: 10px;
}

.form-for-login input {
    font-size: 17px;
}

.form-for-login .btn-login-form {
    margin-top: 5px;
    padding: 5px 20px;
    font-size: 17px;
    background-color: #36ADB5;
    color: #fff;
    margin-bottom: 10px;
}

.form-for-login .btn-login-form:hover {
    background-color: #69d2db;
}

/* ========================= */
/* Footer */

footer {
    background-image: linear-gradient(#D5EDF4, #ffffff);
    color: #3E3E3E;
    margin-bottom: 40px;
}

.footer-logo img {
    margin-top: 40px;
}

.footer-text h4{
    font-weight: 600;
    margin-bottom: 20px;
}

.list-sosmed {
    margin-top: 10px;
}

.list-sosmed img {
    width: 20px;
    margin-top: -3px;
}

.list-sosmed a {
    display: inline-block;
    margin-left: 5px;
    font-size: 16px;
    color: #1E1E1E;
}

.list-sosmed a:hover {
    color: #007205;
}

.list-kontak {
    font-size: 16px;
    color: #1E1E1E;
}


/* Tabs */

.wrapper{
  max-width: 1000px;
  width: 100%;
  margin: 30px auto;
  padding: 25px 30px 30px 30px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
}

.wrapper nav{
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
.wrapper nav label{
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #17a2b8;
  font-size: 17px;
  border-radius: 5px;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.wrapper nav label:hover{
  background: rgba(23,162,184,0.3);
}
#pndftrn:checked ~ nav label.pndftrn,
#alur:checked ~ nav label.alur,
#flwchrt:checked ~ nav label.flwchrt,
#pmbyrn:checked ~ nav label.pmbyrn{
  color: #fff;
}

#tkit1:checked ~ nav label.tkit1,
#tkit2:checked ~ nav label.tkit2,
#mi:checked ~ nav label.mi,
#sdit1:checked ~ nav label.sdit1,
#sdit2:checked ~ nav label.sdit2{
  color: #fff;
}

nav .slider{
  position: absolute;
  height: 100%;
  width: 25%;
  left: 0;
  bottom: 0;
  z-index: 0;
  border-radius: 5px;
  background: #17a2b8;
  transition: all 0.3s ease;
}

.biaya .slider1{
    position: absolute;
    height: 100%;
    width: 20%;
    left: 0;
    bottom: 0;
    z-index: 0;
    border-radius: 5px;
    background: #17a2b8;
    transition: all 0.3s ease;
  }

input[type="radio"]{
  display: none;
}

#alur:checked ~ nav .slider{
  left: 25%;
}
#flwchrt:checked ~ nav .slider{
  left: 50%;
}
#pmbyrn:checked ~ nav .slider{
  left: 75%;
}



/* #tkit1:checked ~ nav .slider{
    left: 25%;
  } */
#tkit2:checked ~ .biaya .slider1{
    left: 20%;
  }
#mi:checked ~ .biaya .slider1{
    left: 40%;
  }
#sdit1:checked ~ .biaya .slider1{
    left: 60%;
}
#sdit2:checked ~ .biaya .slider1{
    left: 80%;
}

section .content{
  display: none;
  background: #fff;
}

#pndftrn:checked ~ section .content-1,
#alur:checked ~ section .content-2,
#flwchrt:checked ~ section .content-3,
#pmbyrn:checked ~ section .content-4{
  display: block;
}

#tkit1:checked ~ section .content-1,
#tkit2:checked ~ section .content-2,
#mi:checked ~ section .content-3,
#sdit1:checked ~ section .content-4,
#sdit2:checked ~ section .content-5{
  display: block;
}

section .content .title{
  font-size: 21px;
  font-weight: 500;
  margin: 30px 0 10px 0;
}
section .content p{
text-align: justify;
}



/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

@media screen and (max-width: 991px) {

    
    /* Page Home */
    .logo img {
        width: 50%;
        margin: 15px 15px;
    }
    
    .logo h1{
        font-size: 30px;
    }

    .nav-section li a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 18px;
    }

    /* Page Jumbotron */
    .title-home h2 {
        font-size: 27px;
        line-height: 18px;
    }

    .angkatan-tahun h3 {
        margin-top: 15px;
    }

    
    /* ================== */
    /* ALL PAGE FOR TITLE */
    .title-page h2 {
       font-size: 25px;
    }
    
    .title-page hr {
        width: 115px;
        margin-top: -7px;
    }

    .page-biaya .title-page hr {
        width: 5000px;
    }


    /* ===================== */
    /* Page Info */

    .content-info {
        margin-left: 2%;
    }

    .content-informasi {
        width: 670px;
    }

    /* ================== */

    /* Page Pendaftaran */
    .text-pilih-unit p {
        font-size: 18px;
    }

    /* Card Form Sementara */

    .card-form-smntr h3{
        font-size: 20px;
    }
    
    .card-form-smntr hr {
        width: 265px;
    }


    /* ==================== */

    /* Lokasi */
    .page-lokasi .title-page hr {
        width: 220px;
    }

    .lokasi-section {
        width: auto;
    }

    /* =========================== */

    /* Login */
    .page-login .title-page hr {
        width: 65px;
    }
    
    
    
    /* ===================== */

    /* Footer */
    .footer-text {
        margin-top: 40px;
    }


    /* ===================== */
    /* Tabs */
    .wrapper{
        max-width: 750px;
        padding: 25px 10px 30px 10px;
    }
      
    .wrapper nav label{
        font-size: 16px;
        margin: 0 2px;
    }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

@media screen and (max-width: 767px) {
   /* Page Home */
   /* Logo */
   .logo img {
    width: 50%;
   }

   /* Jumbotron */
   .title-home h2 {
        font-size: 24px;
        line-height: 16px;
    }

    .angkatan-tahun h3 {
        margin-top: 15px;
        font-size: 20px;
    }

    /* Information */
    .section-information-home {
        margin-top: 18px;
    }

    .info-home {
        margin-bottom: 40px;
    }

    .information h3{
        font-size: 21px;
    }

    .text-information-home {
        margin-top: 2px;
    }

    .text-information-home p {
        width: 95%;
    }

    /* ================== */
    /* ALL PAGE FOR TITLE */
    .title-page h2 {
        font-size: 23px;
     }
     
     .title-page hr {
         width: 105px;
         margin-top: -7px;
     }

     /* ===================== */
    /* Page Info */

    .title-sub h4 {
        font-size: 18px;
    }

    .content-informasi {
        line-height: 28px;
        font-size: 15px;
        width: 450px;
    }

    /* .img-alur img {
        width: 350px;
    } */

    
    /* ================================ */

    /* Lokasi */
    .page-lokasi .title-page hr {
        width: 205px;
    }

    .lokasi-section {
        width: auto;
        margin-left: 25px;
    }

    /* =========================== */

    /* Login */
    .page-login .title-page {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .login-section {
        width: 90%;
        margin: auto;
        font-size: 17px;
        padding-bottom: 50px;
    }

    /* ================== */

    /*  Footer */

    .footer-container {
        margin-left: 5%;
    }
    .footer-text {
        margin-top: 40px;
    }


    /* ===================== */
    /* Tabs */
    .wrapper{
        max-width: 500px;
        padding: 25px 10px 30px 10px;
    }
      
    .wrapper nav label{
        font-size: 16px;
        margin: 0 2px;
        line-height: 25px;
    }

    .wrapper nav label .flwchrt {
        padding-top: 20px;

    }
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

@media screen and (max-width: 550px) {
    .logo img {
        width: 60%;
       }

    .logo h1{
        font-size: 25px;
    }
    
    /* Jumbotron */
    .jumbotron {
        padding-top: 10px;
    }

    .title-home {
        margin-top: 8px;
        margin-bottom: 10px;
    }

       
    .title-home h2 {
        font-size: 18px;
        line-height: 8px;
    }
    
    .angkatan-tahun h3 {
        margin-top: 15px;
        font-size: 17px;
    }
    
    /* Information */
    
    .information img {
        width: 30px;
    }

    .information h3{
        font-size: 18px;
    }
    
    .text-information-home {
        margin-top: 2px;
        margin-left: 30px;
    }
    
    .text-information-home p {
        width: 90%;
    }
    
    .text-information-home a {
        font-size: 15px;
    }

    /* ===================== */
    /* Page Info */

    .title-sub h4, .alur-detail h5 {
        font-size: 16px;
    }

    .content-informasi {
        width: 340px;
    }

    /* .img-alur img {
        width: 300px;
    } */


    /* ================== */

    /* Page Pendaftaran */
    .text-pilih-unit p {
        font-size: 16px;
    }

    /* Card Form Sementara */

    .card-form-smntr h3{
        font-size: 18px;
    }
    
    .card-form-smntr hr {
        width: 238px;
    }
    
    .form-text {
        font-size: 14px;
    }

    /* ================== */

    /* Page Footer */

    .footer-logo img {
        margin-top: 20px;
    }

    .footer-text a, .footer-text p {
        font-size: 14px;
    }


    /* ===================== */
    /* Tabs */
    .wrapper{
        max-width: 395px;
    }

    .wrapper nav{
        height: 42px;
      }
      
    .wrapper nav label{
        font-size: 13px;
        line-height: 20px;
    }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

@media screen and (max-width: 398px) {

    /* Header */
    .hotline h5 {
        font-size: 12px;
    }
    
    .logo h1{
        font-size: 20px;
    }

    /* ============================= */
    
    /* PageHome */
    
    /* Jumbotron */

    .title-home {
        margin-top: 5px;
        margin-bottom: 10px;
    }

       
    .title-home h2 {
        font-size: 16px;
        line-height: 5px;
    }
    
    .angkatan-tahun h3 {
        margin-top: 16px;
        font-size: 14px;
    }
    
    /* Information */
    
    .information img {
        width: 25px;
        margin-top: -2px;
    }

    .information h3{
        font-size: 16px;
    }
    
    .text-information-home {
        margin-top: 2px;
        margin-left: 24px;
        font-size: 14px;
        line-height: 25px;
    }
    
    .text-information-home p {
        width: 90%;
    }
    
    .text-information-home a {
        font-size: 13px;
    }

    /* ================== */
    /* ALL PAGE FOR TITLE */
    .title-page h2 {
        font-size: 20px;
     }
     
     .title-page hr {
         width: 92px;
     }


    /* ================== */
    /* page-pendaftaran */

    .title-sub h4, .alur-detail h5 {
        font-size: 15px;
    }

    .content-informasi {
        line-height: 25px;
        font-size: 14px;
        width: 280px;
    }

    /* .img-alur img {
        width: 250px;
    } */

    /* ======================== */
    /* Card Form Sementara */

    .card-form-smntr h3{
        font-size: 16px;
    }
    
    .card-form-smntr hr {
        width: 210px;
    }
    

    /* ================================ */

    /* Lokasi */
    .page-lokasi .title-page hr {
        width: 180px;
    }

    .lokasi-section {
        width: auto;
        margin-left: 25px;
    }

    .item-lokasi h4 {
       font-size: 16px;
    }

    .item-lokasi p {
        font-size: 14px;
    }

    /* =========================== */

    /* Login */
    .page-login .title-page hr{
        width: 50px;
        margin-bottom: 10px;
    }

    .login-section {
        font-size: 15px;
    }

    .text-login p {
        line-height: 22px;
    }

    .form-for-login input {
        font-size: 15px;
    }

    .form-for-login .btn-login-form {
        font-size: 15px;
    }


    /* ============================= */

     


    /* Footer */

    .footer-logo img {
        margin-top: 20px;
        width: 200px;
    }

  

    /* ===================== */
    /* Tabs */
    .wrapper{
        max-width: 320px;
    }

    .wrapper nav{
        height: 39px;
      }
      
    .wrapper nav label{
        font-size: 12px;
        line-height: 18px;
    }

    

    
}



.angkatan-tahun span {
    display: inline-block;
}

@media screen and (max-width: 365px) {
    .title-home h2 {
        font-size: 14px;
        line-height: 5px;
    }
}

@media screen and (max-width: 330px) {
    .title-home h2 {
        font-size: 13px;
        line-height: 5px;
    }
}



.img-biaya {
    margin-top: 20px;
    margin-bottom: 20px;
}

.img-biaya img {
    width: 60%;
    border: 1px solid #004054;
}

.img-discount {
    margin-top: 10px;
    margin-bottom: 10px;
}

.img-discount img {
    width: 100%;
    border: 1px solid #004054;
}

.img-discount-tk {
    margin-top: 10px;
    margin-bottom: 10px;
}

.img-discount-tk img {
    width: 100%;
    border: 1px solid #004054;
}

.content-informasi ol {
    margin-left: -20px;
}

.content-informasi p {
    font-weight: 300;
    line-height: 25px;
} 

.content-informasi .skema-biaya { 
    font-weight: 600;
    font-style: italic;
    margin-top: 30px;
    margin-bottom: 5px;
} 

.test-aja li{
    margin-left: -1000px !important;
}




