@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

.label {
    font-size: 15px;
    color: #ffffff;
    background-color: #F05B06;
    padding: 5px 20px;
    border-radius: 7px;
    margin-bottom: 10px;
}

.anggota-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.anggota-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #015931 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: 0.3s;
}

.anggota-carousel .owl-prev {
    margin-left: -70px;
}

.anggota-carousel .owl-next {
    margin-right: -70px;
}

.anggota-carousel .owl-nav button span {
    display: none;
}

.anggota-carousel .owl-prev::before {
    content: "\f104";
    font-family: FontAwesome;
}

.anggota-carousel .owl-next::before {
    content: "\f105";
    font-family: FontAwesome;
}

@media (max-width: 1024px) {
    .anggota-carousel .owl-nav {
        display: none;
    }
}

/* SHOWCASE CAROUSEL */
.showcase-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.showcase-carousel .owl-nav.disabled {
    display: flex !important;
}

.showcase-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #015931 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: 0.3s;
}

.showcase-carousel .owl-prev {
    margin-left: -70px;
}

.showcase-carousel .owl-next {
    margin-right: -70px;
}

.showcase-carousel .owl-nav button span {
    display: none;
}

.showcase-carousel .owl-prev::before {
    content: "\f104";
    font-family: FontAwesome;
}

.showcase-carousel .owl-next::before {
    content: "\f105";
    font-family: FontAwesome;
}

@media (max-width: 1024px) {
    .showcase-carousel .owl-nav {
        display: none;
    }

    .showcase-carousel .owl-nav.disabled {
        display: none !important;
    }

}


#btnTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 20px;
    background: #009944;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: transform 0.3s;
    z-index: 999;
}

#btnTop:hover {
    transform: translateY(-10px);
}

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

body {
    font-family: 'Poppins', sans-serif;
    /* line-height: 1.6; */
}

/* ================== GLOBAL ACCENT ================== */
.yellow-accent {
    width: 100px;
    height: 10px;
    background: #FFD400;
    border-radius: 999px;
    margin-bottom: 25px;
}

.green-accent {
    width: 100px;
    height: 10px;
    background: #009944;
    border-radius: 999px;
    margin-bottom: 25px;
}

/* ================== END GLOBAL ACCENT ================== */

/* ================== GLOBAL BUTTONS ================== */

/* ================== END BUTTONS ================== */

/* ================== GLOBAL CONTAINERS ================== */
.page-banner {
    width: 100%;
    max-width: 1500px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.page-banners {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 50px 100px 50px;
}

.page-banner-2 {
    width: 100%;
    max-width: 1500px;
    color: #04293B;
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: space-between;
}

.page-banner-2 h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.page-banner-2 p {
    font-size: 20px;
}

.page-banner h1 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #015931;
}

.page-banner p {
    font-size: 20px;
}

@media (max-width: 1024px) {
    .page-banners {
        padding: 50px 20px;
    }

    .page-banner {
        text-align: center;
    }

    .page-banner h1 {
        font-size: 30px;
    }

    .page-banner-2 {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .page-banner-2 h1 {
        font-size: 30px;
    }

    .page-banner-2 p {
        font-size: 16px;
    }

    .page-banner p {
        font-size: 16px;
    }

    .back-button {
        display: none;
    }

    #btnTop {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}