.img-wrapper {
    height: 600px;
    /* Atur tinggi tetap sesuai kebutuhan kamu */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #ffffff;
    /* Optional, biar nggak kosong */
}

.img-wrapper-md {
    height: 300px;
    /* Atur tinggi tetap sesuai kebutuhan kamu */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #ffffff;
    /* Optional, biar nggak kosong */
}

.img-wrapper-sm {
    height: 150px;
    /* Atur tinggi tetap sesuai kebutuhan kamu */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #ffffff;
    /* Optional, biar nggak kosong */
}

.img-wrapper-xs {
    height: 90px;
    /* Atur tinggi tetap sesuai kebutuhan kamu */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #ffffff;
    /* Optional, biar nggak kosong */
}

.max-h-150 {
    max-height: 150px;
}

.custom-img {
    object-fit: cover;
    max-height: 100%;
    max-width: 100%;
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    padding-top: 50%;
    padding-bottom: 50%;
}

.item-menu-custom {
    transition: 200ms;
    cursor: pointer;
}

.item-menu-custom:hover {
    font-weight: bold;
    transition: 200ms;
    color: rgb(46, 67, 106);
    /* background-color: rgb(173, 150, 110); */
}

.text-cust-primary {
    color: rgb(173, 150, 110);
}

.border-splaw {
    border-color: rgb(46, 67, 106);
}

.btn-splaw {
    background-color: rgb(173, 150, 110);
    color: white;
}

.btn-splaw:hover {
    background-color: rgb(228, 197, 143);
    color: white;
}

.award-card {
    position: relative;
    cursor: pointer;
}

.award-card img {
    transition: transform 0.4s ease;
}

.award-card:hover img {
    transform: scale(1.05);
}

.award-card .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.award-card:hover .overlay {
    opacity: 1;
}

.team-card {
    position: relative;
    cursor: pointer;
}

.team-card .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .overlay {
    opacity: 1;
}

.text-splaw {
    color: rgb(46, 67, 106);
}

.text-splaw-secondary {
    color: rgb(173, 150, 110);
}

