/* navbar */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
    font-family: Poppins;
}

.navbar {
    background-color: #5677cb;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important; /* Ikon toggler putih */
}

.navbar-nav .nav-link {
    color: white;
}

.navbar-nav .nav-item {
    margin-left: 15px;
    margin-right: 15px;
}
.navbar-nav .nav-link:hover {
    color: white;
    font-weight: bold;
}
.btn-outline-light {
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #5677cb;
}

.dropdown-menu {
    display: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-item.dropdown:hover .nav-link::after {
    display: none;
}

/* CSS untuk mengatur tampilan mobile */
@media (max-width: 991.98px) {
    .navbar-nav {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar-collapse .btn-outline-light {
        display: block;
        margin: 15px auto; /* Menyelaraskan tombol di tengah dengan margin otomatis */
    }
}

/* footer */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
    font-family: Poppins;
}

.footer-section {
    background-color: #5677cb;
    color: white;
    padding: 2rem 0;
}
.footer-section img {
    height: 50px;
    margin-bottom: 20px;
}

.content-wrapper {
    margin-right: auto;
    width: 80%;
}
.footer-section p {
    font-size: 14px;
    margin-top: 20px;
}
.footer-section h5 {
    font-size: 16px;
    margin-bottom: 1rem;
    font-weight: bold;
}
.footer-section .social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
}
.footer-section .social-icons a:hover {
    color: #ddd;
}
.footer-section ul {
    padding: 0;
    list-style: none;
}
.footer-section li {
    margin-bottom: 0.5rem;
    font-size: 14px;
}
.footer-section i {
    margin-right: 10px;
}
.text-center {
    font-size: 14px;
}

@media (max-width: 576px) {
    .footer-section img {
        max-width: 150px; /* Reduce logo size on smaller screens */
    }

    .footer-section p,
    .footer-section li {
        font-size: 13px; /* Adjust text size for smaller screens */
    }

    .footer-section .social-icons a {
        font-size: 18px; /* Adjust icon size */
        margin-right: 10px; /* Reduce spacing for smaller screens */
    }
    .service-section {
        margin-left: 0 !important;
    }
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
}

.social-icons a:hover {
    color: #ddd;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .breadcrumb {
        font-size: 0.75rem;
        margin-top: 10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .list-group-item {
        font-size: 0.875rem;
        padding: 10px 15px;
    }

    .btn-daftar {
        font-size: 0.875rem;
        padding: 10px 15px;
        width: 100%;
        text-align: center;
    }
}

/* galeri */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins";
}

.header {
    background-color: #0039a6;
    padding: 15px 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
}

nav ul li a.cta {
    background-color: #1e90ff;
    border-radius: 25px;
    padding: 10px 20px;
}

.gallery {
    padding: 50px 0;
}

.gallery h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.gallery p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.container .btn-primary {
    background-color: #005eff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    /* Optional: Set a fixed size for consistency */
    width: 100%;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%; /* Ensure the image fills the container */
    object-fit: cover; /* This will crop the image to fit while maintaining aspect ratio */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.gallery-item:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* Responsivitas untuk layar yang lebih kecil */
@media (max-width: 1024px) {
    .container {
        width: 90%;
    }

    .gallery-grid {
        grid-template-columns: repeat(
            2,
            1fr
        ); /* Mengubah grid menjadi 2 kolom untuk ukuran layar yang lebih kecil */
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li a {
        padding: 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr; /* Mengubah grid menjadi 1 kolom untuk layar kecil */
    }
}

@media (max-width: 480px) {
    .header .logo img {
        height: 40px;
    }

    .gallery h1 {
        font-size: 28px;
    }

    .gallery p {
        font-size: 16px;
    }

    .btn-primary {
        padding: 8px 15px;
    }
}

/* FAQ */

body {
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #5677cb;
}

.navbar-nav .nav-link {
    color: white;
}

.btn-outline-light {
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #5677cb;
}

h1 {
    margin: 20px 0;
}
.accordion-button {
    background-color: #eef1fd;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #b1b9f8;
    color: #4b47b7;
}

.accordion-body {
    background-color: #eef1fd;
    border-radius: 8px;
}

.btn-primary {
    background-color: #5677cb;
    color: #ffffff;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-top: -50px;
}

.btn-primary:hover {
    background-color: #415a99;
    transform: translateY(-2px);
    color: #ffffff;
}

.footer-section {
    background-color: #5677cb;
    color: white;
    padding: 2rem 0;
}

.footer-section .container {
    max-width: 1100px;
}

.footer-section img {
    max-width: 50%; /* Adjust size as needed */
    margin-bottom: 20px; /* Space between logo and text */
}

.footer-section p {
    margin: 0 0 1rem;
    font-size: 14px;
    margin-top: 20px;
}

.footer-section h5 {
    font-size: 16px;
    margin-bottom: 1rem;
}

.footer-section .social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
}

.footer-section .social-icons a:hover {
    color: #ddd;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.footer-section i {
    margin-right: 10px;
}

@media (max-width: 576px) {
    .footer-section img {
        max-width: 150px; /* Reduce logo size on smaller screens */
    }

    .footer-section p,
    .footer-section li {
        font-size: 13px; /* Adjust text size for smaller screens */
    }

    .footer-section .social-icons a {
        font-size: 18px; /* Adjust icon size */
        margin-right: 10px; /* Reduce spacing for smaller screens */
    }
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
}

.social-icons a:hover {
    color: #ddd;
}

.text-center {
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    h1 {
        font-size: 1.5rem;
    }

    .list-group-item {
        font-size: 0.875rem;
        padding: 10px 15px;
    }

    .btn-daftar {
        font-size: 0.875rem;
        padding: 10px 15px;
        width: 100%;
        text-align: center;
    }
}

/* skema */

/* detail-skema */
body {
    font-family: "Arial", sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #5677cb;
}

.navbar-nav .nav-link {
    color: white;
}

.btn-outline-light {
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #5677cb;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 20px;
}

b,
strong {
    font-weight: inherit;
    font-size: 42px;
}

h1 {
    margin: 20px 0;
}

.card {
    overflow: hidden;
}

.card-img-top {
    transition: opacity 0.3s ease;
}

.card-overlay {
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    /* color: #000; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card:hover .card-overlay {
    opacity: 1;
}

.card:hover .card-img-top {
    opacity: 0.3;
}

/* detail-skema */

body {
    font-family: "Arial", sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #5677cb;
}

.navbar-nav .nav-link {
    color: white;
}

.btn-outline-light {
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #5677cb;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 20px;
}

.judul-skema {
    margin: 20px 0;
}

.btn-daftar {
    background-color: #5677cb;
    color: #ffffff;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-daftar:hover {
    background-color: #415a99;
    transform: translateY(-2px);
    color: #ffffff;
}

.footer-section {
    background-color: #5677cb;
    color: white;
    padding: 2rem 0;
}

.footer-section .container {
    max-width: 1100px;
}

.footer-section img {
    max-width: 50%; /* Adjust size as needed */
    margin-bottom: 20px; /* Space between logo and text */
}

.footer-section p {
    margin: 0 0 1rem;
    font-size: 14px;
    margin-top: 20px;
}

.footer-section h5 {
    font-size: 16px;
    margin-bottom: 1rem;
}

.footer-section .social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
}

.footer-section .social-icons a:hover {
    color: #ddd;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.footer-section i {
    margin-right: 10px;
}

@media (max-width: 576px) {
    .footer-section img {
        max-width: 150px; /* Reduce logo size on smaller screens */
    }

    .footer-section p,
    .footer-section li {
        font-size: 13px; /* Adjust text size for smaller screens */
    }

    .footer-section .social-icons a {
        font-size: 18px; /* Adjust icon size */
        margin-right: 10px; /* Reduce spacing for smaller screens */
    }
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
}

.social-icons a:hover {
    color: #ddd;
}

.text-center {
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .breadcrumb {
        font-size: 0.75rem;
        margin-top: 10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .list-group-item {
        font-size: 0.875rem;
        padding: 10px 15px;
    }

    .btn-daftar {
        font-size: 0.875rem;
        padding: 10px 15px;
        width: 100%;
        text-align: center;
    }
}

/* testimoni */
/* main {
    max-width: 100%;
    margin: 0 auto;
} */

.testimoni-section .tulisan {
    text-align: left;
    margin: 0 60px;
}

.testimoni-section h1 {
    color: #333;
    /* text-align: center; */
    margin-bottom: 10px;
}

.testimoni-section p {
    /* text-align: center; */
    color: #666;
    margin-bottom: 20px;
    font-size: 18px;
}

.testimoni-section .belajar-btn {
    display: flex;
    margin: 0 auto 40px 0;
    padding: 10px 20px;
    background-color: #3366cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.testimoni-section .testimoni-grid {
    /* width: 1000px; */
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 180px;
}

.testimoni-grid .testimoni-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.user-photo img {
    width: 100px; /* Ukuran foto */
    height: 100px; /* Sesuaikan tinggi */
    border-radius: 50%; /* Membuat gambar menjadi lingkaran */
    border: 3px solid #ddd; /* Bingkai foto */
    object-fit: cover; /* Agar gambar tetap rapi di dalam lingkaran */
    margin-bottom: 10px; /* Jarak foto dari bintang */
    justify-content: center !important;
}

.testimoni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.rating {
    font-size: 24px;
    color: #f39c12;
    margin-bottom: 10px;
}

.testimoni-card h3 {
    margin-top: 15px;
    color: #333;
}

.testimoni-grid .testimoni-card p {
    font-size: 14px;
}

.tulisan h1 {
    font-size: 26px;
}

.container .tulisan p {
    font-size: 16px;
}

/* Responsive for Tablets */
@media (max-width: 992px) {
    .testimoni-section .tulisan {
        margin: 0 30px;
    }

    .testimoni-section p {
        font-size: 16px;
    }

    .testimoni-section .testimoni-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 100px;
        gap: 15px;
    }

    .testimoni-grid .testimoni-card p {
        font-size: 14px;
    }

    .tulisan h1 {
        font-size: 10px;
    }

    .container .tulisan p {
        font-size: 12px;
    }
    .testimoni-grid .testimoni-card {
        width: 250px;
    }

    .testimoni-section .belajar-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .testimoni-section .tulisan {
        margin: 0 20px;
        text-align: center;
    }

    .testimoni-section h1 {
        font-size: 24px;
    }

    .testimoni-section p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .testimoni-section .testimoni-grid {
        grid-template-columns: 1fr;
        margin: 0 20px;
    }

    .testimoni-grid .testimoni-card {
        width: 100%;
    }

    .testimoni-grid .testimoni-card {
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 300px;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .testimoni-grid .testimoni-card p {
        font-size: 12px;
    }

    .tulisan h1 {
        font-size: 12px;
    }

    .container .tulisan p {
        font-size: 10px;
    }

    .testimoni-section .belajar-btn {
        padding: 8px 18px;
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* mentor */
body {
    font-family: "Poppins", sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.mentor-section h1 {
    font-size: 2.5rem;
    color: #333;
    text-align: left;
}

.mentor-section p {
    font-size: 1.125rem;
    color: #6c757d;
    text-align: left;
}

.mentor-section button {
    font-size: 1rem;
    margin-bottom: 40px;
    padding: 10px 20px;
    border-radius: 8px;
    position: relative;
    display: contents;
    align-items: left;
}

.btn-list-mentor {
    background-color: #005eff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 800;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    top: -50px; /* Naikkan tombol lebih jauh ke atas */
    margin-bottom: 50px; /* Jarak antara tombol dan card */
}

.card {
    border: none;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.card-img-top {
    height: 350px;
    object-fit: cover;
}

/* tes */
/* General Styles */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Navbar */
.navbar {
    background-color: #4477ce;
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-links li {
    display: inline;
}

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.btn-daftar {
    background-color: #fff;
    color: #4477ce;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}

/* Testimoni Section */
.testimoni-section {
    text-align: center;
    padding: 40px 0;
    background-color: #f0f4f3;
}

.testimoni-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.testimoni-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #4477ce;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    margin-bottom: 40px;
    cursor: pointer;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 40px;
}

.testimoni-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    justify-content: space-around;
    height: 340px !important;
}

.testimoni-card .stars {
    color: #f7b519;
}

.testimoni-card p {
    font-size: 16px;
    margin: 10px 0;
    max-height: fit-content;
}

.testimoni-card h3 {
    font-size: 18px;
    color: #333;
}

/* Footer */
.footer {
    background-color: #4477ce;
    color: #fff;
    padding: 40px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo h2 {
    margin: 0;
}

.footer p {
    margin: 0;
    line-height: 1.6;
}

.footer-links,
.footer-contact {
    margin: 0;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 10px;
}

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

.footer-links li {
    margin-bottom: 5px;
}

.footer-contact p {
    margin-bottom: 5px;
}

.footer-contact i {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .navbar .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* detail-news */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content Styles */
.detail-berita {
    padding: 20px;
}

.breadcrumb {
    margin-bottom: 10px;
    color: #666;
}

.breadcrumb a {
    color: #3366cc;
    text-decoration: none;
}

h1 {
    font-size: 33px;
    margin-bottom: 20px;
    color: #333;
}

.meta-info {
    display: flex;
    gap: 50px;
    margin-bottom: 20px;
    align-items: center; /* Agar gambar dan teks sejajar secara vertikal */
}

.meta-info img {
    width: 20px; /* Sesuaikan ukuran gambar */
    height: 20px; /* Sesuaikan tinggi gambar */
    margin-right: 10px; /* Jarak antara gambar dan teks */
}

.berita-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    align-items: center;
    justify-content: center;
    display: flex;
}

.berita-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .meta-info {
        flex-direction: column;
    }

    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .header nav ul {
        flex-direction: column;
        text-align: center;
    }

    .meta-info {
        font-size: 0.9rem;
    }

    .footer-content {
        padding: 0 10px;
    }
}

/* pelatihan */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #356bb0;
    padding: 10px 20px;
}

.btn-daftar {
    background-color: white;
    color: #356bb0;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover dropshadow for .btn-daftar */
.btn-daftar:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.pelatihan {
    /* text-align: center; */
    padding: 50px 20px;
    /* margin-left: 30px; */
}

h2 {
    color: #000;
    align-items: center;
}
.pelatihan .head {
    margin-left: 4px;
}

.pelatihan h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pelatihan p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-list-kelas {
    background-color: #005eff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 800;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: auto;
    display: block; /* Mengatur tombol sebagai blok */
    margin-left: 10px; /* Menggeser tombol ke kanan */
    margin-right: 10px; /* Pastikan margin kanan tidak ada */
}

/* Hover dropshadow for .btn-list-kelas */
.btn-list-kelas:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.kelas-list {
    display: flex;
    flex-wrap: wrap; /* Membuat elemen membungkus jika ruang tidak cukup */
    justify-content: space-between; /* Menjaga jarak antar kartu */
    gap: 20px; /* Jarak antar elemen */
    margin-top: 50px;
}

.kelas-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 30%; /* Ukuran kartu diatur menjadi 30% lebar container */
    transition: box-shadow 0.3s ease;
    margin: 10px;
}

.kelas-item img {
    width: 100%; /* Gambar akan mengikuti lebar kartu */
    height: auto; /* Tinggi gambar menyesuaikan secara proporsional */
    margin-bottom: 15px;
}

/* Untuk layar medium (di bawah 992px) */
@media (max-width: 992px) {
    .kelas-item {
        width: 45%; /* Ukuran kartu menjadi 45% pada layar menengah */
    }
}

/* Untuk layar kecil (di bawah 767px) */
@media (max-width: 767px) {
    .kelas-item {
        width: 100%; /* Kartu mengambil lebar penuh pada layar kecil */
        margin: 10px 0; /* Mengatur jarak antar kartu */
    }
}

.kelas-item h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.kelas-item p {
    font-size: 16px;
    margin-bottom: 15px;
    overflow: hidden;
}

.kelas-item span {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.ciko-img {
    width: 100%;
    max-width: 100px; /* Lebar maksimal gambar */
    height: auto;
    display: block;
    margin-top: -120px; /* Atur jarak sesuai kebutuhan */
}

@media (max-width: 767px) {
    .ciko-img {
        max-width: 80px; /* Ukuran gambar lebih kecil pada perangkat kecil */
        margin-top: -80px; /* Sesuaikan jarak pada layar kecil */
    }
}

@media (max-width: 480px) {
    .ciko-img {
        max-width: 60px; /* Lebih kecil lagi pada layar yang lebih kecil */
        margin-top: -60px; /* Sesuaikan lagi jaraknya */
    }
}

.img-pelatihan {
    width: 100%;
    height: 47%;
    /* border: 1px solid #000; */
}

.date-pelatihan {
    /* border: 1px solid #000; */
    margin-bottom: 0px;
}
h2 {
    color: #000;
    align-items: center;
}
