:root {
    --color1: #fff;
    --color2: #1e3b5d;
    --color3: #ffd600;
    --color4: #e7edf5;
    --color5: #14b64a;
    --color6: #F37402;
}

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');

/* ===============================
   GLOBAL
================================ */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 10pt;
    color: var(--color2);
    font-family: 'Poppins', Arial, Helvetica, sans-serif !important;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--color6);
    text-decoration: none;
}

p{
  margin-bottom: 20px;
  font-size: 12pt;
  line-height: 30px;
}

p>strong{
  font-weight: 900px;
  color: var(--color6);
}

ol, ul {
  list-style: auto;
  list-style-position: outside;
  font-size: 12pt;
  line-height: 30px;
  padding-left: 15px;
}

/* ===============================
   HEADER / NAVBAR
================================ */
.ars-header {
    width: 100%;
    height: 92px;
    background: var(--color1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.ars-header-container {
    height: 92px;
    display: flex;
    align-items: center;
}

/* LOGO */
.ars-brand {
    flex: 0 0 150px;
}

.ars-brand img {
    display: block;
    width: auto;
    height: 68px;
    max-width: 95px;
}

/* NAV AREA */
.ars-nav-collapse {
    flex: 1;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

/* MENU */
.ars-menu,
.ars-buttons {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ars-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.ars-menu li a {
    color: var(--color2);
    font-size: 12px;
    font-weight: normal;
    text-decoration: none;
    white-space: nowrap;
}

.ars-menu li a:hover {
    color: var(--color2);
}

/* BUTTONS */
.ars-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ars-buttons li a {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.btn-main {
    background: var(--color2);
    color: var(--color3) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.btn-border {
    background: var(--color4);
    color: var(--color2) !important;
    border: 1px solid var(--color4);
}

/* MOBILE TOGGLE */
.ars-mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--color4);
    border-radius: 4px;
    padding: 9px 10px;
    margin-left: auto;
}

.ars-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color2);
    margin: 4px 0;
}

/* ===============================
   HERO CAROUSEL
================================ */
.ars-hero {
    margin-top: 92px;
}

.ars-hero-slide {
    position: relative;
    height: calc(100vh - 92px);
    min-height: 650px;
    background-size: cover;
    background-position: center;
}

.ars-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 52, 91, .66);
}

.ars-hero-overlay.stronger {
    background: rgba(12, 43, 76, .72);
}

.ars-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color1);
    padding-top: 215px;
}

.ars-hero-content h1 {
    margin: 0 0 20px;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 600;
}

.ars-hero-content p {
    margin: 0 0 80px;
    font-size: 12pt;
    line-height: 1.35;
}

.ars-hero-btn {
    display: inline-block;
    background: var(--color3);
    color: var(--color2) !important;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none !important;
}

.ars-hero-btn:hover {
    color: var(--color2);
    text-decoration: none;
}

.ars-hero-btn span {
    margin-left: 10px;
    font-size: 20px;
}

/* SLIDE 2 */
.scholarship-content h1 {
    font-size: 58px;
}

.scholarship-content p {
    max-width: 900px;
    margin-bottom: 34px;
}

.hero-btn-group {
    display: flex;
    gap: 70px;
}

/* SLIDE 3 */
.international-content {
    padding-top: 150px;
}

.international-content h1 {
    font-size: 58px;
    line-height: 1.25;
}

.hero-pill {
    display: inline-block;
    margin: 16px 0 28px;
    padding: 8px 26px;
    background: rgba(122, 154, 190, .55);
    border-radius: 22px;
    color: var(--color1);
    font-size: 25px;
}

.international-content p {
    margin-bottom: 22px;
}

.country-list {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-bottom: 28px;
}

.country-item {
    text-align: center;
    color: var(--color1);
    font-size: 26px;
}

.flag-dot {
    display: block;
    width: 58px;
    height: 58px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #fff;
}

/* dummy flag colors */
.flag-dot.japan {
    background: radial-gradient(circle, #e3212c 0 28%, #fff 30%);
}

.flag-dot.germany {
    background: linear-gradient(#000 0 33%, #dd0000 33% 66%, #ffce00 66%);
}

.flag-dot.taiwan {
    background: #ed1c24;
}

.flag-dot.korea {
    background: #fff;
}

.flag-dot.kuwait {
    background: linear-gradient(#3c8b3f 0 33%, #fff 33% 66%, #d42e2e 66%);
}

/* SLIDE 4 LEADERS */
.leader-slide {
    overflow: hidden;
}

.leader-container {
    position: relative;
    z-index: 2;
    height: 100%;
    color: var(--color1);
}

.leader-title {
    position: absolute;
    left: 15px;
    top: 255px;
    width: 430px;
}

.leader-title h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.leader-grid {
    position: absolute;
    right: 0;
    top: 70px;
    width: 760px;
    text-align: center;
}

.leader-card {
    color: var(--color1);
    text-align: center;
}

.leader-card img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 6px;
}

.leader-card p {
    margin: 0;
    font-size: 10px;
    line-height: 1.3;
}

.leader-top {
    margin-bottom: 24px;
}

.leader-row {
    display: flex;
    justify-content: center;
    gap: 78px;
    margin-bottom: 22px;
}

.leader-row.row-2 {
    gap: 230px;
}

.leader-row .leader-card {
    width: 190px;
}

/* SLIDE 5 */
.slide-center .ars-hero-content {
    text-align: center;
    padding-top: 190px;
    max-width: none;
}

.center-content h1 {
    font-size: 58px;
}

.center-content p {
    margin-bottom: 70px;
}

.center-content h4 {
    margin: 0 0 32px;
    font-size: 15px;
    font-style: italic;
    font-weight: 700;
}

/* INDICATORS */
.ars-hero .carousel-indicators {
    bottom: 48px;
}

.ars-hero .carousel-indicators li,
.ars-hero .carousel-indicators .active {
    width: 10px;
    height: 10px;
    margin: 4px;
    border: 0;
    background: #fff;
}

/* ===============================
   RESPONSIVE
================================ */

/* Medium laptop */
@media (max-width: 1199px) {
    .ars-brand {
        flex-basis: 120px;
    }

    .ars-menu {
        gap: 22px;
    }

    .ars-buttons li a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Tablet */
@media (max-width: 991px) {

    .ars-header,
    .ars-header-container {
        height: 82px;
    }

    .ars-brand {
        flex-basis: 95px;
    }

    .ars-brand img {
        height: 58px;
        max-width: 82px;
    }

    .ars-menu {
        gap: 14px;
    }

    .ars-menu li a {
        font-size: 13px;
    }

    .ars-buttons li a {
        padding: 9px 11px;
        font-size: 13px;
    }

    .ars-hero {
        margin-top: 82px;
    }

    .ars-hero-slide {
        height: calc(100vh - 82px);
    }

    .ars-hero-content {
        padding-top: 200px;
    }

    .ars-hero-content h1,
    .scholarship-content h1,
    .international-content h1,
    .center-content h1 {
        font-size: 30px;
    }

    .ars-hero-content p,
    .international-content p {
        font-size: 14px;
    }

    .hero-btn-group,
    .country-list {
        gap: 18px;
        flex-wrap: wrap;
    }

    .leader-title {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        padding-top: 80px;
        text-align: center;
    }

    .leader-grid {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        margin-top: 30px;
    }

    .leader-row,
    .leader-row.row-2 {
        gap: 20px;
        flex-wrap: wrap;
    }

    .leader-card p {
        font-size: 10px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ars-header {
        height: auto;
        min-height: 72px;
    }

    .ars-header-container {
        height: auto;
        min-height: 72px;
        display: block;
        position: relative;
    }

    .ars-brand {
        height: 72px;
        display: flex;
        align-items: center;
    }

    .ars-brand img {
        height: 52px;
        max-width: 75px;
    }

    .ars-mobile-toggle {
        display: block;
        position: absolute;
        top: 17px;
        right: 15px;
    }

    .ars-nav-collapse {
        display: none !important;
        width: 100%;
        padding: 0 0 18px;
    }

    .ars-nav-collapse.in {
        display: block !important;
    }

    .ars-menu,
    .ars-buttons {
        display: block;
    }

    .ars-menu li a {
        display: block;
        padding: 12px 0;
        font-size: 15px;
    }

    .ars-buttons li a {
        margin-top: 8px;
        padding: 10px 16px;
    }

    .ars-hero {
        margin-top: 72px;
    }

    .ars-hero-slide {
        height: auto;
        min-height: 720px;
        padding-bottom: 80px;
    }

    .ars-hero-content,
    .international-content,
    .slide-center .ars-hero-content {
        padding-top: 120px;
    }

    .ars-hero-content h1,
    .scholarship-content h1,
    .international-content h1,
    .center-content h1 {
        font-size: 24px;
    }

    .ars-hero-content p,
    .international-content p {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .hero-btn-group {
        display: block;
    }

    .hero-btn-group .ars-hero-btn {
        margin-bottom: 12px;
    }

    .hero-pill {
        font-size: 16px;
    }

    .country-list {
        justify-content: center;
    }

    .country-item {
        font-size: 16px;
    }

    .flag-dot {
        width: 42px;
        height: 42px;
    }

    .leader-title h2 {
        font-size: 14px;
    }

    .leader-grid {
        margin-top: 20px;
    }

    .leader-row {
        margin-bottom: 10px;
    }

    .leader-row .leader-card {
        width: 140px;
    }

    .leader-card img {
        width: 45px;
        height: 45px;
    }

    .leader-card p {
        font-size: 10px;
    }
}

/* ===============================
   DROPDOWN DESKTOP
================================ */
.ars-dropdown {
    position: relative;
}

.ars-submenu {
    position: absolute;
    top: 100%;
    /* penting: nempel ke parent */
    left: 0;
    min-width: 220px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    background: var(--color1);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    display: none;
    z-index: 9999;
}

.ars-dropdown:hover .ars-submenu {
    display: block;
}

.ars-submenu li a {
    display: block;
    padding: 10px 18px;
    color: var(--color2);
    text-decoration: none;
    font-size: 14px;
}

.ars-submenu li a:hover {
    background: var(--color4);
}

.ars-submenu li a:hover {
    background: var(--color4);
    color: var(--color2);
}

/* ===============================
   MOBILE ADJUSTMENT
================================ */
@media (max-width: 767px) {
    .ars-buttons {
        text-align: center;
        margin-top: 12px;
        margin-bottom: 14px;
    }

    .ars-buttons li {
        text-align: center;
    }

    .ars-buttons li a {
        display: inline-block;
        margin: 10px auto 0;
    }

    .ars-submenu {
        display: block;
        position: static;
        min-width: 0;
        padding: 6px 0 8px 18px;
        margin: 0;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
    }

    .ars-submenu li a {
        padding: 8px 0;
        font-size: 16px;
        color: var(--color2);
    }
}

@media (max-width: 767px) {

    .ars-dropdown .ars-submenu {
        display: none;
        position: static;
        box-shadow: none;
        padding-left: 15px;
    }

    .ars-dropdown.active .ars-submenu {
        display: block;
    }

    .ars-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* ===============================
   DESKTOP BUTTON ANIMATION FIX
================================ */
@media (min-width: 768px) {

    .ars-buttons li a,
    .ars-hero-btn {
        position: relative;
        overflow: hidden;
        transform: translateY(0);
        transition:
            transform .25s ease,
            box-shadow .25s ease,
            background-color .25s ease,
            color .25s ease,
            border-color .25s ease;
    }

    .ars-buttons li a:hover,
    .ars-hero-btn:hover {
        transform: translateY(-3px);
        text-decoration: none;
    }

    .btn-main:hover,
    .btn-consult:hover {
        background: var(--color2);
        color: var(--color3) !important;
        box-shadow: 0 10px 22px rgba(12, 49, 95, .28);
    }

    .btn-border:hover {
        background: var(--color2);
        border-color: var(--color2);
        color: var(--color3) !important;
        box-shadow: 0 10px 22px rgba(12, 49, 95, .18);
    }

    .ars-hero-btn:hover {
        background: var(--color4);
        color: var(--color2) !important;
        box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    }

    .ars-hero-btn span {
        display: inline-block;
        transition: transform .25s ease;
    }

    .ars-hero-btn:hover span {
        transform: translateX(6px);
    }
}

/* ===============================
   TRUST + PROGRAM SECTION
================================ */
.ars-trust-section {
    background: #ffffff;
    padding: 52px 0 82px;
    color: var(--color2);
}

.trust-intro {
    text-align: center;
    font-size: 12pt;
    line-height: 1.45;
    font-weight: 500;
    margin-bottom: 82px;
    color: var(--color2);
}

.trust-stats {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 150px;
}

.stat-item {
    flex: 1;
}

.stat-item h3 {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--color2);
}

.stat-item p {
    margin: 0;
    font-size: 12pt;
    color: var(--color2);
}

.program-heading {
    text-align: center;
    margin-bottom: 52px;
}

.program-heading h2 {
    margin: 0 0 18px;
    font-size: 36px;
    font-weight: 700;
    color: var(--color2);
}

.program-heading p {
    margin: 0;
    font-size: 12pt;
    color: var(--color2);
}

.program-cards {
    display: flex;
    gap: 32px;
}

.program-card {
    flex: 1;
    min-height: 185px;
    padding: 34px 24px 28px;
    border: 1px solid var(--color4);
    border-top: 5px solid var(--color3);
    border-radius: 16px;
    background: var(--color1);
    box-shadow: 0 8px 24px rgba(15, 49, 89, .04);
    transition: transform .25s ease, box-shadow .25s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(15, 49, 89, .10);
}

.program-icon {
    margin-bottom: 18px;
}

.program-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.program-card h4 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: var(--color2);
}

.program-card p {
    margin: 0;
    font-size: 10pt;
    line-height: 1.35;
    color: var(--color2);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .trust-stats {
        flex-wrap: wrap;
        gap: 34px 0;
        margin-bottom: 90px;
    }

    .stat-item {
        flex: 0 0 50%;
    }

    .program-cards {
        flex-wrap: wrap;
    }

    .program-card {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 767px) {
    .ars-trust-section {
        padding: 42px 0 60px;
    }

    .trust-intro {
        font-size: 15px;
        margin-bottom: 46px;
    }

    .trust-intro br {
        display: none;
    }

    .trust-stats {
        display: block;
        margin-bottom: 70px;
    }

    .stat-item {
        margin-bottom: 32px;
    }

    .stat-item h3 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .stat-item p {
        font-size: 15px;
    }

    .program-heading h2 {
        font-size: 28px;
    }

    .program-heading p {
        font-size: 15px;
    }

    .program-cards {
        display: block;
    }

    .program-card {
        margin-bottom: 18px;
    }
}

/* ===============================
   FUTARS SECTION
================================ */
.ars-futars-section {
    background: var(--color2);
    padding: 80px 0;
    color: #fff;
}

/* LAYOUT */
.futars-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.futars-left {
    flex: 1;
}

.futars-badge {
    display: inline-block;
    background: rgba(255, 212, 0, 0.15);
    color: var(--color3);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 600;
}

.futars-left h2 {
    font-size: 36px;
    margin: 0 0 18px;
}

/* PARAGRAPH RULE (MAX 12px) */
.futars-desc {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 520px;
}

/* LIST */
.futars-list {
    margin-bottom: 30px;
}

.futars-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.futars-item .icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 212, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* HEADING (boleh max 14px) */
.futars-item h4 {
    margin: 0 0 6px;
    font-size: 12pt;
    font-weight: 700;
}

/* PARAGRAPH (max 12px) */
.futars-item p {
    margin: 0;
    font-size: 10pt;
    line-height: 1.5;
    opacity: 0.9;
}

/* BUTTON */
.futars-btn {
    display: inline-block;
    background: var(--color3);
    color: var(--color2);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

/* RIGHT */
.futars-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.futars-image {
    position: relative;
    max-width: 480px;
}

.futars-image img {
    width: 100%;
    border-radius: 20px;
}

/* BADGE TOP */
.badge-top {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--color3);
    color: var(--color2);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
}

.badge-top strong {
    display: block;
    font-size: 28px;
}

.badge-top span {
    font-size: 12px;
}

/* BADGE BOTTOM */
.badge-bottom {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color1);
    color: var(--color2);
    padding: 18px;
    border-radius: 14px;
}

.badge-bottom strong {
    display: block;
    font-size: 22px;
}

.badge-bottom span {
    font-size: 12px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .futars-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .futars-desc {
        margin: 0 auto 30px;
    }

    .futars-item {
        text-align: left;
    }

    .futars-image {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {

    .ars-futars-section {
        padding: 60px 0;
    }

    .futars-left h2 {
        font-size: 28px;
    }

    .futars-desc,
    .futars-item p {
        font-size: 12px;
    }

    .futars-item h4 {
        font-size: 13px;
    }

    .badge-top,
    .badge-bottom {
        transform: scale(0.9);
    }
}

/* ===============================
   FUTARS ICON GLOW + IMAGE BADGE FIX
================================ */

/* globe box */
.futars-item .icon {
    flex: 0 0 42px;
    width: 42px !important;
    height: 42px !important;
    border-radius: 7px !important;
    background: rgba(255, 212, 0, .18) !important;
    color: #ffd400;
    box-shadow:
        0 0 0 1px rgba(255, 212, 0, .16),
        0 0 18px rgba(255, 212, 0, .28),
        inset 0 0 12px rgba(255, 212, 0, .14);
}

/* right column */
.futars-right {
    flex: 0 0 48%;
    display: flex;
    justify-content: flex-end;
}

/* image frame */
.futars-image {
    position: relative;
    width: 100%;
    max-width: 570px;
    padding: 0;
    margin-top: 35px;
}

.futars-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    border-radius: 45px 18px 45px 18px;
    display: block;
}

/* yellow badge: overlap image corner */
.badge-top {
    position: absolute;
    top: -38px;
    right: -24px;
    width: 135px;
    height: 126px;
    padding: 22px 12px;
    border-radius: 16px;
    background: #ffd400;
    color: #193657;
    text-align: center;
    z-index: 3;
}

.badge-top strong {
    font-size: 38px;
    line-height: .9;
    display: block;
}

.badge-top span {
    margin-top: 6px;
    display: block;
    font-size: 13px;
    line-height: 1.05;
}

/* white badge: overlap bottom-left image */
.badge-bottom {
    position: absolute;
    left: -32px;
    bottom: -34px;
    width: 140px;
    padding: 20px 22px;
    border-radius: 14px;
    background: #ffffff;
    color: #193657;
    z-index: 3;
}

.badge-bottom strong {
    font-size: 34px;
    line-height: 1;
    display: block;
}

.badge-bottom span {
    font-size: 12px;
    line-height: 1.1;
}

/* tablet */
@media (max-width: 991px) {
    .futars-right {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .futars-image {
        margin-top: 40px;
        max-width: 540px;
    }
}

/* ===============================
   MOBILE FUTARS FINAL FIX
================================ */
@media (max-width: 767px) {

    .futars-right {
        width: 100%;
        margin-top: 35px;
    }

    .futars-image {
        position: relative;
        width: calc(100% - 32px);
        margin: 0 auto;
    }

    .futars-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 28px 12px 28px 12px;
    }

    /* BADGE ATAS (OK) */
    .badge-top {
        position: absolute;
        top: -36px;
        right: -6px;
        width: 110px;
        height: 100px;
        padding: 14px 8px;
        border-radius: 14px;
        z-index: 5;
    }

    .badge-top strong {
        font-size: 28px;
    }

    .badge-top span {
        font-size: 11px;
        line-height: 1.1;
    }

    /* ✅ FIX UTAMA ADA DI SINI */
    .badge-bottom {
        position: absolute;
        left: 12px;
        /* <-- bukan minus lagi */
        bottom: -28px;
        /* <-- lebih dekat ke gambar */
        width: 120px;
        padding: 14px 12px;
        border-radius: 14px;
        z-index: 5;
    }

    .badge-bottom strong {
        font-size: 26px;
        line-height: 1;
    }

    .badge-bottom span {
        font-size: 11px;
        line-height: 1.1;
    }

    /* kasih ruang bawah supaya tidak kepotong */
    .ars-futars-section {
        padding-bottom: 90px;
    }
}

/* ===============================
   FACULTY SECTION
================================ */
.ars-faculty-section {
    background: var(--color1);
    padding: 78px 0 90px;
    color: var(--color2);
}

.faculty-heading {
    text-align: center;
    margin-bottom: 54px;
}

.faculty-heading h2 {
    margin: 0 0 18px;
    font-size: 38px;
    font-weight: 700;
    color: var(--color2);
}

.faculty-heading p {
    margin: 0;
    font-size: 12pt;
    color: var(--color2);
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px 50px;
}

.faculty-card {
    position: relative;
    min-height: 250px;
    padding: 30px 34px 28px;
    background: var(--color1);
    border: 1px solid var(--color4);
    border-left: 6px solid var(--color3);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 49, 89, .04);
    transition: transform .25s ease, box-shadow .25s ease;
}

.faculty-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(15, 49, 89, .10);
}

.faculty-badge {
    display: inline-block;
    margin-bottom: 32px;
    padding: 7px 18px;
    border-radius: 20px;
    background: var(--color4);
    color: var(--color2);
    font-size: 11px;
    font-weight: 600;
}

.faculty-card h3 {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--color2);
}

.faculty-card ul {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
}

.faculty-card ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1.35;
    color: var(--color2);
}

.faculty-card ul li:before {
    content: "🎓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 11px;
    color: var(--color3);
}

.faculty-card p {
    position: relative;
    margin: 0 0 24px;
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.35;
    color: var(--color2);
}

.faculty-card p:before {
    content: "💼";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color3);
    font-size: 11px;
}

.faculty-card a {
    position: absolute;
    left: 34px;
    bottom: 26px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color2);
    text-decoration: none;
}

.faculty-card a span {
    font-size: 42px;
    line-height: 0;
    font-weight: 300;
    transition: transform .25s ease;
}

.faculty-card a:hover span {
    transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .faculty-card {
        min-height: 270px;
    }
}

@media (max-width: 767px) {
    .ars-faculty-section {
        padding: 58px 0 64px;
    }

    .faculty-heading h2 {
        font-size: 28px;
    }

    .faculty-heading p {
        font-size: 12px;
    }

    .faculty-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .faculty-card {
        min-height: 0;
        padding: 26px 24px 72px;
    }

    .faculty-card a {
        left: 24px;
    }
}

/* ===============================
   ALUMNI SECTION
================================ */
.ars-alumni-section {
    background: #ffffff;
    padding: 56px 0 76px;
    color: #193657;
}

.alumni-heading {
    text-align: center;
    margin-bottom: 26px;
}

.alumni-heading h2 {
    margin: 0 0 8px;
    font-size: 36px;
    font-weight: 700;
    color: #102f56;
}

.alumni-heading p {
    margin: 0;
    font-size: 14px;
    color: #304866;
}

/* COUNTRY */
.alumni-map-grid {
    max-width: 980px;
    margin: 0 auto 44px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px 26px;
    align-items: start;
}

.alumni-country {
    text-align: center;
}

.alumni-country img {
    width: 100%;
    height: 120px;
    /* atur tinggi sesuai desain */
    object-fit: cover;
    /* penting */
    border-radius: 8px;
    display: block;
}

.alumni-country p {
    margin: 0;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
}

.alumni-country p img {
    display: inline-block;
    width: 18px;
    height: auto;
    margin-left: 5px;
    vertical-align: middle;
}

.alumni-country:nth-child(1) {
    grid-column: 1 / span 2;
}

.alumni-country:nth-child(2) {
    grid-column: 3 / span 2;
}

.alumni-country:nth-child(3) {
    grid-column: 5 / span 2;
}

.alumni-country:nth-child(4) {
    grid-column: 2 / span 2;
}

.alumni-country:nth-child(5) {
    grid-column: 4 / span 2;
}

.sweet-title {
    text-align: center;
    margin: 8px 0 42px;
    font-size: 16px;
    font-style: italic;
    color: #304866;
}

/* TESTIMONIAL */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.testimonial-card {
    position: relative;
    min-height: 205px;
    padding: 18px 14px 16px;
    border: 1.5px solid #ffd400;
    border-bottom: 5px solid #102f56;
    border-radius: 6px;
    background: #ffffff;
}

.testimonial-card>img {
    position: absolute;
    top: -34px;
    left: 18px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    background: #4f7cff;
    border: 4px solid #102f56;
}

.testimonial-body {
    padding: 0;
}

.testimonial-body h4,
.testimonial-body .role {
    margin-left: 100px;
}

.testimonial-body h4 {
    margin-top: 0;
    margin-bottom: 3px;
    min-height: 18px;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;
    color: #102f56;
}

.testimonial-body .role {
    margin-top: 0;
    margin-bottom: 18px;
    min-height: 42px;
    font-size: 10px;
    line-height: 1.18;
    color: #5f6670;
}

.testimonial-body .role strong {
    color: #102f56;
}

.testimonial-body p:not(.role) {
    clear: both;
    width: 100%;
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    text-align: justify;
    color: #24364d;
}

/* TABLET */
@media (max-width: 991px) {
    .alumni-map-grid {
        max-width: 720px;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 24px;
        margin-bottom: 40px;
    }

    .alumni-country:nth-child(n) {
        grid-column: auto;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 54px 18px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .ars-alumni-section {
        padding: 48px 0 64px;
    }

    .alumni-heading h2 {
        font-size: 28px;
    }

    .alumni-heading p {
        font-size: 12px;
    }

    .alumni-map-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 34px;
    }

    .alumni-country img {
        max-height: 110px;
    }

    .alumni-country h4 {
        font-size: 20px;
    }

    .sweet-title {
        margin-bottom: 42px;
        font-size: 14px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .testimonial-card {
        min-height: 0;
        padding: 18px 14px 16px;
    }

    .testimonial-card>img {
        width: 76px;
        height: 76px;
        top: -30px;
        left: 16px;
    }

    .testimonial-body h4,
    .testimonial-body .role {
        margin-left: 92px;
    }

    .testimonial-body .role {
        min-height: 36px;
        margin-bottom: 16px;
    }
}

/* ===============================
   PMB SECTION
================================ */
.ars-pmb-section {
    background: var(--color1);
    padding: 70px 0 26px;
    color: var(--color2);
}

.pmb-heading {
    text-align: center;
    margin-bottom: 64px;
}

.pmb-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 18px;
    border-radius: 24px;
    background: rgba(255, 212, 0, .35);
    color: var(--color2);
    font-size: 14px;
}

.pmb-heading h2 {
    margin: 0 0 14px;
    font-size: 36px;
    font-weight: 700;
    color: var(--color2);
}

.pmb-heading p {
    margin: 0;
    font-size: 14px;
    color: var(--color2);
}

.pmb-flow-title {
    text-align: center;
    margin-bottom: 46px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color2);
}

/* FLOW */
.pmb-flow {
    max-width: 1010px;
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr 70px 1fr;
    align-items: center;
}

.pmb-step {
    min-height: 125px;
    padding: 18px 16px;
    border: 1px solid var(--color4);
    border-radius: 16px;
    text-align: center;
    background: var(--color1);
    box-shadow: 0 8px 24px rgba(15, 49, 89, .035);
}

.pmb-step span {
    display: inline-flex;
    width: 26px;
    height: 26px;
    margin-bottom: 14px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color3);
    color: var(--color2);
    font-size: 12px;
    font-weight: 700;
}

.pmb-step h4 {
    margin: 0 0 14px;
    font-size: 12pt;
    font-weight: 600;
    color: var(--color2);
}

.pmb-step p {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    color: var(--color2);
}

.pmb-arrow {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--color2);
}

/* INFO GRID */
.pmb-info-grid {
    max-width: 1010px;
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.payment-card,
.scholarship-card {
    min-height: 355px;
    border-radius: 18px;
}

.payment-card {
    padding: 30px 34px;
    background: var(--color1);
    border: 1px solid var(--color4);
    box-shadow: 0 8px 24px rgba(15, 49, 89, .04);
}

.payment-card h3,
.scholarship-card h3 {
    margin: 0 0 36px;
    font-size: 16px;
    font-weight: 700;
}

.payment-list {
    margin-bottom: 42px;
}

.payment-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.payment-item>span {
    color: var(--color3);
    font-size: 22px;
    line-height: 1;
}

.payment-item h4 {
    margin: 0 0 2px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color2);
}

.payment-item p {
    margin: 0;
    font-size: 12px;
    color: var(--color2);
}

.payment-note {
    padding: 18px;
    border-radius: 8px;
    background: var(--color4);
    font-size: 12px;
    line-height: 1.45;
    color: var(--color2);
}

/* SCHOLARSHIP */
.scholarship-card {
    padding: 26px 30px;
    background: var(--color2);
    color: var(--color1);
    box-shadow: 0 8px 24px rgba(15, 49, 89, .08);
}

.scholarship-card h3 {
    color: var(--color1);
}

.scholarship-item {
    padding: 14px 22px;
    margin-bottom: 22px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .18);
}

.scholarship-item h4 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color1);
}

.scholarship-item p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .82);
}

.scholarship-note {
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--color3);
    color: var(--color2);
    font-size: 10px;
    font-weight: normal;
}

/* ACTION */
.pmb-action {
    text-align: center;
}

.pmb-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 7px;
    background: var(--color3);
    color: var(--color2) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}

.pmb-btn span {
    margin-left: 16px;
}

.pmb-action p {
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--color2);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .pmb-flow {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 420px;
    }

    .pmb-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }

    .pmb-info-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        max-width: 620px;
    }
}

@media (max-width: 767px) {
    .ars-pmb-section {
        padding: 52px 0 30px;
    }

    .pmb-heading {
        margin-bottom: 46px;
    }

    .pmb-heading h2 {
        font-size: 28px;
    }

    .pmb-badge {
        font-size: 12px;
    }

    .pmb-flow {
        margin-bottom: 46px;
    }

    .payment-card,
    .scholarship-card {
        min-height: 0;
        padding: 24px 22px;
    }

    .payment-note {
        font-size: 11px;
    }
}

/* ===============================
   PUBLICATION SECTION
================================ */
.ars-publication-section {
    background: #ffffff;
    padding: 70px 0 82px;
    color: #193657;
}

.publication-heading {
    text-align: center;
    margin-bottom: 46px;
}

.publication-heading h2 {
    margin: 0 0 14px;
    font-size: 38px;
    font-weight: 700;
    color: #102f56;
}

.publication-heading p {
    margin: 0;
    font-size: 14px;
    color: #304866;
}

.publication-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 56px;
}

.publication-title-row,
.info-list-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.publication-title-row h3,
.info-list-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #102f56;
}

.publication-title-row a,
.info-list-title a {
    font-size: 12px;
    font-weight: 700;
    color: #102f56;
    text-decoration: none;
}

.article-list {
    display: grid;
    gap: 34px;
}

.article-item {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 18px;
    align-items: start;
}

.article-item img {
    width: 170px;
    height: 110px;
    object-fit: cover;
}

.article-item h4,
.mbkm-feature h4,
.mbkm-card h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.32;
    font-weight: 500;
    color: #111827;
}

.article-item h4 {
    margin-bottom: 18px;
}

.article-item p,
.mbkm-feature p,
.mbkm-card p {
    margin: 0 0 4px;
    font-size: 11px;
    color: #5f6670;
}

.article-item a {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}

.mbkm-feature {
    margin-bottom: 34px;
}

.mbkm-feature img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    margin-bottom: 10px;
}

.mbkm-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.mbkm-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    margin-bottom: 8px;
}

/* BOTTOM INFO LIST */
.info-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.info-list-card {
    padding: 24px 22px;
    border: 1px solid #edf0f3;
    border-top: 4px solid #ffd400;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 49, 89, .04);
}

.date-list-item {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #eef1f5;
}

.date-list-item:last-child {
    border-bottom: 0;
}

.date-box {
    text-align: center;
    line-height: 1;
}

.date-box strong {
    display: block;
    font-size: 36px;
    line-height: .95;
    font-weight: 800;
    color: #ffd400;
}

.date-box span {
    display: block;
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.15;
    color: #333333;
}

.date-content h4 {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.35;
    /* font-weight: 700; */
    color: #2b2b2b;
}

.date-content p {
    margin: 0;
    font-size: 12px;
    color: #999999;
}

/*** Pimpinan ***/
.pimpinan{
  margin-top: 30px;
}
.pimpinan img{
  max-width: 100%;
  max-height: 150px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.pimpinan .title-dashboard {
  color: var(--color2);
  margin-bottom: 35px;
  font-weight: bold;
}
.pimpinan .title-dashboard h3{
  font-size: 16px;
}
.pimpinan .area-content .box-content h4 {
  margin: 22px 0 30px;
  color: var(--color2);
}
.pimpinan .area-content .box-content p {
  line-height: 1.8;
}
@media (max-width: 767px) {
  .pimpinan .area-content .box-content {
    margin-bottom: 20px;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .publication-grid,
    .info-list-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .ars-publication-section {
        padding: 54px 0 62px;
    }

    .publication-heading h2 {
        font-size: 28px;
    }

    .publication-heading p {
        font-size: 12px;
    }

    .publication-title-row,
    .info-list-title {
        display: block;
    }

    .publication-title-row a,
    .info-list-title a {
        display: inline-block;
        margin-top: 8px;
    }

    .article-item {
        grid-template-columns: 1fr;
    }

    .article-item img,
    .mbkm-feature img,
    .mbkm-card img {
        width: 100%;
        height: 180px;
    }

    .mbkm-small-grid {
        grid-template-columns: 1fr;
    }

    .date-list-item {
        grid-template-columns: 64px 1fr;
        gap: 14px;
    }

    .date-box strong {
        font-size: 30px;
    }

    .date-box span {
        font-size: 16px;
    }

    .date-content h4 {
        font-size: 14px;
    }
}

/* ===============================
   CTA BANNER
================================ */
.ars-cta-section {
    position: relative;
    background: var(--color2);
    padding: 48px 0 44px;
    text-align: center;
    color: var(--color1);
    overflow: hidden;
}

.ars-cta-section:before,
.ars-cta-section:after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 212, 0, .18), rgba(255, 212, 0, 0) 65%);
    top: 25px;
}

.ars-cta-section:before {
    left: -60px;
}

.ars-cta-section:after {
    right: -60px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color3);
}

.cta-content h3 {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    color: var(--color1);
}

.cta-content p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .82);
}

.cta-buttons {
    margin: 16px 0 34px;
    display: flex;
    justify-content: center;
    gap: 28px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .25s ease, box-shadow .25s ease;
}

.cta-btn span {
    margin-left: 18px;
    font-size: 24px;
    line-height: 1;
}

.cta-btn.outline {
    border: 1px solid var(--color3);
    color: var(--color1);
    background: transparent;
}

.cta-btn.yellow {
    background: var(--color3);
    color: var(--color2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.cta-contact {
    font-size: 12px;
}

.cta-contact a {
    color: var(--color3);
    text-decoration: none;
}

/* ===============================
   FOOTER
================================ */
.ars-footer {
    background: var(--color4);
    color: var(--color2);
}

.footer-grid {
    padding: 48px 0 42px;
    display: grid;
    grid-template-columns: 1.9fr 1fr 1fr .8fr;
    gap: 55px;
}

.footer-brand img {
    width: 78px;
    height: auto;
    margin-bottom: 26px;
}

.footer-brand>p {
    max-width: 560px;
    margin: 0 0 26px;
    font-size: 12px;
    line-height: 1.35;
    color: var(--color2);
}

.footer-contact div {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    margin-bottom: 22px;
    align-items: start;
}

.footer-contact span {
    color: var(--color2);
    font-size: 18px;
    line-height: 1;
}

.footer-contact p {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    color: var(--color2);
}

.footer-col h4 {
    margin: 0 0 22px;
    font-size: 17px;
    font-weight: 700;
    color: var(--color2);
}

.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col li {
    margin-bottom: 18px;
}

ol, ul {
  list-style: auto;
  list-style-position: outside;
  font-size: 12pt;
  line-height: unset;
  padding-left: unset;
}

.footer-col a {
    font-size: 12px;
    color: var(--color2);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--color6);
}

.footer-bottom {
    border-top: 1px solid var(--color2);
    padding: 12px 0;
    font-size: 14px;
    color: var(--color2);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 767px) {
    .ars-cta-section {
        padding: 42px 0;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-content h3 {
        font-size: 15px;
    }

    .cta-content h3 br {
        display: none;
    }

    .cta-buttons {
        display: block;
    }

    .cta-btn {
        width: 100%;
        margin-bottom: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 38px 0 34px;
    }

    .footer-brand>p,
    .footer-contact p,
    .footer-col a {
        font-size: 14px;
    }

    .footer-col li {
        margin-bottom: 12px;
    }
}

/* BREADCRUMB */
/* Position  breadcrumbs */
#position {
    background-color: var(--color1);
    padding: 12px 0;
    font-size: 11px;
    border-bottom: 1px solid #ededed;
}

#position ul li:first-child {
    padding-left: 20px;
}

#position ul li:first-child:before {
    content: "\f041";
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--color2);
}

#position ul {
    margin: 0;
    padding: 0;
    color: var(--color4);
}

#position ul li a {
    color: var(--color2);
}

#position ul li a:hover {
    color: var(--color6);
    text-decoration: underline;
}

#position ul li {
    display: inline-block;
    padding-right: 5px;
    margin-right: 3px;
    position: relative;
    color: var(--color4);
}

#position ul li:after {
    content: "\f101";
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    /* position: absolute; */
    margin-left: 10px;
    right: 0;
    top: 2px;
}

#position ul li:last-child:after {
    content: '';
}

/* BLOG CONTENT */

.header-page img {
    margin-top: 92px;
    width: 100%;
    max-height: 60vh;
    aspect-ratio: auto 16/9;
    object-fit: cover;
}

.blog-content .area-img img {
    width: 100%;
    max-height: 300px;
    aspect-ratio: auto 16/9;
    object-fit: cover;
}

.blog-content .area-img-portrait img {
    max-width: 100%;
    width: 150px;
    height: 200px;
    aspect-ratio: auto 1.5/2;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
}

.blog-content .articles .article-item .area-content .article-right h3 {
  margin-bottom: 15px;
}
.blog-content .articles .article-item .area-content .article-right h3 a {
  color: var(--color2);
  font-size: 14px;
  font-family: "Montserrat-Regular";
}
.blog-content .articles .article-item .area-content .article-right h3 a:hover {
  color: var(--color3);
}

@media (min-width: 992px) {
  .share .box-share ul li {
    height: 55px;
    width: 220px;
  }
  .share .box-share ul .facebook a {
    background: url("../../media/icon/ico-facebook-p.png") no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .share .box-share ul .twitter a {
    background: url("../../media/icon/ico-twitter-p.png") no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .share .box-share ul .whatsapp a {
    background: url("../../media/icon/ico-whatsapp-p.png") no-repeat;
    background-size: contain;
    background-position: center center;
  }
}
@media (max-width: 991px) {
  .share .box-share ul li {
    height: 37px;
    width: 37px;
  }
  .share .box-share ul .facebook a {
    background: url("../../media/icon/ico-facebook.png") no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .share .box-share ul .twitter a {
    background: url("../../media/icon/ico-twitter.png") no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .share .box-share ul .whatsapp a {
    background: url("../../media/icon/ico-whatsapp.png") no-repeat;
    background-size: contain;
    background-position: center center;
  }
}

.blog-content .articles .area-img img {
  width: 100%;
}
.blog-content .articles .area-content {
  margin-top: -2px;
}
.blog-content .articles .area-content .article-left {
  padding: 0;
  border-right: 1px solid var(--color2);
}
.blog-content .articles .area-content .article-left .stats {
  padding: 15px 5px;
  float: left;
  width: 100%;
}
.blog-content .articles .area-content .article-left .stats .text-content {
  margin-right: 0;
}
.blog-content .articles .area-content .article-left .catetory-title {
  background-color: var(--color2);
  text-align: center;
  padding: 9px;
}
.blog-content .articles .area-content .article-left .catetory-title h6 {
  color: #ffffff;
  font-size: 13px;
}
.blog-content .articles .area-content .article-right {
  padding-right: 0;
  padding-top: 23px;
  margin-bottom: 50px;
  padding-left: 30px;
}
.blog-content .articles .area-content .article-right h3 {
  margin-bottom: 15px;
}
.blog-content .articles .area-content .article-right h3 a {
  color: var(--color2);
  font-size: 23px;
  font-family: "Montserrat-Regular";
}
.blog-content .articles .area-content .article-right h3 a:hover {
  color: var(--color6);
}
.blog-content .articles .area-content .article-right p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.blog-content .articles .area-content .article-right .quote-source {
  color: var(--color2);
  font-size: 16px !important;
}
@media (max-width: 767px) {
  .blog-content .articles .area-content .article-right {
    padding-left: 0 !important;
  }
}

/*** ARS Culture ***/
.ars-culture {
    padding: 75px 0;
    font-size: 14px;
    line-height: 1.6;
}
.ars-culture .title-dashboard {
    color: var(--color2);
    margin-bottom: 35px;
    font-weight: bold;
}
.ars-culture .area-content .icon {
    width: 45px;
    height: 30px;
    margin: 0;
    background-repeat: no-repeat;
    background-position: 0 0;
}
.ars-culture .area-content .mail-icon {
    background-image: url("../images/message-icon.png");
}
.ars-culture .area-content .account-icon {
    background-image: url("../images/account-icon.png");
}
.ars-culture .area-content .group-icon {
    background-image: url("../images/group-icon.png");
}
.ars-culture .area-content .search-icon {
    background-image: url("../images/search-icon.png");
}
.ars-culture .area-content .box-content h4 {
    margin: 22px 0 30px;
    color: var(--color2);
}
.ars-culture .area-content .box-content p {
    line-height: 1.8;
}
@media (max-width: 767px) {
    .ars-culture .area-content .box-content {
      margin-bottom: 20px;
    }
}
.ars-culture .pmb {
    margin-top: 20px;
}
.ars-culture .pmb a {
    padding: 18px 32px;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    display: inline-block;
    letter-spacing: 1px;
}
.ars-culture .pmb .btn-theme {
    background-color: var(--color5);
}
@media (max-width: 767px) {
    .ars-culture {
      padding: 20px 0 !important;
    }
}

/*** 13. Blok Fakultas ***/
.block-fakultas .fakultas-title {
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
  }
  .fakultas-content ul, .fakultas-content ol{
    padding-left: unset;
    font-size: 10pt;
    line-height: 20px;
  }
  .fakultas-content ul li{
    list-style: none;
  }
  .block-fakultas .fakultas-content{
    margin-bottom: 20px;
  }
  .block-fakultas .fakultas-image img{
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
  }
  .block-fakultas .fakultas-content .fakultas-desc p {
    font-size: 16px;
    letter-spacing: 3px;
    line-height: 2;
  }
  .block-fakultas{
    background: url("../../media/bg-background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--color3);
  }
  .block-fakultas .color-theme a{
    color: var(--color2);
  }
  .block-fakultas .color-theme a:hover{
    color: var(--color6);
  }
  @media (max-width: 767px) {
    .block-fakultas .fakultas-content .fakultas-desc p {
      font-size: 18px !important;
    }
  }
  @media (min-width: 768px) {
    .block-fakultas {
      padding: 30px 0;
    }
  }
  @media (max-width: 767px) {
    .block-fakultas {
      padding: 30px 0;
    }
  }

  /*** 15. data  ***/
.block-data {
    padding: 135px 0 115px;
    background: url("../../media/bg-data.png") no-repeat;
    background-size: cover;
  }
  .block-data .data-wrapper {
    display: block;
  }
  .block-data .data-title {
    margin-bottom: 30px;
    color: var(--color1);
  }
  .block-data .data-content {
    margin-bottom: 30px;
    color: var(--color1);
  }
  .block-data .data-content .number {
    font-size: 48px;
    color: var(--color1);
    margin-top: 20px;
  }
  .block-data .data-title h2 {
    margin-bottom: 20px;
  }
  .block-data .data-title p {
    font-size: 14px;
    color: var(--color1);
  }
  .block-data .form-inline .form-control {
    background-color: transparent !important;
    border-top: none;
    border-right: none;
    border-left: none;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    margin: 0 auto;
    border-color: var(--color1) !important;
  }
  .block-data .form-inline button {
    clear: both;
    margin: 30px auto 0;
    display: block;
    border: none;
    padding: 16px 45px;
    font-size: 15px;
    color: var(--color1);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  @media (min-width: 768px) {
    .block-data .data-title h2 {
      font-size: 34px;
    }
    .block-data .form-inline .form-control {
      width: 420px;
    }
  }
  @media (max-width: 767px) {
    .block-data .data-title h2 {
      font-size: 26px;
      line-height: 1.6;
    }
    .block-data .form-inline .form-control {
      width: 100%;
    }
  }
  
  .block-data.type2 .form-inline button {
    color: var(--color1);
  }
  
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px transparent;
    background-color: var(--color1);
  }
  
  ::-webkit-scrollbar {
    width: 8px;
    background-color: var(--color1);
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: var(--color4);
    border: 0px solid var(--color1);
    border-radius: 10px;
    opacity: 0.5;
  }

.logo-footer img{
    max-height: 100px;
}

.social-icon{
    width: 40px;
    height: 40px;
    object-fit: scale-down;
}

.header-page img{
  width: 100%;
  max-height: 60vh;
  aspect-ratio: auto 16/9;
  object-fit: cover;
}

.img-rektor img{
  max-width: 100%;
  max-height: 450px;
  width: auto;
  object-fit: scale-down;
  aspect-ratio: auto 3/4;
  margin-left: auto;
  margin-right: auto;
  display: block;
}