* {
    padding: 0;
    margin: 0;
    font-family:Arial, Helvetica, sans-serif;
}
body.no-scroll {
    overflow: hidden;
}

/* Navbar */

    nav .nav-wrapper {
        width: 100%;
        height: 0px;
        background-color: hsla(0, 0%, 0%, 0.7);
        position: fixed;
        top: 0;
        z-index: 99;
        transition: 0.3s ease;
    }

    @media (min-width: 992px) {
        nav .nav-mob,
        nav .body-nav-mob {
            display: none;
        }
        nav .nav-wrapper.scroll {
            height: 80px;
        }
        nav .nav-desk {
            position: fixed;
            top:4px;
            left: 47%;
            transform: translate(-50%, 0%);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 800px;
            z-index: 100;
            transition: 0.3s ease;
        }
        nav .nav-desk.scroll {
            left: 50%;
        }
        nav .nav-desk .logo {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        nav .nav-desk .logo img {
            width: 80px;
        }
        nav .nav-desk .sub-nav-item {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 30px;
            margin-left: auto;
            margin-right: 100px;
        }
        nav .nav-desk .sub-nav-item a{
            text-decoration: none;
            color: white;
        }
        nav .nav-desk .sub-nav-item a:hover {
            color: rgb(66, 66, 66);
            transition: 0.3s;
        }
        nav .nav-desk .sub-nav-item .button-nav {
            display: flex;
        }
        nav .nav-desk .sub-nav-item .button-nav #btn-1 {
            width: 50px;
            height: 38px;
            background-color: transparent;
            border-radius: 100px 0 0 100px;
            border: 1px solid white;
            color: white;
        }
        nav .nav-desk .sub-nav-item .button-nav #btn-1.active {
            width: 50px;
            height: 38px;
            background-color: white;
            border-radius: 100px 0 0 100px;
            border: 1px solid white;
            color: black;
        }
        nav .nav-desk .sub-nav-item .button-nav #btn-1:hover {
            background-color: rgba(0,0,0,0.08);
            transition: 0.3s;
        }
        nav .nav-desk .sub-nav-item .button-nav #btn-2 {
            width: 50px;
            height: 38px;
            background-color: transparent;
            border-radius: 0 100px 100px 0;
            border: 1px solid white;
            color: white;
        }
        nav .nav-desk .sub-nav-item .button-nav #btn-2.active {
            width: 50px;
            height: 38px;
            background-color: white;
            border-radius: 100px 0 0 100px;
            border: 1px solid white;
            color: black;
        }
        nav .nav-desk .sub-nav-item .button-nav #btn-2:hover {
            background-color: rgba(0,0,0,0.08);
            transition: 0.3s;
        }

        @media (min-width: 1199px) {
            nav .nav-desk {
                width: 1000px;
            }
        }
    }

    @media (max-width: 991px) {
        nav .nav-desk {
            display: none;
        }

        nav .nav-wrapper.scroll {
            height: 90px;
        }

        nav .nav-mob {
            position: fixed;
            top: 10px;
            display: flex;
            align-items: center;
            width: 100%;
            z-index: 101;
            padding-left: 1.5rem;
        }

        nav .nav-mob .logo img {
            width: 80px;
        }
        nav .nav-mob .sub-nav-item {
            margin-left: auto;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 30px;
            font-size: 30px;
            padding-right: 3rem;
        }
        nav .nav-mob .sub-nav-item li button {
            outline: none;
            border: none;
            background-color: transparent;
            display: flex;
            flex-direction: column;
            align-items: end;
            gap: 3px;
            position: relative;
        }
        nav .nav-mob .sub-nav-item li .bar-1 {
            border: 3px solid white;
            width: 15px;
            transition: 0.3s;
        }
        nav .nav-mob .sub-nav-item li .bar-2 {
            border: 3px solid white;
            width: 30px;
            transition: 0.3s;
        }
        nav .nav-mob .sub-nav-item li .bar-3 {
            border: 3px solid white;
            width: 22px;
            transition: 0.3s;
        }
        nav .nav-mob .sub-nav-item li .bar-1.active-bar1  {
            width: 25px;
            transform: rotate(-50deg);
        }
        nav .nav-mob .sub-nav-item li .bar-2.active-bar2 {
            width: 0px;
            opacity: 0;
        }
        nav .nav-mob .sub-nav-item li .bar-3.active-bar3 {
            width: 25px;
            transform: rotate(50deg);
            position: absolute;
        }
        @media (max-width: 599px) {
            nav .nav-mob {
                top: 6px;
            }
            
            nav .nav-wrapper.scroll {
                height: 60px;
            }

            nav .nav-mob .logo img {
                width: 50px;
            }

            nav .nav-mob .sub-nav-item li .bar-1 {
                border: 2px solid white;
                width: 13px;
            }
            nav .nav-mob .sub-nav-item li .bar-2 {
                border: 2px solid white;
                width: 28px;
            }
            nav .nav-mob .sub-nav-item li .bar-3 {
                border: 2px solid white;
                width: 20px;
            }

            nav .nav-mob .sub-nav-item li .bar-1.active-bar1  {
                width: 23px;
            }
            nav .nav-mob .sub-nav-item li .bar-2.active-bar2 {
                width: 0px;
            }
            nav .nav-mob .sub-nav-item li .bar-3.active-bar3 {
                width: 23px;
            }
        }
        nav .nav-mob .sub-nav-item a{
            text-decoration: none;
            color: black;
        }
        nav .nav-mob .sub-nav-item a:hover {
            color: rgb(66, 66, 66);
            transition: 0.3s;
        }
        nav .body-nav-mob { 
            height: 100vh;
            width: 100%;
            position: fixed;
            top: -130%;
            z-index: 100;
            background-color: rgb(72, 72, 72);
            
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            gap: 35px;

            list-style: none;
            transition: 0.5s;
        }
        nav .body-nav-mob.active-body-nav-mob { 
            top: 0;
        } 
        
        nav .body-nav-mob #search-bar-mob input{
            width: 220px;
            height: 30px;
            background: transparent;
            border: none;
            border-bottom: 2px solid #ffffff;
            outline: none;
            padding: 0 20px;
        }

        /* Animation Navbar Min-Devices */
            nav .body-nav-mob li {
                opacity: 0;
                transform: translateY(-20px);
                transition: 
                    opacity 0.4s ease,
                    transform 0.4s ease;
            }
            nav .body-nav-mob.show-items li {
                opacity: 1;
                transform: translateY(0);
            }

            nav .body-nav-mob.show-items li:nth-child(1) { transition-delay: 0.1s; }
            nav .body-nav-mob.show-items li:nth-child(2) { transition-delay: 0.2s; }
            nav .body-nav-mob.show-items li:nth-child(3) { transition-delay: 0.3s; }
            nav .body-nav-mob.show-items li:nth-child(4) { transition-delay: 0.4s; }
            nav .body-nav-mob.show-items li:nth-child(5) { transition-delay: 0.5s; }
            nav .body-nav-mob.show-items li:nth-child(6) { transition-delay: 0.6s; }
            nav .body-nav-mob.show-items li:nth-child(7) { transition-delay: 0.7s; }

            nav .body-nav-mob li {
                transition-delay: 0s;
            }
            
        /* Close Animation Navbar Min-Devices */

        nav .body-nav-mob a{
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 25px;
        }
        nav .body-nav-mob .button-nav {
            display: flex;
        }
        nav .body-nav-mob .button-nav #btn-1 {
            width: 50px;
            height: 38px;
            background-color: transparent;
            border-radius: 100px 0 0 100px;
            color: white;
            border: 1px solid white;
            font-size: 20px;
            font-weight: bold;
        }
        nav .body-nav-mob .button-nav #btn-1:hover {
            background-color: rgba(0,0,0,0.08);
            transition: 0.3s;
        }
        nav .body-nav-mob .button-nav #btn-2 {
            width: 50px;
            height: 38px;
            background-color: transparent;
            border-radius: 0 100px 100px 0;
            color: white;
            border: 1px solid white;
            font-size: 20px;
            font-weight: bold;
        }
        nav .body-nav-mob .button-nav #btn-2:hover {
            background-color: rgba(0,0,0,0.08);
            transition: 0.3s;
        }
    }

/* Close Navbar */

/* Aside */


    .typing-placeholder,
    .typing-placeholder-2  {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;

        color: white;
        font-size: 24px;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .right-aside {
        position: fixed;
        display: flex;
        transition: 0.3s ease;
        z-index: 101;
    }
    
    .right-aside ul {
        list-style: none;
        padding: 0;
        margin: 0;
        
        flex: 1;
        display: flex;
        flex-direction: row;
    }
    
    .right-aside li {
        text-transform: uppercase;
        font-weight: bold;
        flex: 1;
        width: 100%;

    }

    .right-aside ul li a {
        display: flex;
        position: relative;
        align-items: center;
        height: 100%; 
        
        box-sizing: border-box;  
        text-decoration: none;
        color: white;
        background-color: #484848;
        transition: 0.3s ease;
    }

    .right-aside a:hover {
        background-color: #EF6C00;
        color: white;
    }

    .right-aside a.active {
        background-color: #EF6C00;
        color: white;
    }

    .right-aside a > i { 
        font-size: 24px;
        text-align: center;
    }
    
    .right-aside .text {
        white-space: nowrap;
        transition: 
            opacity 0.3s ease,
            transform 0.3s ease;
    }

    .right-aside a::after  {
        content: "";
        position: absolute;
    }
    .body-right-aside {
        position: fixed;
        opacity: 0;
        z-index: -100;
        background-color: #EF6C00;
        transition: margin-right 0.3s ease;
        transition: 0.3s ease;
    }
    .body-right-aside.clicked {
        z-index: 101;
    }
    .body-right-aside .content-panel {
        color: white;
        display: none;
        animation: fadeSlide 0.3s ease;
        text-align: center;
    }

    .body-right-aside .content-panel.active {
        display: block;
    }
    
    .body-right-aside #promo h2 {
        margin-bottom: 15px;
    }
    .body-right-aside #promo ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;

        min-height: 87vh;

        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .body-right-aside #promo .proms-extends {
        text-align: right;
        margin-top: 20px;
    }
    .body-right-aside #promo .proms-extends a{
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        color: white;
    }

    .body-right-aside #promo ul .proms-items {
        display: flex;
        flex: 1;
    }

    .body-right-aside #promo ul .proms-items a{
        text-decoration: none;
        color: white;

        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        gap: 10px;
        
        background-color: #484848;
        border-radius: 10px;

        padding: 0 0.5rem;
        transition: 0.3s ease;
    }
    
    .body-right-aside #promo ul .proms-items a:hover{
        transform: translateY(-5px);
        background-color: #383838;
        box-shadow: 3px 6px 8px rgba(0, 0, 0, 0.2);
    }
    
    .body-right-aside #promo ul .proms-items a .content-promo-1 {
        font-size: 16px;
        font-weight: 600;
    }
    .body-right-aside #promo ul .proms-items a .content-promo-2 {
        font-size: 12px;
    }

    .body-right-aside #produk .wrapper-produk {
        min-height: 100vh;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .body-right-aside #produk .wrapper-produk .content {
        flex: 1;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        gap: 50px;
    }
    .body-right-aside #produk .wrapper-produk .content h3 {
        font-size: 20px;
        text-align: left;
    }
    .body-right-aside #produk .wrapper-produk .content ul {
        list-style: none;
        padding: 0 0 0 20px;
        flex: 1;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;

        text-align: left;
    }
    .body-right-aside #produk .wrapper-produk .content ul li {
        flex: 1;
    }
    .body-right-aside #produk .wrapper-produk .content ul li a {
        text-decoration: none;
        color: white;
        font-size: 16px;
        font-weight: 500;

        position: relative;
    }
    .body-right-aside #produk .wrapper-produk .content ul li a::after {
        content: "";
        position: absolute;
        bottom: -10px;
        width: 0;
        left: 0;
        border-bottom: 1px solid white;
        transition: 0.2s ease;
    }
    .body-right-aside #produk .wrapper-produk .content ul li a:hover::after {
        width: 100%;
        transition: 0.2s ease;
    }

    .body-right-aside #webform {
        color: white;
    }
    .body-right-aside #webform #webFormLkm {
        min-height: 100vh;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .body-right-aside #webform #webFormLkm > * {
        flex: 1;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        gap: 5px;
    }
    .body-right-aside #webform #webFormLkm h2 {
        text-align: center;
        font-size: 24px;
    }
    .body-right-aside #webform #webFormLkm > *::after {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        border-bottom: 1px solid white;
        width: 80%;

    }
    .body-right-aside #webform #webFormLkm label {
        font-size: 16px;
        text-align: left;
        font-weight: 600;
    }
    .body-right-aside #webform #webFormLkm input,
    .body-right-aside #webform #webFormLkm textarea,
    .body-right-aside #webform #webFormLkm select {
        outline: none;
        border: none;
        font-size: 14px;
        height: fit-content;
        padding: 0.5rem 0.8rem;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.6);
    }

    .body-right-aside #webform #webFormLkm .button-submit {
        margin-top: auto;
    }
    .body-right-aside #webform #webFormLkm button {
        outline: none;
        border: none;
        border-radius: 10px;
        background-color: orange;
        color: white;
        padding: 0.8rem 1rem;
        font-size: 18px;
        font-weight: 600;
        margin-left: auto;
    }
    @media (min-width: 992px) {
        .right-aside {
            right: 0;
            top: 0;
            width: 200px;
            height: 100vh;
            flex-direction: column; 
        }
    
        .right-aside ul {
            position: relative;
            list-style: none;
            padding: 0;
            margin: 0;
            
            flex: 1;
            flex-direction: column;
        }

        .right-aside ul li a {
            align-items: center;
            justify-content: space-between;
            
            padding: 0 30px;
            font-size: 16px;
        }

        .right-aside a::after  {
            bottom: 0px;
            z-index: 101;
            left: 50%;
            border-top: 1px solid #EF6C00;
            transform: translateX(-50%);
            width: calc(100% - 40px); /* ❗ RESPONSIF */
        }

        .right-aside li a[data-target="kontak"]::after  {
            content: none;
        }

        .right-aside.collapsed {
            width: 90px;
        }

        .right-aside.collapsed li a {
            justify-content: center;
        }

        .right-aside.collapsed .text {
            display: none;
        }

        .body-right-aside {
            right: 0px;
            width: 220px;
            height: 100vh;
            padding: 1rem;
        }
        
        .body-right-aside.clicked {
            opacity: 1;
            right: 200px;
        }

        @keyframes fadeSlide {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
         
        .body-right-aside #webform #webFormLkm {
            /* min-height: 80vh; */
        }
        .body-right-aside #webform #webFormLkm label {
            /* font-size: 20px; */
        }
        .body-right-aside #webform #webFormLkm input,
        .body-right-aside #webform #webFormLkm textarea,
        .body-right-aside #webform #webFormLkm select {
            /* font-size: 16px; */
        }

    }
    
    @media (max-width: 991px) {
        .right-aside {
            bottom: 0;
            width: 100%;
            height: 7.5vh;
        }

        .right-aside a {
            flex-direction: column-reverse;
            justify-content: center;
            text-align: center;
            
            
            padding: 0 auto;
            font-size: 14px;
            gap: 10px;
        }
        .right-aside a i {
            font-size: 27px;
        }
        .body-right-aside .clicked {
            background-color: #EF6C00;
        }
        .right-aside a::after  {
            left: -1px;
            border: 1px solid #EF6C00;
            height: calc(100% - 20px);
        }

        .right-aside li a[data-target="beranda"]::after  {
            content: none;
        }

        .body-right-aside {
            bottom: -30%;
            width: 100%;
            height: auto;
            margin-bottom: 80px;
        }

        .body-right-aside.clicked {
            opacity: 1;
            bottom: 0;
        }

        .body-right-aside .content-panel {
            padding: 2rem;
        }

        @keyframes fadeSlide {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .right-aside a i{
                font-size: 22px;
            }
            .right-aside a {
                font-size: 12px;
            }
        }
        
        @media (max-width: 599px) {
            .right-aside a {
                font-size: 10px;
                gap: 8px;
            }
            .right-aside a i{
                font-size: 20px;
            }
        }
        @media (max-width: 375px) {
            .right-aside i {
                font-size: 16px !important;
            }
            .right-aside a {
                font-size: 8px;
                gap: 8px;
            }
        }
        
        .body-right-aside #produk .wrapper-produk {
            min-height: 100%;
            gap: 35px;
        }
        .body-right-aside #produk .wrapper-produk .content {
            gap: 15px;
        }
        .body-right-aside #produk .wrapper-produk .content h3 {
            font-size: 20px;
            text-align: center;
            position: relative;
        }
        .body-right-aside #produk .wrapper-produk .content h3::after {
            content: "";
            position: absolute;
            bottom:-7px;
            left: 50%;
            transform: translateX(-50%);
            border-bottom: 1px solid white;
            width: calc(20% - 40px); /* ❗ RESPONSIF */
        }
        .body-right-aside #produk .wrapper-produk .content ul {
            padding: 0;
            gap: 25px;
            text-align: center;
        }
        .body-right-aside #produk .wrapper-produk .content ul li {
        }
        .body-right-aside #produk .wrapper-produk .content ul li a {
            font-size: 16px;
            position: relative;
        }
        .body-right-aside #produk .wrapper-produk .content ul li a::after {
        }
        .body-right-aside #produk .wrapper-produk .content ul li a:hover::after {
            width: 0;
            transition: 0.2s ease;
        }
        .body-right-aside #promo ul {
            min-height: 60vh;
            display: grid;
            grid-template-columns: 0.8fr 0.8fr;
            gap: 10px;
        }
            
        .body-right-aside #webform #webFormLkm {
            min-height: 60vh;
        }
        
        .body-right-aside #webform #webFormLkm > *::after {
            width: 0%;

        }
        .body-right-aside #webform #webFormLkm h2 {
            font-size: 28px;
        }
        .body-right-aside #webform #webFormLkm label {
            font-size: 18px;
        }
        .body-right-aside #webform #webFormLkm input,
        .body-right-aside #webform #webFormLkm textarea,
        .body-right-aside #webform #webFormLkm select {
            font-size: 14px;
        }
    }
        
    @media (max-width: 767px) {
        .body-right-aside #produk .wrapper-produk .content h3::after {
            width: calc(30% - 40px); /* ❗ RESPONSIF */
        }
    }
    
    @media (max-width: 599px) {
        .body-right-aside #produk .wrapper-produk .content h3::after {
            width: 50px; /* ❗ RESPONSIF */
        }
    }

    @media (max-width: 399px) {
        .body-right-aside .content-panel {
            padding: 0.8rem;
        }
    }

/* Close Aside */

/* Main */
.head-content{
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;

    position: relative;
    transition: 0.3s ease;
}
.head-content .head-content-wrapper {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
}
.search-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    opacity:0;
    pointer-events:none;
    transition:0.3s;
    z-index:10;
}

.search-overlay.active{
    opacity:1;
    pointer-events:auto;
}

.search-bar-head{
    position:relative;
    z-index:20;
    width:650px;
}

.typing-placeholder{
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    pointer-events:none;
    color:#ffffff;
}


/* overlay */

.search-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    opacity:0;
    pointer-events:none;
    transition:0.3s;
    z-index:10;
}

.search-overlay.active{
    opacity:1;
    pointer-events:auto;
}


/* suggestion dropdown */

.search-suggestions{

    position:absolute;
    top:110%;
    left:0;
    width:100%;

    background:white;
    border-radius:8px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.2);

    opacity:0;
    transform:translateY(-10px);
    pointer-events:none;

    transition:all .25s ease;
}


.search-suggestions.show{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

.search-suggestions.hide{
    opacity:0;
    transform:translateY(-10px);
}


.search-suggestions div{
    padding:12px;
    cursor:pointer;
}

.search-suggestions div:hover{
    background:#f3f3f3;
}
.head-content .search-bar-head #search_head {
    border: 0;
    border-bottom: 4px solid white;
    background-color: transparent;
    width: 100%;
    height: 70px;
    color: white;
    font-size: 30px;
}
.head-content .search-bar-head #search_head:focus {
    outline: none;
}
.head-content .search-bar-head .search-icon-bar-head { 
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 28px;
    color: white;
}
.head-content .hhsddfds {
    width: 650px;
    height: 320px;
    display: grid;
    grid-template-areas:
        "hhsddfds-1 hhsddfds-2";
    grid-template-columns: 2.6fr 1.4fr;
    gap: 30px;
}
.head-content .hhsddfds .hhsddfds-1 {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden; /* penting! biar gambar gak keluar */
}
.head-content .hhsddfds .hhsddfds-1 .wrapper {
    position: absolute;
    z-index: 3; 
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.head-content .hhsddfds .hhsddfds-1 .carousel {
    position: relative;
    width:  100%;
    height: 320px;
    overflow: hidden;
    border-radius: 10px;
}

/* Fade system */
.head-content .hhsddfds .hhsddfds-1 .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #fff;
}

.head-content .hhsddfds .hhsddfds-1 .slide .carousel-text { 
    position: absolute;
    text-align: center;
    padding: 0.3rem 2.5rem;
    z-index: 4;
}
.head-content .hhsddfds .hhsddfds-1 .slide .carousel-text {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
} 

.head-content .hhsddfds .hhsddfds-1 .slide.active {
    opacity: 1;
    z-index: 1;
}


/* Buttons */
.head-content .hhsddfds .hhsddfds-1 .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
}

.head-content .hhsddfds .hhsddfds-1 .prev { left: 10px; }
.head-content .hhsddfds .hhsddfds-1 .next { right: 10px; }

/* Dots */
.head-content .hhsddfds .hhsddfds-1 .dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.head-content .hhsddfds .hhsddfds-1 .dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #aaa;
    cursor: pointer;
}

.head-content .hhsddfds .hhsddfds-1 .dot.active {
    background: #fff;
    width: 30px;
}

.head-content .hhsddfds .hhsddfds-2 {
    position: relative;
    width:  100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden; /* penting! biar gambar gak keluar */
}
.head-content .hhsddfds .hhsddfds-2 .wrapper {
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
.head-content .hhsddfds .hhsddfds-2 .text-head-crs {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 6;
    color: white;
    top: 25px;
    left: 12.5px;
    gap: 40px;
}
.head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-mobs {
    display: none;
}
.head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-deskt {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}
.head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-deskt .bulan {
    display: flex;
    align-items: center;
}
.head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-deskt .bulan > * {
    text-align: center;
    width: 100%;
}
.head-content .hhsddfds .hhsddfds-2 .text-head-crs button {
    outline: none;
    border: none;
    border-radius: 10px;
    background: orange;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
}

.head-content .hhsddfds .hhsddfds-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.head-content .hhsddfds .hhsddfds-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.head-content .oottspr {
    position: absolute;
    bottom: 20px;
    font-size: 18px;
    color: white;
}


@media (min-width: 992px) {
    .head-content{
        margin-right: 200px;
        
    }
    .head-content.scroll {
        margin-right: 90px;
    }

}

@media (max-width: 991px) {

    .head-content{
        margin-right: 0;
    }
    .head-content {
        height:92.5vh;
        padding: 0 25px;
    }

    @media (max-width: 767px) {
        .head-content .hhsddfds {
            width: 550px;
            height: unset;
            display: flex;
        }

        .head-content .search-bar-head {
            width: 550px;
        }

        .head-content .hhsddfds .hhsddfds-1 {
        }
        .head-content .hhsddfds .hhsddfds-1 .carousel {
            height: 260px;
        }
        .head-content .hhsddfds .hhsddfds-2 .text-head-crs {
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            gap: 20px;
        }
        .head-content .hhsddfds .hhsddfds-2 {
            display: none;
            height: 0;
            width: 0;
        }
        .head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-deskt {
            display: none;
        }
        .head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-mobs {
            display: flex;
            justify-content: center;
            gap: 20px;

        }
        .head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-mobs .bulan > * {
            text-align: center;
            width: max-content;
        }
        .head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-mobs .no-1 {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-mobs .no-2 {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-mobs .bulan {
            display: flex;
            gap: 20px;
        }
        .head-content .hhsddfds .hhsddfds-2 .text-head-crs .button-bunga-deps a {
            text-decoration: none;
            color: white;
        }
    }

    @media (max-width: 599px) {
        .head-content .hhsddfds {
            width: 100%;
        }
        
        .head-content .search-bar-head {
            width: 100%;
        }
        .head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-mobs .bulan > * {
            text-align: center;
            font-size: 14px;
            width: max-content;
        }
    }

    @media (max-width: 599px) {
        .head-content .hhsddfds .hhsddfds-1 .slide .carousel-text a {
            font-size: 16px;
        } 
        .head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-mobs .bulan > * {
            font-size: 12px;
        }
    }

    @media (max-width: 339px) {
        .head-content .hhsddfds .hhsddfds-1 .slide .carousel-text { 
            font-size: 14px;
        }
        .head-content .hhsddfds .hhsddfds-2 .text-head-crs .suku-bunga-deposito-mobs .bulan > * {
            font-size: 10px;
        }
    }
}


.tessitytyysi .prodss,
.tessitytyysi .xxlkfssdd,
.tessitytyysi .jjSdrdds,
.f-jsk {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto; /* FIX UTAMA */
}

.tessitytyysi {
    display: flex;
    flex: 1;
    align-items: center;
    margin-right: 90px;
    margin-top: 30px;
    margin-bottom: 40px;
}
.tessitytyysi .xxlkfssddi {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.tessitytyysi .xxlkfssddi a {
    position: relative;
    text-decoration: none;
    font-weight: bold;
}
.tessitytyysi .xxlkfssddi a.active {
    color: #E65100;
}
.tessitytyysi .xxlkfssddi a.active::after {
    content: "";
    position: absolute;
    left: 0;
    background: #E65100;
    border-radius: 2px;
}
.tessitytyysi .xxlkfssddi .xxlkfssddi-2 a{
    transition: all 0.3s ease;
    color: black;
}
.tessitytyysi .xxlkfssddi .xxlkfssddi-2 a:hover {
    cursor: pointer;
    color: #E65100;
}

.tessitytyysi .prodss {
    
}
.tessitytyysi .prodss .prodss-1 {
    text-align: center;
}
.tessitytyysi .prodss .prodss-1 .prodss-1-1 {
    margin-bottom: 2.5rem;
}
.tessitytyysi .prodss-1 a {
    position: relative;
    text-decoration: none;
    font-weight: bold;
}
.tessitytyysi .prodss-1 a.active {
    color: #E65100;
}
.tessitytyysi .prodss-1 a.active::after {
    content: "";
    position: absolute;
    left: 0;
    background: #E65100;
    border-radius: 2px;
}
.tessitytyysi .prodss-2 {
    display: flex;
    gap: 30px;
}
.tessitytyysi .prodss-2 a {
    text-decoration: none;
    flex: 1;
}
.tessitytyysi .prodss-2 .card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    color: black;
    background-color: white;
}
.tessitytyysi .prodss-2 .card .card-img {
    width: 100%;
    object-fit: cover;
}
.tessitytyysi .prodss-2 .card .card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.tessitytyysi .prodss-2 .card .card-body{
    padding: 0.5rem 0.7rem;
}
.tessitytyysi .prodss-2 .card .card-body .card-body-desc {
    text-align:center;
    font-size: 18px;
    font-weight: 600;
}
.tessitytyysi .prodss-2 .card .card-footer {
    text-align:center;
    padding: 0.6rem 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}
.tessitytyysi .prodss-2 .card .card-footer button {
    font-size: 18px;
    outline: none;
    border: none;
    border-radius: 10px;
    padding: 0.4rem 1rem;
    color: black;
    background-color: #d8d8d8;
}

.tessitytyysi .xxlkfssdds {
    display: grid;
}
.tessitytyysi .xxlkfssdds a {
    text-decoration: none;
    color: black;
}
.tessitytyysi .xxlkfssdds .card {
    max-width: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    color: black;
    background-color: white;;
}
.tessitytyysi .xxlkfssdds .card .card-img {
    width: 100%;
    object-fit: cover;
}
.tessitytyysi .xxlkfssdds .card .card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.tessitytyysi .xxlkfssdds .card .card-body{
    padding:0 0.5rem;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tessitytyysi .xxlkfssdds .card .card-body .card-body-desc {
    font-size: 18px;
    font-weight: 600;
}
.tessitytyysi .xxlkfssdds .card .card-footer {
    font-size: 11px;
    padding-right: 1rem;
    text-align: right;
    color: rgba(0, 0, 0, 0.5);
}

.tessitytyysi .jjSdrdds a {
    text-decoration: none;
}
.tessitytyysi .jjSdrdds .jjSdrddssi {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.tessitytyysi .jjSdrdds .jjSdrddssi a {
    font-weight: bold;
    text-decoration: none;
    color: black;
    font-size: 1.4rem;
}
.tessitytyysi .jjSdrdds .jjSdrddssi a.active {
    color: #E65100;
    position: relative;
}
.tessitytyysi .jjSdrdds .jjSdrddssi a.active::after {
    content: "";
    position: absolute;
    left: 0;
    background: #E65100;
    border-radius: 2px;
}
.tessitytyysi .jjSdrdds .jjSdrddssi .xxlkfssddi-2 a{
    transition: all 0.3s ease;
}
.tessitytyysi .jjSdrdds .jjSdrddssi .xxlkfssddi-2 a:hover {
    cursor: pointer;
    color: #E65100;
}

.tessitytyysi .jjSdrdds .jjSdrddsss {
    display: flex;
}
.tessitytyysi .jjSdrdds .jjSdrddsss .card {
    color: black;
    background-color: white;
}
.tessitytyysi .jjSdrdds .jjSdrddsss .card-1 .card {
    width: 320px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden; 
}
.tessitytyysi .jjSdrdds .jjSdrddsss .card-1 .card .card-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;     /* gambar tidak gepeng */
    display: block;
}
.tessitytyysi .jjSdrdds .jjSdrddsss .card-1 .card .card-body {
    display: flex;  
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    gap: 13px;
}
.tessitytyysi .jjSdrdds .jjSdrddsss .card-1 .card .card-body .card-body-time { 
    font-size: 11px;
    color: rgb(0, 0, 0, 0.5);
} 
.tessitytyysi .jjSdrdds .jjSdrddsss .card-1 .card .card-body .card-body-desc { 
    font-weight: bold;
} 
.tessitytyysi .jjSdrdds .jjSdrddsss .card-1 .card .card-body .card-body-desc-2 { 
    font-size: 13px;
} 
.tessitytyysi .jjSdrdds .jjSdrddsss .card-2 {
    width: 100%;
    display: grid;
    align-content: start;
}
.tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    color: black;
    background-color: white;
}
.tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-img {
    width: 120px;
    height: 120px;
}
.tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* gambar tidak gepeng */
    display: block;
}
.tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-body {
    display: flex;
    flex-direction: column ;
    gap: 15px;
    padding: 1rem 0.4rem 0.3rem 0.7rem ;
}

.tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-body .card-body-time { 
    font-size: 11px;
    color: rgb(0, 0, 0, 0.5);
} 

.tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-body .card-body-desc { 
    font-size: 16px;
    font-weight: bold;
} 
.tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-body .card-body-desc-2 { 
    font-size: 13px;
} 

.card {
    transition: all 0.3s ease;
    box-shadow: 0 3px 9px rgba(0,0,0,.2);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 10px rgba(0,0,0,.2);
}

@media (min-width: 992px) {
    .tessitytyysi {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 75px;
    }
    .tessitytyysi .prodss-1 a {
        font-size: 22px;
    }
    .tessitytyysi .prodss-1 a.active::after {
        bottom: -0.9rem;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90px;
        height: 3px;
    }

    .tessitytyysi .xxlkfssddi a {
        font-size: 22px;
    }
    .tessitytyysi .xxlkfssddi a.active::after {
        bottom: -0.6rem;
        width: 50px;
        height: 3px;
    }

    .tessitytyysi .xxlkfssdds {
        gap:3.5rem 1.7rem;
        grid-template-columns: repeat(3, 1fr);
    }
    .tessitytyysi .xxlkfssdds .card .card-body .card-body-desc {
        font-size: 18px;
    }

    .tessitytyysi .jjSdrdds .jjSdrddssi a {
        font-size: 22px;
    }
    .tessitytyysi .jjSdrdds .jjSdrddssi a.active::after {
        bottom: -0.6rem;
        width: 50px;
        height: 3px;
    }
    
    .tessitytyysi .jjSdrdds .jjSdrddsss {
        gap: 20px;
    }

    .tessitytyysi .jjSdrdds .jjSdrddsss .card-1 .card .card-body .card-body-desc { 
        font-size: 20px;
        font-weight: bold;
    } 
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card {
        width: 100%;
        height: auto;
    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-img {
       
    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-img img {
       
    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-body {

    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-body .card-body-time { 
    
    } 
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-body .card-body-desc { 
        
    } 
}

@media (max-width: 991px) {
    .tessitytyysi {
        flex-direction: column;
        align-items: center;
        margin-right: 0px;
        padding: 15px;
        gap: 50px;
    }
    .tessitytyysi .prodss-1 a {
        font-size: 22px;
    }
    .tessitytyysi .prodss-1 a.active::after {
        bottom: -0.9rem;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90px;
        height: 3px;
    }
    .tessitytyysi .xxlkfssddi a {
        font-size: 22px;
    }
    
    .tessitytyysi .xxlkfssddi a.active::after {
        bottom: -0.6rem;
        width: 50px;
        height: 3px;
    }

    .tessitytyysi .xxlkfssdds {
        gap:3.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .tessitytyysi .xxlkfssdds .card {
        height: auto;
    }
    .tessitytyysi .xxlkfssdds .card .card-img {

    }
    .tessitytyysi .xxlkfssdds .card .card-img img {

    }
    .tessitytyysi .xxlkfssdds .card .card-body{
        
    }
    .tessitytyysi .xxlkfssdds .card .card-body .card-body-desc {
        font-size: 18px;
    }
    .tessitytyysi .xxlkfssdds .card .card-footer {
        font-size: 11px;
    }

    .tessitytyysi .jjSdrdds .jjSdrddssi a {
        font-size: 22px;
    }
    .tessitytyysi .jjSdrdds .jjSdrddssi a.active::after {
        bottom: -1rem;
        width: 50px;
        height: 3px;
    }
    
    .tessitytyysi .jjSdrdds .jjSdrddsss {
        flex-direction: column;
        gap: 30px;
    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-1 .card {
        width: 100%;
        height: auto;
    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-1 .card .card-img img {
        height: 100%;
        display: block;
    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-1 .card .card-body { 
        gap: 20px;
    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-1 .card .card-body .card-body-time { 
        font-size: 12px;
    } 

    .tessitytyysi .jjSdrdds .jjSdrddsss .card-1 .card .card-body .card-body-desc { 
        font-size: 18px;
        font-weight: bold;
    } 

    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 20px; /* vertical 20px, horizontal 50px */
    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card {
        width: 100%;
        height: 100px;
    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-img img {

    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-body {
        display: flex;
        flex-direction: column ;
        gap: 8px;
        padding: 1rem 0.4rem 0.3rem 0.7rem ;
    }
    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-body .card-body-time { 
        font-size: 12px;
    } 

    .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 .card .card-body .card-body-desc { 
        font-size: 16px;
        font-weight: bold;
    } 
    
    @media (max-width: 599px) {
    
        .tessitytyysi .prodss-1 a {
            font-size: 18px;
        }
        .tessitytyysi .xxlkfssddi a {
            font-size: 18px;
        }
        .tessitytyysi .jjSdrdds .jjSdrddssi a {
            font-size: 18px;
        }

        .tessitytyysi .xxlkfssdds {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 10px;
            scroll-behavior: smooth;
        }

        /* Card */
        .tessitytyysi .xxlkfssdds .card {
            min-width: 300px;
            flex-shrink: 0;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .tessitytyysi .jjSdrdds .jjSdrddsss .card-2 {
            grid-template-columns: repeat(1, 1fr);
            gap: 30px 20px; /* vertical 20px, horizontal 50px */
        }
    }
}
@media (max-width: 768px) {
        
        .tessitytyysi .prodss-2 {
            display: flex;
            overflow-x: auto;
            padding: 10px;
            scroll-behavior: smooth;
        }
        .tessitytyysi .prodss-2 .card .card-img img {
            height: 200px;
        }
        .tessitytyysi .prodss-2 .card .card-footer {
            font-size: 12px;
        }

        .tessitytyysi .prodss .card {
            min-width: 300px;
            height: 270px;
            flex-shrink: 0;
            border-radius: 10px;
            overflow: hidden;
        }
}

/* Profil */

.tessitytyysi .sejarah-lkm,
.tessitytyysi .visi-misi,
.tessitytyysi .pengurus,
.tessitytyysi .webform-page,
.tessitytyysi .cabang,
.tessitytyysi .detail-cabang,
.tessitytyysi .promo-page,
.tessitytyysi .tabungan-prods,
.tessitytyysi .deposito-prods,
.tessitytyysi .kredit-prods,
.tessitytyysi .news-page,
.tessitytyysi .news-page-detail,
.tessitytyysi .tabungan-prods-detail,
.tessitytyysi .promo-prods-detail,
.tessitytyysi .karir-page,
.tessitytyysi .container-keuangan {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto; /* FIX UTAMA */
}

.tessitytyysi .title-sub   {
    color: rgb(230, 81, 0);
    position: relative;
}
.tessitytyysi .title-sub::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -0.6rem;
        background: #E65100;
        border-radius: 2px;
        width: 60px;
        height: 3px;
}
.tessitytyysi .sejarah-lkm .title-sejarah {
    text-align: center;
}
.tessitytyysi .sejarah-lkm .content-sejarah {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.tessitytyysi .sejarah-lkm .content-sejarah .desc-sejarah {
    text-align: justify;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.8;
}
.tessitytyysi .sejarah-lkm .content-sejarah .desc-sejarah ul{
    margin-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tessitytyysi .sejarah-lkm .img-sejarah {
    max-width: 400px;
    height: auto;
}
.tessitytyysi .sejarah-lkm .img-sejarah img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35pc rgb(0, 0, 0, 0.12);
}

.tessitytyysi .visi-misi .title-visi-misi { 
    text-align: center;
}
.tessitytyysi .visi-misi .content-visi-misi {
    display: flex;
    gap: 30px;
}
.tessitytyysi .visi-misi .content-visi-misi > div {
    transition: 0.3s ease;
}

.tessitytyysi .visi-misi .content-visi-misi > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.tessitytyysi .visi-misi .content-visi-misi .visi {
    flex: 1;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.tessitytyysi .visi-misi .content-visi-misi .visi p {
    background-color: white;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
}
.tessitytyysi .visi-misi .content-visi-misi .misi {
    flex: 1;
    background: linear-gradient(135deg, #ffe0cc, #ffc9a8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.tessitytyysi .visi-misi .content-visi-misi > * > h3 { 
    background-color: white;
    width: fit-content;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    margin: -15px auto 20px auto;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.tessitytyysi .visi-misi .content-visi-misi .misi ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tessitytyysi .visi-misi .content-visi-misi .misi ul li {
    font-weight: 500;
    background-color: white;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    position: relative;
    padding-left: 40px;
}

.tessitytyysi .visi-misi .content-visi-misi .misi ul li::before {
    content: "✔";
    position: absolute;
    left: 15px;
    color: #ff6a00;
    font-weight: bold;
}

.tessitytyysi .pengurus .title-pengurus {
    text-align: center;
}
.tessitytyysi .pengurus .content-pengurus {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.tessitytyysi .pengurus .content-pengurus .pengurus-direktur {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 200px;
}
.tessitytyysi .pengurus .content-pengurus .pengurus-direktur .img-content-direktur {
    flex: 1;
}
.tessitytyysi .pengurus .content-pengurus .pengurus-direktur .img-content-direktur img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.tessitytyysi .pengurus .content-pengurus .pengurus-komisaris {
    margin-top: 2.8rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.tessitytyysi .pengurus .content-pengurus .pengurus-komisaris .title-pengurus-komisaris {
    text-align: center;
}
.tessitytyysi .pengurus .content-pengurus .pengurus-komisaris .content-pengurus-komisaris {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 200px;
}
.tessitytyysi .pengurus .content-pengurus .pengurus-komisaris .img-content-komisaris {
    flex: 1;
}
.tessitytyysi .pengurus .content-pengurus .pengurus-komisaris .img-content-komisaris img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.card-pengurus {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(204, 204, 204, 0.3);
    border-radius: 10px;
    overflow: hidden; /* penting biar gambar tidak keluar radius */
}
.card-pengurus img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}
.card-pengurus .card-pengurus-desc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0.3rem 0.5rem 1rem 0.5rem;
}

@media (min-width:992px) {
    /* Perspective dari parent */
    .tessitytyysi .pengurus .content-pengurus .img-content-direktur,
    .tessitytyysi .pengurus .content-pengurus .img-content-komisaris {
        perspective: 1000px;
    }

    /* Upgrade card tanpa merusak layout */
    .card-pengurus {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        transform-style: preserve-3d;
        will-change: transform;
    }

    .card-pengurus:hover {
        box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    }
}
@media (max-width:991px) {
    .tessitytyysi .sejarah-lkm {
        text-align: center;
    }

    .tessitytyysi .sejarah-lkm .content-sejarah {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .tessitytyysi .sejarah-lkm .content-sejarah .desc-sejarah {
        text-align: justify;
    }
    .tessitytyysi .sejarah-lkm .img-sejarah {
        max-width: fit-content;
    }
    
    .tessitytyysi .visi-misi .content-visi-misi {
        flex-direction: column;
    }
}
@media (max-width:768px) {
    
    .tessitytyysi .pengurus .content-pengurus .pengurus-direktur {
        flex-direction: column;
        margin: 0 auto;
        max-width: 300px;
        gap: 30px;    
    }
    .tessitytyysi .pengurus .content-pengurus .pengurus-direktur .img-content-direktur {

    }
    .tessitytyysi .pengurus .content-pengurus .pengurus-direktur .img-content-direktur img {
        width: 100%;
    }
    .tessitytyysi .pengurus .content-pengurus .pengurus-komisaris .content-pengurus-komisaris {
        flex-direction: column;
        margin: 0 auto;
        max-width: 300px;
        gap: 30px;    
    }
    .tessitytyysi .pengurus .content-pengurus .pengurus-komisaris .img-content-komisaris {

    }
    .tessitytyysi .pengurus .content-pengurus .pengurus-komisaris .img-content-komisaris img {
        width: 100%;
    }
}

@media (max-width:399px) {
    
    .tessitytyysi .visi-misi .content-visi-misi .visi {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}


/* Close Profil */

/* Promo Page */
    .tessitytyysi .promo-page {
        gap: 0px !important;
    }
    .tessitytyysi .promo-page-content {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }
    .tessitytyysi .promo-page-content a {
        text-decoration: none;
        color: black;
    }
    .tessitytyysi .promo-page-content .card {
        width: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;
        color: black;
        background-color: white;;
    }
    .tessitytyysi .promo-page-content .card .card-img {
        width: 100%;
        object-fit: cover;
    }
    .tessitytyysi .promo-page-content .card .card-img img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }
    .tessitytyysi .promo-page-content .card .card-body{
        padding: 0.5rem 0.7rem;
    }
    .tessitytyysi .promo-page-content .card .card-body .card-body-desc {
        font-size: 18px;
        font-weight: 600;
    }
    .tessitytyysi .promo-page-content .card .card-footer {
        font-size: 11px;
        padding: 1rem 0.5rem;
    }

    @media (max-width:992px) {
            
        .tessitytyysi .modal-promo .modal-promo-content .modal-promo-header h2 {
            font-size: 18px;
        }
        .tessitytyysi .modal-promo .modal-promo-content .modal-promo-header p {
            font-size: 12px;
        }
        .tessitytyysi .modal-promo .modal-promo-content .modal-promo-body p {
            font-size: 16px;
        }

        .tessitytyysi .promo-page-content {
            gap:1.8rem;
            grid-template-columns: repeat(2, 1fr);
        }
        .tessitytyysi .promo-page-content .card .card-img {

        }
        .tessitytyysi .promo-page-content .card .card-img img {

        }
        .tessitytyysi .promo-page-content .card .card-body{
            
        }
        .tessitytyysi .promo-page-content .card .card-body .card-body-desc {
            font-size: 18px;
        }
        .tessitytyysi .promo-page-content .card .card-footer {
            font-size: 11px;
        }
    }
    @media (max-width:768px) {
            
        .tessitytyysi .modal-promo .modal-promo-content .modal-promo-header h2 {
            font-size: 20px;
        }
        .tessitytyysi .modal-promo .modal-promo-content .modal-promo-header p {
            font-size: 12px;
        }
        .tessitytyysi .modal-promo .modal-promo-content .modal-promo-body p {
            font-size: 16px;
        }
    }

    @media (max-width:559px) {
            
        .tessitytyysi .modal-promo .modal-promo-content .modal-promo-header h2 {
            font-size: 18px;
        }
        .tessitytyysi .modal-promo .modal-promo-content .modal-promo-header p {
            font-size: 12px;
        }
        .tessitytyysi .modal-promo .modal-promo-content .modal-promo-body p {
            font-size: 14px;
        }

        .tessitytyysi .promo-page-content {
            gap:1.8rem;
            grid-template-columns: repeat(1, 1fr);
        }
        .tessitytyysi .promo-page-content .card .card-img {

        }
        .tessitytyysi .promo-page-content .card .card-img img {

        }
        .tessitytyysi .promo-page-content .card .card-body{
            
        }
        .tessitytyysi .promo-page-content .card .card-body .card-body-desc {
            font-size: 18px;
        }
        .tessitytyysi .promo-page-content .card .card-footer {
            font-size: 11px;
        }
    }

    /* Promo Detail */
            .tessitytyysi .promo-prods-detail {
                
            }
            .tessitytyysi .promo-prods-detail .promo-prods-detail-header h2{
                font-size: 24px;
                color: #E65100;
                position: relative;
            }
            .tessitytyysi .promo-prods-detail .promo-prods-detail-header h2:after{
                content: "";
                position: absolute;
                left: 0;
                bottom: -0.6rem;
                background: #E65100;
                border-radius: 2px;
                width: 60px;
                height: 3px;
            }
            .tessitytyysi .promo-prods-detail .promo-prods-detail-page {
                display: flex;
                gap: 20px;
            }
            .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-img img{
                max-width: 550px;
                height: 480px;
                object-fit: cover;     
                
                border-radius: 12px;
                box-shadow: 0px 15px 25px rgb(0, 0, 0, 0.3);
            }
            .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-desc {
                display: flex;
                flex-direction: column;
                gap: 20px;
             }
            .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-desc ul { 
                padding-left: 30px;
                line-height: 1.8;
            }
                
            .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-desc h3{
                font-size: 22px;
            }
            .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-desc p{
                font-size: 19px;
            }
            .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-desc li{
                font-size: 18px;
            }


            @media (max-width:991px) {
                .tessitytyysi .promo-prods-detail .promo-prods-detail-header h2 {
                    font-size: 20px;
                }
                .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-img img{
                    max-width: 100%;
                }
                .tessitytyysi .promo-prods-detail .promo-prods-detail-page {
                    flex-direction: column;
                }
                .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-img { 
                    text-align: center;   
                }
                .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-desc h3{
                    font-size: 20px;
                }
                .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-desc p{
                    font-size: 17px;
                }
                .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-desc li{
                    font-size: 16px;
                }
            }
            @media (max-width:559px) {
                
                .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-desc h3{
                    font-size: 18px;
                }
                .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-desc p{
                    font-size: 15px;
                }
                .tessitytyysi .promo-prods-detail .promo-prods-detail-page .tpdp-desc li{
                    font-size: 14px;
                }
            }
    /* Close Promo Detail */
/* Close Promo Page */

/* Keuangan */

.head-content .hhsddfds .hhsddfds-2 .keuangan {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;
    z-index: 6;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
}
.head-content .hhsddfds .hhsddfds-2 .keuangan button {
    outline: none;
    border: none;
    border-radius: 10px;
    background-color: #E65100;
    color: white;
    padding: 0.6rem 1rem;
}
.head-content .body-modal-bar {
    position: fixed;
    z-index: -100;
    opacity: 0;
    top: -50%;
    background-color: #E65100;
    padding: 2rem;
    margin: 1rem;

    border-radius: 12px;
    color: white;
    transition: 0.6s ease;
}
.head-content .body-modal-bar.clicked {
    opacity: 1;
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
}
.head-content .body-modal-bar .close-modal {
    position: absolute;
    font-size: 25px;
    right: 20px;
    top: 20px;
    font-weight: bold;
}
.head-content .body-modal-bar .modal-head {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin-bottom: 20px;
}
.head-content .body-modal-bar .modal-body {
    text-align: center;
}
.head-content .body-modal-bar .modal-body #laporanPublikasi {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.head-content .body-modal-bar .modal-body select {
    border: none;
    outline: none   ;
    border-bottom: 1px solid white;
    color: white;
    text-align: center;
    background-color: transparent;
}
.head-content .body-modal-bar .modal-body select option {
    color: black;
}
.head-content .body-modal-bar .modal-body a {
    color: white;
    text-decoration: none;
}
.head-content .body-modal-bar .modal-body button {
    outline: none;
    border: none;
    border-radius: 10px;
    background-color: white;
    padding: 0.5rem;
}
.head-content .body-modal-bar .modal-body .pdf-generate {
    display: flex;
    flex-direction: column;
}
.head-content .body-modal-bar .modal-body .pdf-generate iframe{
    width: 100%;
    height: 100%;
}
.head-content .body-modal-bar .modal-body .button-modal {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.head-content .body-modal-bar .modal-body .save-pdf {
    max-width: 80px;
    outline: none;
    border: none;
    border-radius: 10px;
    background-color: white;
    color: black;
    padding: 0.5rem;
}


@media (min-width:992px) {

}
@media (max-width:991px) {
    .head-content .hhsddfds .hhsddfds-2 .keuangan h3 {
        width: max-content;
    }
    
    .head-content .hhsddfds .hhsddfds-2 .keuangan {
        top: 35%;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (max-width:768px) {
    /* .head-content .body-modal-bar {
        max-width: 600px;
    } */
}

/* Close Keuangan */

/* Cabang */

    .tessitytyysi .title-cabang {
        color: rgb(230, 81, 0);
    }
    .tessitytyysi .title-cabang h2{
        position: relative;
        text-align: center;
    }
    .tessitytyysi .title-cabang h2::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -0.6rem;
        background: #E65100;
        border-radius: 2px;
        width: calc(50% - 40px);
        height: 3px;
    }
    .tessitytyysi .cabang {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .tessitytyysi .cabang a {
        text-decoration: none;
        color: black;
    }
    .tessitytyysi .cabang a:hover {
        background-color: #fff;
        width: 100%;
        height: 100%;
    }
    .tessitytyysi .cabang .card {
        height: 100%;
        border-radius: 12px;
        overflow: hidden;
    }
    .tessitytyysi .cabang .card .img-cabang{
    }
    .tessitytyysi .cabang .card .img-cabang img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .tessitytyysi .cabang .card .desc-cabang{
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Detail Cabang */
        .tessitytyysi .detail-cabang .detail-cabangss{
            display: flex;
            gap: 30px;
        }
        .tessitytyysi .detail-cabang .detail-cabang-img {
            width: 600px;
        }
        .tessitytyysi .detail-cabang .detail-cabang-img img {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            object-fit: cover;
        }
        .tessitytyysi .detail-cabang .detail-cabang-desc {
        }
    /* Close Detail Cabang */
    
    @media (max-width:991px) {
        .tessitytyysi .cabang {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
    }
    @media (max-width:768px) {
    }
    @media (max-width:599px) {
        .tessitytyysi .cabang {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
        }
    }

/* Close Cabang */

/* Webform Page */
    
    .tessitytyysi .webform-page {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .tessitytyysi .title-webform-page {
        background-color: #E65100;
        color: white;
        padding: 20px;
        text-align: center;
    }

    .tessitytyysi .title-webform-page h2 {
        font-size: 24px;
        font-weight: 500;
    }

    .tessitytyysi .form-page-detail {
        padding: 30px;
    }

    /* Style untuk form */
    .tessitytyysi #webFormLkm {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .tessitytyysi #webFormLkm > div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .tessitytyysi #webFormLkm label {
        font-weight: 600;
        color: #333;
        font-size: 14px;
    }

    .tessitytyysi #webFormLkm input[type="text"],
    .tessitytyysi #webFormLkm input[type="email"],
    .tessitytyysi #webFormLkm input[type="date"],
    .tessitytyysi #webFormLkm textarea,
    .tessitytyysi #webFormLkm select {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
        transition: border-color 0.3s;
        background-color: #fff;
    }

    .tessitytyysi #webFormLkm input:focus,
    .tessitytyysi #webFormLkm textarea:focus,
    .tessitytyysi #webFormLkm select:focus {
        outline: none;
        border-color: #2c3e50;
        box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
    }

    .tessitytyysi #webFormLkm textarea {
        resize: vertical;
        min-height: 80px;
    }

    .tessitytyysi .button-submit {
        margin-top: 10px;
    }

    .tessitytyysi .button-submit button {
        background-color: #E65100;
        color: white;
        padding: 14px 30px;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s;
        width: 100%;
    }

    .tessitytyysi .button-submit button:hover {
        background-color: #34495e;
    }

    /* Responsive */
    @media (max-width: 600px) {
        .tessitytyysi .form-page-detail {
            padding: 20px;
        }
        
        .tessitytyysi .title-webform-page h2 {
            font-size: 20px;
        }
    }

/* Close Webform Page */

/* Produk */
    /* Tabungan */
        .tessitytyysi .tabungan-prods .content-tabungan-prods {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .tessitytyysi .tabungan-prods .content-tabungan-prods .title-tabungan-prods {
            color: rgb(230, 81, 0);
            position: relative;
        }
        .tessitytyysi .tabungan-prods .content-tabungan-prods .title-tabungan-prods::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.6rem;
            background: #E65100;
            border-radius: 2px;
            width: 60px;
            height: 3px;
        }

        .tessitytyysi .tabungan-prods .content-tabungan-prods .list-tabungan-prods {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .tessitytyysi .tabungan-prods .content-tabungan-prods .list-tabungan-prods a {
            text-decoration: none;
            color: black;
         }
        .tessitytyysi .tabungan-prods .content-tabungan-prods .list-tabungan-prods .card {
            border-radius: 12px;
            height: 100%;
        }
        .tessitytyysi .tabungan-prods .content-tabungan-prods .list-tabungan-prods .card .card-body{
            /* padding: 0.5rem 0.7rem;
            display: flex;
            flex-direction: column;
            gap: 20px; */
        }
        .tessitytyysi .tabungan-prods .content-tabungan-prods .list-tabungan-prods .card .card-body-desc {
            text-align: center;
            padding: 0.7rem 0.3rem;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .tessitytyysi .tabungan-prods .content-tabungan-prods .list-tabungan-prods .card .card-body-desc h3 {
            font-size: 16px;
            text-transform: uppercase;
            font-weight: bold;
        }
        .tessitytyysi .tabungan-prods .content-tabungan-prods .list-tabungan-prods .card .card-body-desc p {
            font-size: 14px;
            font-weight: 500;
        }
        .tessitytyysi .tabungan-prods .content-tabungan-prods .list-tabungan-prods .card .card-img {
        }
        .tessitytyysi .tabungan-prods .content-tabungan-prods .list-tabungan-prods .card .card-img img{
            border-radius: 12px 12px 0 0 ;

            width: 100%;
            height: 230px;
            object-fit: cover;
        }

        @media (max-width:991px) {
            .tessitytyysi .tabungan-prods .content-tabungan-prods .list-tabungan-prods {
                grid-template-columns: repeat(2, 1fr);
            }
            .tessitytyysi .modal-tabungan-prods {
                width: 100%;
                max-width: 400px;
            }
        }

        @media (max-width:599px) {
            .tessitytyysi .tabungan-prods .content-tabungan-prods .list-tabungan-prods {
                grid-template-columns: repeat(1, 1fr);
            }
            .tessitytyysi .modal-tabungan-prods {
                width: 100%;
                max-width: 290px;
            }
            .tessitytyysi .modal-tabungan-prods .card-tabungan-prods .card-body-modal {
                padding: 0.5rem 0.7rem;
            }
            .tessitytyysi .modal-tabungan-prods .card-tabungan-prods .card-body-modal .card-body-desc-modal h3 {
                font-size: 18px;
            }
            .tessitytyysi .modal-tabungan-prods .card-tabungan-prods .card-body-modal .card-body-desc-modal p {
                font-size: 14px;
            }
            .tessitytyysi .modal-tabungan-prods .card-tabungan-prods .card-body-modal .card-body-desc-modal .syaratKetentuan {
                font-size: 14px;
            }
        }
        /* Tabungan Detail */
            .tessitytyysi .tabungan-prods-detail {

            }
            .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-header h2{
                font-size: 22px;
                color: #E65100;
                position: relative;
            }
            .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-header h2:after{
                content: "";
                position: absolute;
                left: 0;
                bottom: -0.6rem;
                background: #E65100;
                border-radius: 2px;
                width: 60px;
                height: 3px;
            }
            .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page {
                display: flex;
                gap: 20px;
            }
            .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-img img{
                max-width: 600px;
                width: 480px;
                height: 380px;
                object-fit: cover;     
                
                border-radius: 12px;
                box-shadow: 0px 15px 25px rgb(0, 0, 0, 0.3);
            }
            .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-desc {
                display: flex;
                flex-direction: column;
                gap: 20px;
             }
            .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-desc ul { 
                padding-left: 30px;
                line-height: 1.8;
            }
                
            .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-desc h3{
                font-size: 22px;
            }
            .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-desc p{
                font-size: 19px;
            }
            .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-desc li{
                font-size: 18px;
            }


            @media (max-width:991px) {
                .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-header h2 { 
                    font-size: 20px;
                }
                .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-img img{
                    max-width: 100%;
                }
                .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page {
                    flex-direction: column;
                }
                
                .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-desc h3{
                    font-size: 20px;
                }
                .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-desc p{
                    font-size: 17px;
                }
                .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-desc li{
                    font-size: 16px;
                }
            }
            @media (max-width:559px) {
                
                .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-desc h3{
                    font-size: 18px;
                }
                .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-desc p{
                    font-size: 15px;
                }
                .tessitytyysi .tabungan-prods-detail .tabungan-prods-detail-page .tpdp-desc li{
                    font-size: 14px;
                }
            }
        /* Close Tabungan Detail */
    /* Close Tabungan */

    /* Deposito */
        .tessitytyysi .title-deposito-prods h2 {
            color: rgb(230, 81, 0);
            position: relative;
        }
        .tessitytyysi .title-deposito-prods h2::after {
            content: "";
            position: absolute;
            left: 0%;
            bottom: -0.6rem;
            background: #E65100;
            border-radius: 2px;
            width: 60px;
            height: 3px;
        }
        .tessitytyysi .deposito-wrapper {
            width: 100%;
            display: flex;
            gap: 40px;
        }

        .tessitytyysi .deposito-left {
            width: 60%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .tessitytyysi .deposito-right {
            width: 40%;
            background: #f5f5f5;
            border-radius: 12px;
        }

        .tessitytyysi .deposito-right .content-deposito-right {
            padding: 1rem;
        }
        .tessitytyysi .deposito-right .hasil {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 15px;
        }
        .tessitytyysi .deposito-right .hasil p {
            display: flex;
            justify-content: space-between;
        }


        /* CARD STYLE */
        .tessitytyysi .deposito-card {
            cursor: pointer;
        }

        .tessitytyysi .deposito-card input {
            display: none;
        }

        .tessitytyysi .card-content {
            background: #eee;
            padding: 20px;
            border-radius: 12px;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .tessitytyysi .deposito-card input:checked + .card-content {
            background: #ff6600;
            color: white;
        }

        /* Input */
        .tessitytyysi .deposito-right input {
            padding: 10px;
            margin: 15px 0;
            border-radius: 8px;
            border: 1px solid #ccc;
        }

        /* Responsive */
        @media(max-width: 991px){
            .tessitytyysi .title-deposito-prods h2 {
                text-align: center;
            }
            .tessitytyysi .title-deposito-prods h2::after {
                content: "";
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                bottom: -0.6rem;
                background: #E65100;
                border-radius: 2px;
                width: 60px;
                height: 3px;
            }
            .tessitytyysi .deposito-wrapper {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .tessitytyysi .deposito-left,
            .tessitytyysi .deposito-right {
                width: 100%;
            }
        }
        @media(max-width: 768px){
            .tessitytyysi .deposito-wrapper {
            }

            .tessitytyysi .deposito-left,
            .tessitytyysi .deposito-right {
                width: 100%;
            }

            .tessitytyysi .deposito-left {
                grid-template-columns: 1fr;
            }
        }
    /* Close Deposito */

    /* Kredit */
        .tessitytyysi .kredit-prods .content-kredit-prods {
            display: flex;
            flex-direction: column;
            gap: 30px;   
        }
        .tessitytyysi .kredit-prods .content-kredit-prods .title-kredit-prods {
            color: rgb(230, 81, 0);
            position: relative;
        }
        .tessitytyysi .kredit-prods .content-kredit-prods .title-kredit-prods::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.6rem;
            background: #E65100;
            border-radius: 2px;
            width: 60px;
            height: 3px;
        }
        .tessitytyysi .kredit-prods .accordion-item {
            border-radius: 12px;
            background: #f5f5f5;
            margin-bottom: 15px;
            overflow: hidden;
            transition: 0.3s;
        }
        .accordion-content {
            padding: 15px 0;
            color: #333;
            line-height: 1.6;
        }

        .accordion-content p {
            margin-bottom: 12px;
            color: #555;
        }

        /* Wrapper list utama */
        .accordion-content ul {
            padding-left: 0;
            margin: 0;
            list-style: none;
        }

        /* Item utama (Syarat / Ketentuan) */
        .accordion-content > ul > li {
            margin-bottom: 15px;
            background: #f8f9fb;
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid #e6e6e6;
        }

        /* Judul Syarat / Ketentuan */
        .accordion-content > ul > li strong {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: #222;
        }

        /* Sub list (isi detail) */
        .accordion-content > ul > li ul {
            padding-left: 0;
        }

        /* Item detail */
        .accordion-content > ul > li ul li {
            position: relative;
            padding-left: 18px;
            margin-bottom: 6px;
            font-size: 14px;
            color: #555;
        }

        /* Bullet custom */
        .accordion-content > ul > li ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #007bff;
            font-weight: bold;
        }

        .tessitytyysi .kredit-prods .accordion-header {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            cursor: pointer;
            position: relative;
        }

        .tessitytyysi .kredit-prods .accordion-header h3 {
            flex: 1;
            font-size: 18px;
        }

        .tessitytyysi .kredit-prods .accordion-header .icon {
            font-size: 22px;
            transition: 0.3s;
        }

        /* Image */
        .tessitytyysi .kredit-prods .card-img {
            width: 60px;
            height: 60px;
        }

        .tessitytyysi .kredit-prods .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        /* Content */
        .tessitytyysi .kredit-prods .accordion-content {
            max-height: 0;
            overflow: hidden;
            padding: 0 15px;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .tessitytyysi .kredit-prods .accordion-item.active .accordion-content {
            max-height: 250px;
            padding: 15px;
            overflow: auto;
        }

        .tessitytyysi .kredit-prods .accordion-item.active .icon {
            transform: rotate(45deg);
        }

    /* Close Kredit */
/* Close Produk */

/* News */
    
    .tessitytyysi .news-page .wrapper-news {
        display:flex;
        flex-direction:column;
        gap: 30px;
    }
    .tessitytyysi .news-page .wrapper-news .title-news-page h2 {
        color: rgb(230, 81, 0);
        position: relative;
    }
    .tessitytyysi .news-page .wrapper-news .title-news-page h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.6rem;
        background: #E65100;
        border-radius: 2px;
        width: 60px;
        height: 3px;
    }
    .tessitytyysi .news-page .news-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .tessitytyysi .news-page .news-list .card {
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 10px;
        background-color: white;
    }
    .tessitytyysi .news-page .news-list .card .card-body-news .news-img {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    .tessitytyysi .news-page .news-list .card .card-body-news .news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px 12px 0 0 ;
    }
    .tessitytyysi .news-page .news-list .card .card-body-news .news-item {
        padding: 0.5rem 0.7rem;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .tessitytyysi .news-page .news-list .card .card-body-news .news-item .news-deskrip h3 {
        font-size: 18px;
        font-weight: bold;
    }
    .tessitytyysi .news-page .news-list .card .card-body-news .news-item .news-deskrip p {
        font-size: 12px;
        font-weight: 500;
    }
    .tessitytyysi .news-page .news-list .card .card-body-news .news-item .news-periode p {
        font-size: 14px;
        font-weight: 500;
    }
    .tessitytyysi .news-page .news-list .card .card-body-news .news-item .news-footer a {
        font-size: 12px;
        font-weight: 500;
    }

    @media (max-width:991px) {
        .tessitytyysi .news-page .news-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width:559px) {
        .tessitytyysi .news-page .news-list {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    /* Detail News */
        .tessitytyysi .wrapper-news {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .tessitytyysi .wrapper-news .title-news-page-detail h2 {
            color: rgb(230, 81, 0);
            position: relative;
        }
        .tessitytyysi .wrapper-news .title-news-page-detail h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.6rem;
            background: #E65100;
            border-radius: 2px;
            width: 60px;
            height: 3px;
        }
        .tessitytyysi .wrapper-news .news-detail-item {
            line-height: 1.6;
        }

        .tessitytyysi .wrapper-news .news-image {
            width: 550px;
            float: left;
            margin-right: 20px;
            margin-bottom: 10px;
        }

        .tessitytyysi .wrapper-news .news-image img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: 12px;
        }
        .tessitytyysi .wrapper-news .head-tanggal-judul-news-detail {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .tessitytyysi .wrapper-news .head-tanggal-judul-news-detail .content-1 p {
            font-size: 12px;
        }
        .tessitytyysi .wrapper-news .news-detail-item::after {
            content: "";
            display: block;
            clear: both;
        }

        .tessitytyysi .wrapper-news .head-tanggal-judul-news-detail {
            display: flex;
            flex-direction: column;
        }
        @media (max-width: 768px) {
            .tessitytyysi .wrapper-news .news-image {
                float: none;
                width: 100%;
                margin-right: 0;
            }
        }

    /* Close Detail News */
/* Close News */

/* Karir */

        .tessitytyysi .karir-page {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 60vh;
            width: 100%;
        }

        .tessitytyysi .karir-page .karir-empty {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            text-align: center;
        }

        .tessitytyysi .karir-page .karir-empty img {
            width: 120px;
            height: auto;
            opacity: 0.8;
        }

        .tessitytyysi .karir-page .karir-empty h1 {
            font-size: 20px;
            font-weight: 500;
            color: #555;
        }

/* CloseKarir */

/* Keuangan Page */

    .tessitytyysi .container-keuangan {
        max-width:1100px;
        width:100%
    }
    .tessitytyysi .container-keuangan h1 {
        color: #484848;
        margin-bottom: 20px;
    }
    .tessitytyysi .container-keuangan h1 {
        color: rgb(230, 81, 0);
        position: relative;
    }
    .tessitytyysi .container-keuangan h1::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.6rem;
        background: #E65100;
        border-radius: 2px;
        width: 60px;
        height: 3px;
    }
    /* FILTER */
    .tessitytyysi .container-keuangan .filter {
        margin-bottom: 20px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .tessitytyysi .container-keuangan .filter input, .tessitytyysi .container-keuangan .filter button {
        padding: 10px;
        border-radius: 6px;
        border: 1px solid #ddd;
    }

    .tessitytyysi .container-keuangan .filter button {
        background: #EF6C00;
        color: white;
        border: none;
        cursor: pointer;
    }

    .tessitytyysi .container-keuangan .filter button:hover {
        background: #d65f00;
    }

    /* CARD */
    .tessitytyysi .container-keuangan .card {
        background: white;
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    }

    .tessitytyysi .container-keuangan .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.18);

    }

    .tessitytyysi .container-keuangan .card-info {
        max-width: 70%;
    }

    .tessitytyysi .container-keuangan .card-title {
        font-weight: bold;
        color: #484848;
    }

    .tessitytyysi .container-keuangan .card-year {
        font-size: 14px;
        color: #777;
    }

    .tessitytyysi .container-keuangan .actions {
        display: flex;
        gap: 10px;
    }

    .tessitytyysi .container-keuangan .btn {
        padding: 8px 12px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
        cursor: pointer;
    }

    .tessitytyysi .container-keuangan .btn-view {
        background: #484848;
        color: white;
        border: none;
    }

    .tessitytyysi .container-keuangan .btn-download {
        background: #EF6C00;
        color: white;
    }

    /* RESPONSIVE */
    @media(max-width: 768px) {
        .tessitytyysi .container-keuangan .card {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .tessitytyysi .container-keuangan .card-info {
            max-width: 100%;
        }
    }

    /* MODAL PDF */
    #pdfModal {
        z-index: 101;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        justify-content: center;
        align-items: center;
    }

    #pdfModal iframe {
        width: 80%;
        height: 80%;
        background: white;
        border-radius: 10px;
    }

    #pdfModal.active {
        display: flex;
    }
/* Close Keuangan Page */

/* Paginate button */

.button-paginate {
    display: flex;
    justify-content: space-between;
}
.button-paginate > * {
    flex: 1;
}
.button-paginate .button-left {

}
.button-paginate .button-left button {
    outline: none;
    border: none;
    border-radius: 8px;
    padding: 7px 14px;
    background-color: #484848;
    color: white;
    transition: 0.3s ease;
}
.button-paginate .button-left button:hover {
    background-color: #E65100;
    color: white;

}
.button-paginate .view-center {
    text-align: center;
}
.button-paginate .view-center button {
    outline: none;
    border: 1px solid black;
    border-radius: 5px;
    padding: 7px 12px;
    background-color: white;
}
.button-paginate .button-right {
    text-align: right;
}
.button-paginate .button-right button {
    outline: none;
    border: none;
    border-radius: 8px;
    padding: 7px 14px;
    background-color: #E65100;
    color: white;
    transition: 0.3s ease;
}
.button-paginate .button-right button:hover {
    background-color: #484848;
    color: white;

}

/* Close Paginate button */

/* Footer */
footer {
    background-color: black;
    color: white;
    margin-right: 90px;
    padding: 25px 15px 75px;
}

footer button {
    background: transparent;
    border: none;
    color: white;
    text-align: left;
}

/* layout */
.f-jsk {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.f-jsklog img {
    width: 120px;
}

.f-jsktext {
    display: flex;
    gap: 30px;
    max-width: 700px;
}

.f-jsktext > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.f-jsktext > div > button {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    width: 100%;
}

.f-jsktext .f-jsktext-1 {
    flex: 1;
}
.f-jsktext .f-jsktext-1 .content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.f-jsktext .f-jsktext-1 .content iframe{
    width: 300px;
    height: 100%;

    border-radius: 12px;
}
.f-jsktext .f-jsktext-1 .f-jsktext-1-1 {
    text-align: justify;
}

.f-jsktext .f-jsktext-2 {
    flex: 1;
}
.f-jsktext .f-jsktext-2 .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.f-jsktext .f-jsktext-2 .content >* {
    display: flex;
    gap: 10px;
}

.f-jsktext .f-jsktext-3 {
    flex: 1;
}
.f-jsktext .f-jsktext-3 .content > *{
    display: flex;
    gap: 10px;
}


footer .f-jsk .f-jsktext .f-jsktext-3 .wrapper-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* arrow */
.arrow-footer {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.f-jsk-perms {
    display: flex;
}

.f-jsk-perms .perms-2 {
    margin: 0 auto;
    padding-bottom: 0.5rem;
}

/* ================= DESKTOP ================= */
@media (min-width: 992px) {

    footer .f-jsktext > div > button {
        pointer-events: none;
        cursor: default;
    }

    footer .f-jsktext .content {
        transform: none;
        opacity: 1;
    }

    footer .arrow-footer {
        display: none;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    footer {
        margin-right: 0;
        padding-bottom: 100px;
    }

    .f-jsklog img {
        width: 80px;
    }
        
    .f-jsktext .f-jsktext-2 .content {
        gap: 0;
    }

    .f-jsktext .f-jsktext-2.clicked .content {
        gap: 20px;
    }


    .f-jsktext {
        flex-direction: column;
        max-width: 100%;
        gap: 20px;
    }

    .f-jsktext > div {
        overflow: hidden;
    }

    /* arrow mobile */
    .arrow-footer {
        display: block;
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .arrow-footer.clicked {
        transform: rotate(90deg);
    }

    /* accordion */
    footer .f-jsk .f-jsktext > div > .content {
        display: grid;
        grid-template-rows: 0fr;
        opacity: 0;
        transform: translateY(-8px);
        transition:
            grid-template-rows 0.4s ease,
            opacity 0.3s ease,
            transform 0.3s ease;
    }

    footer .f-jsk .f-jsktext > div > .content > * {
        overflow: hidden;
    }
    /* opened */
    footer .f-jsk .f-jsktext > div.clicked > .content {
        grid-template-rows: 1fr;
        opacity: 1;
        transform: translateY(0);
    }

    .f-jsk-perms {
        text-align: center;
        flex-direction: column-reverse;
    }

    .f-jsk-perms .perms-2 {
        margin: 0 auto;
        padding-bottom: 0.5rem;
    }
}

a.disabled {
    pointer-events: none;
    color: #ccc;
}