.centered-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Sesuaikan tinggi sesuai kebutuhan */
}
.carousel {
    width: 100%;
    height: 80vh;
    display: flex;
    position: relative;
    padding: 0px;
    align-items: center;
    overflow: hidden;
}
.containerCarousel {
    width: 100%;
    height: 90vh;
    display: flex;
    padding: 0px;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}
.imgContainer {
    width: 100%;
    height: 600px;
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
}
.slide_div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 0 10px;
}
.img {
    position: relative;
    height: 600px;
    width: 150px;
    filter: saturate(100%);
    transition: 0.7s;
    border-radius: 30px;
}
.button {
    position: absolute;
    width: 90px;
    height: 370px;
    transition: 0.7s;
    border-radius: 20px;
}
.button:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
.indicator {
    width: 10px;
    height: 10px;
    background: rgb(86, 192, 122);
    background: linear-gradient(
        90deg,
        rgba(86, 192, 122, 1) 0%,
        rgba(43, 81, 140, 1) 100%
    );
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.bg-service {
    background: rgb(44, 144, 90);
    background: linear-gradient(
        180deg,
        rgba(44, 144, 90, 1) 0%,
        rgba(25, 83, 112, 1) 100%
    );
}

.box-shadow {
    -webkit-box-shadow: 10px 10px 18px -4px rgba(0, 0, 0, 0.43);
    -moz-box-shadow: 10px 10px 18px -4px rgba(0, 0, 0, 0.43);
    box-shadow: 10px 10px 18px -4px rgba(0, 0, 0, 0.43);
}

.scrollbar-hide::-webkit-scrollbar {
    width: 20px;
}

.bg-button-ligth {
    background: rgb(75, 200, 133) !important;
    background: linear-gradient(
        90deg,
        rgba(75, 200, 133, 1) 0%,
        rgba(61, 141, 181, 1) 100%
    ) !important;
}

.bg-button-dark {
    background: rgb(30, 128, 61) !important;
    background: linear-gradient(
        90deg,
        rgba(30, 128, 61, 1) 0%,
        rgba(11, 58, 88, 1) 100%
    ) !important;
}
