@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');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


/* tentang citiasia css start */

.tentang {
    align-items: center;
    justify-content: center;
    font-family: 'poppins';
    background-color: #1D65A4;
}

.tentang-container {
    display: flex;
    align-items: center;
}

.tentang-banner {
    flex-basis: 50%;
    margin-top: 5px;
}

.tentang-desc {
    flex-basis: 50%;
    width: 90%;
}

.tentang-desc h3 {
    color: #FFF;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.tentang-desc p {
    font-family: 'roboto';
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-right: 2rem;
    /* margin-bottom: 5rem; */
}

@media (max-width: 600px) {
    .tentang-container {
        margin-top: 1rem;
        margin-bottom: 1rem;
        display: block;
    }

    .tentang-banner img {
        display: none;
    }

    .tentang-desc {
        display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    }

    .tentang-desc h3 {
        text-align: center;
        font-size: 35px;
    }

    .tentang-desc p {
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {

    .tentang-banner img {
        width: 400px;
    }

    .tentang-desc h3 {
        font-size: 30px;
    }

    .tentang-desc p {
        margin-bottom: 1rem;
        font-size: 14px;
    }
}

/* tentang citiasia css end */

/* visi misi css start */

.visi-misi {
    justify-content: center;
    font-family: 'poppins';
    margin: 2rem 0rem 2rem;
}

.visi-misi-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 1400px;
    margin: 50px 0;
    table-layout: fixed;
}

.visi-misi-table th,
.visi-misi-table td {
    border: none;
    padding: 20px;
    vertical-align: top;
    text-align: center;
}

.visi-misi-table th {
    background-color: #2758A7;
    color: white;
    font-size: 24px;
    padding: 20px 0;
}

.visi-misi-table td {
    background-color: #f3f4f6;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.visi-misi-table .icon {
    font-size: 48px;
    color: #0056b3;
    margin-bottom: 20px;
}

.visi-misi-table p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.misi-text {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.more-text {
    display: none;
}

@media (max-width: 600px) {
    .visi-misi {
        margin: 0;
    }

    .misi-text {
        white-space: nowrap;
        max-width: 150px;
        cursor: pointer;
    }

    .more-text {
        display: inline;
    }

    .expanded .misi-text {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .expanded .more-text {
        display: none;
    }
}

/* visi misi css end */

/* team member css start */

.team {
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins';
}

.team-banner {
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #2758A7;
    padding: 10px;
}

.team-banner h3 {
    color: #FFF;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.board-banner {
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #D9D9D9;
    padding: 10px;
}

.board-banner h3 {
    color: #2758A7;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
}


.board-directors {
    flex-direction: column;
}

.board-directors-word {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D9D9D9;
    margin-top: 7rem;
    padding: 5px;
}

.board-directors-word h3 {
    color: #2758A7;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    font-family: 'poppins';
}

.board-directors-product {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.directors-product {
    font-family: 'roboto';
    align-items: center;
    justify-content: center;
}

.directors-product .directors-product-card {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    /* grid-auto-rows: auto; */

    grid-gap: 7rem;
}

.directors-product .directors-card-product {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    background-color: white;
    border: 1px solid white;
    border-radius: 15px;
}

.directors-product-card .directors-card-product img {
    max-width: 100%;
    max-height:200px;
    width:100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}

.directors-product .directors-product-card div {
    width: 200px;
    height: fit-content;
    min-height: 100px;
}

.directors-product .directors-product-card .directors-product-desc {
    background-color: #2758A7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 200px;
    min-height: 140px;
    border-radius: 0px 0px 15px 15px;
}

.directors-product .directors-product-card .directors-product-desc h3:nth-child(1) {
    color: #FFF;
    text-align: center;
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.directors-product .directors-product-card .directors-product-desc h3:nth-child(2) {
    color: #FFF;
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
}

@media (max-width: 600px) {
    .directors-product .directors-product-card {
        grid-template-columns: auto;
        grid-gap: 1rem;
    }
}

/* board directors css end */


/* board team css start */

.board-team {
    flex-direction: column;
    margin-top: 6rem;
    padding-bottom: 3rem;
}

.board-team-product {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-team {
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #D9D9D9;
    padding: 5px;
}

.banner-team h3 {
    color: #2758A7;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    font-family: 'poppins';
    text-align: center;
}

.team-product {
    font-family: 'roboto';
    align-items: center;
    justify-content: center;
}

.team-product .team-product-card {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    /* grid-auto-rows: auto; */

    grid-gap: 5rem;
}

.team-product .team-card-product {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid white;
    border-radius: 15px;
    margin-top: 2rem;

}

.team-product-card .team-card-product img {
    max-width: 100%;
    max-height:200px;
    width:100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}

.team-product .team-product-card div {
    height: 250px;
}

.team-product .team-product-card .team-product-desc {
    background-color: #2758A7;
    display: flex;
    border: 1px solid white;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    width: 200px;
    border-radius: 0px 0px 15px 15px;
    min-height: 120px;
}

.team-product .team-product-card .team-product-desc h3:nth-child(1) {
    color: #FFF;
    text-align: center;
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.team-product .team-product-card .team-product-desc h3:nth-child(2) {
    color: #FFF;
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
}

@media (max-width: 600px) {
    .team-product .team-product-card {
        grid-template-columns: auto;
        /* grid-gap: 7rem; */
    }
}


.board-commisioners {
    flex-direction: column;
}

.board-commisioners-word {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D9D9D9;
    margin-top: 7rem;
    padding: 5px;
}

.board-commisioners-word h3 {
    color: #2758A7;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    font-family: 'poppins';
    text-align: center;
}

.board-commisioners-product {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.commisioners-product {
    font-family: 'roboto';
    align-items: center;
    justify-content: center;
}

.commisioners-product .commisioners-product-card {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    /* grid-auto-rows: auto; */

    grid-gap: 7rem;
}

.commisioners-product .commisioners-card-product {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    background-color: white;
    border: 1px solid white;
    border-radius: 15px;
}

.commisioners-product-card .commisioners-card-product img {
    max-width: 200px;
    height: 200px;
    object-fit: cover;
}

.commisioners-product .commisioners-product-card div {
    width: 200px;
    height: fit-content;
    min-height: 100px;
}

.commisioners-product .commisioners-product-card .commisioners-product-desc {
    background-color: #2758A7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 200px;
    min-height: 140px;
    border-radius: 0px 0px 15px 15px;
}

.commisioners-product .commisioners-product-card .commisioners-product-desc h3:nth-child(1) {
    color: #FFF;
    text-align: center;
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.commisioners-product .commisioners-product-card .commisioners-product-desc h3:nth-child(2) {
    color: #FFF;
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
}

@media (max-width: 600px) {
    .commisioners-product .commisioners-product-card {
        grid-template-columns: auto;
        grid-gap: 1rem;
    }
}

/* board commisioners css end */

/* other divison css start */

.other-division {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    width: 100%;
}

.other-division .show-btn {
    display: flex;
    width: 1305px;
    height: 39px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #F5B203;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.50);
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    margin-top: 2rem;
    color: white;
}

/* board of division 1 css start */

.board-division1 {
    display: flex;
    flex-direction: column;
    display: none;
}

.board-division1-product {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-division1 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #D9D9D9;
}

.banner-division1 h3 {
    color: #2758A7;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.division1-product {
    font-family: 'roboto';
    align-items: center;
    justify-content: center;
}

.division1-product .division1-product-card {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    /* grid-auto-rows: auto; */

    grid-gap: 7rem;
}

.division1-product .card-product {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid white;
    border-radius: 15px;
}

.division1-product-card .card-product img {
    width: 100%;
    height: 100%;
}

.division1-product .division1-product-card div {
    width: 200px;
    height: 200px;
}

.division1-product .division1-product-card .product-desc {
    background-color: #2758A7;
    display: flex;
    border: 1px solid white;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    width: 200px;
    border-radius: 0px 0px 15px 15px;
}

.division1-product .division1-product-card .product-desc:hover {
    padding-bottom: 200px;
    z-index: 5;
}

.product-word {
    color: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -80px !important;
    transition: 0.23s ease-in-out;
    transition-delay: .2s;
    z-index: -1;
}

.product-desc:hover .product-word {
    margin-top: unset !important;
    z-index: 1;
}

.product-desc a {
    text-decoration: none;
}

.product-desc .visit-product {
    display: flex;
    justify-content: center;
    text-align: justify;
    align-items: center;
    transition: 0.23s ease-in-out;
    transition-delay: .2s;
    margin-top: -50px !important;
    z-index: -1;
    padding: 5px 20px;
    text-decoration: none;
    background-color: #F5B203;
    color: white;
    border-radius: 100px;
}

.product-desc:hover .visit-product {
    margin-top: unset !important;
    z-index: 1;
}

.division1-product .division1-product-card .product-desc .product-name {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-decoration: none;
    margin-bottom: 20px;
}

/* .smart-product .smart-product-card .product-desc a:hover {
    text-decoration: underline black;
} */

/* board of division 1 css end */

/* board of division 2 css start */

.board-division2 {
    display: flex;
    flex-direction: column;
    display: none;
    margin-top: 5rem;
    margin-bottom: 7rem;
}

.board-division2-product {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-division2 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #D9D9D9;
}

.banner-division2 h3 {
    color: #2758A7;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.division2-product {
    font-family: 'roboto';
    align-items: center;
    justify-content: center;
}

.division2-product .division2-product-card {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    /* grid-auto-rows: auto; */

    grid-gap: 7rem;
}

.division2-product .card-product {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid white;
    border-radius: 15px;
}

.division2-product-card .card-product img {
    width: 100%;
    height: 100%;
}

.division2-product .division2-product-card div {
    width: 200px;
    height: 200px;
}

.division2-product .division2-product-card .product-desc {
    background-color: #2758A7;
    display: flex;
    border: 1px solid white;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    width: 200px;
    border-radius: 0px 0px 15px 15px;
}

.division2-product .division2-product-card .product-desc:hover {
    padding-bottom: 200px;
    z-index: 5;
}

.product-word {
    color: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -80px !important;
    transition: 0.23s ease-in-out;
    transition-delay: .2s;
    z-index: -1;
}

.product-desc:hover .product-word {
    margin-top: unset !important;
    z-index: 1;
}

.product-desc a {
    text-decoration: none;
}

.product-desc .visit-product {
    display: flex;
    justify-content: center;
    text-align: justify;
    align-items: center;
    transition: 0.23s ease-in-out;
    transition-delay: .2s;
    margin-top: -50px !important;
    z-index: -1;
    padding: 5px 20px;
    text-decoration: none;
    background-color: #F5B203;
    color: white;
    border-radius: 100px;
}

.product-desc:hover .visit-product {
    margin-top: unset !important;
    z-index: 1;
}

.division2-product .division2-product-card .product-desc .product-name {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-decoration: none;
    margin-bottom: 20px;
}

/* .smart-product .smart-product-card .product-desc a:hover {
    text-decoration: underline black;
} */

/* board of division 2 css end */

/* other division css end */

/* mitra css start */

.mitra {
    flex-direction: column !important;
    font-family: 'poppins';
    align-items: center;
}

.mitra-banner {
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #2758A7;
    padding: 10px;
}

.mitra-banner h3 {
    color: #FFF;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.mitra-tabs {
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #F5B203;
    width: 100%;
    gap: 10px;
}

.mitra-tabs div {
    margin: 10px 0px;
    color: white;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    width: auto;
    padding: 10px;
    background: #D9D9D9;
    border-radius: 10px;
}

.mitra-tabs h5 {
    color: #2758A7;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-top: 5px;
    margin-bottom: 5px !important;
}

.mitra-tabs div:hover {
    background: #FFFFFF;
    text-decoration: none;
    /* border-radius: 10px 10px 0px 0px;
    padding-bottom: 20px;
    margin-bottom: 0px; */
    transition: all 0.3s ease;
}

.mitra-tabs div.active {
    background: #FFFFFF;
    border-radius: 10px 10px 0px 0px;
    padding-bottom: 20px;
    margin-bottom: 0px;
}

/* mitra css end */

/* mitra logo luar negeri css start */

.mitra-logo1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.mitra-logo1-product {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.mitra-product {
    font-family: 'roboto';
    align-items: center;
    justify-content: center;
}

.mitra-product .mitra-product-card {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    /* grid-auto-rows: auto; */

    grid-gap: 2rem;
}

.mitra-product .card-product {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid white;
    overflow: hidden; /* Tambahkan ini agar gambar yang ter-zoom tidak keluar dari card */
    transition: transform 0.5s ease; /* Tambahkan transisi untuk animasi yang halus */
}

.mitra-product-card .card-product img {
    width: 100%;
    height: 100%;
}

.mitra-product .mitra-product-card div {
    width: 150px;
    height: 150px;
}

.mitra-product .mitra-product-card div:hover {
    transform: scale(1.1);
}


/* mitra logo luar negeri css end */

/* mitra logo dalam negeri css start */

.mitra-logo2 {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    display: none;
}

.mitra-logo2-product {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.mitra-product2 {
    font-family: 'roboto';
    align-items: center;
    justify-content: center;
}

.mitra-product2 .mitra-product-card2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
}

.mitra-product2 .card-product {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid white;
    overflow: hidden; /* Tambahkan ini agar gambar yang ter-zoom tidak keluar dari card */
    transition: transform 0.5s ease; /* Tambahkan transisi untuk animasi yang halus */
}

.mitra-product-card2 .card-product img {
    width: 100%;
    height: 100%;
}

.mitra-product2 .mitra-product-card2 div {
    width: 150px;
    height: 150px;
}

.mitra-product2 .mitra-product-card2 div:hover {
    transform: scale(1.1); /* Efek zooming pada card */
}

@media (max-width: 600px) {
    .mitra-product .mitra-product-card {
        grid-template-columns: auto;
    }

    .mitra-product2 .mitra-product-card2 {
        grid-template-columns: auto;
    }

    .other-division .show-btn {
        width: auto;
    }

    .mitra-tabs h5 {
        font-size: 14px;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .other-division .show-btn {
        width: 500px;
    }
}

/* mitra logo dalam negeri css end */
