@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');
 :root {
    /* color */
    --primary: #5b8e7d;
    --primary-light: #8cb369;
    --orange: #f4a259;
    --yellow: #f4e285;
    --red: #bc4b51;
    --gray-1: #798092;
    --gray-2: #E6E6ED;
    --white: #ffffff;
    --khaki: #f0ebe4;
    --khaki-light: #f9f7f4;
    /* font size */
    --header-1: 64px;
    --header-2: 48px;
    --header-3: 42px;
    --header-4: 32px;
    --text-medium: 18px;
    --text-regular: 16px;
    --text-light: 13px;
    /* font weight */
    --font-weight-bold: 700;
    --font-weight-semi-bold: 600;
    --font-weight-medium: 500;
    --font-weight-regular: 400;
    --font-weight-light: 300;
    /* shadow */
    --shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    /* bg */
    --bgutm: url("/front/img/bgx.svg");
}

body {
    font-family: 'Comfortaa', sans-serif;
}


/* button */

.btn {
    padding: 15px 25px;
    border-radius: 6px;
    font-size: var(--text-medium);
    font-weight: var(--font-weight-medium);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
}

.btn-primary:focus {
    background-color: var(--primary-light);
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.btn-secondary {
    background-color: var(--gray-2);
    color: var(--gray-1);
}

.btn-secondary:focus {
    background-color: var(--white);
    box-shadow: 0px 4px 19px rgba(0, 0, 0, 0.0%) !important;
    color: var(--gray-1);
}

.btn-secondary:hover {
    background-color: var(--white);
    box-shadow: 0px 4px 19px rgba(0, 0, 0, 0.0%) !important;
    color: var(--gray-1);
}


/* navbar */

.navbar-brand img {
    padding-right: 16px;
}

.navbar-brand span {
    font-size: var(--text-medium);
    font-weight: var(--font-weight-medium);
    color: var(--orange);
}


/* .navbar { */


/* padding: 48px 0; */


/* } */

a.nav-link {
    margin-right: 39px;
    font-size: var(--text-regular);
    font-weight: var(--font-weight-regular);
    color: var(--orange);
}


/* hero */

section.hero {
    margin: 4rem 0;
    min-height: 100vh;
}

.text-label,
.text-hero-bold,
.text-hero-regular {
    margin: 24px 0;
}

.text-label {
    color: var(--primary);
    font-size: var(--text-regular);
    font-weight: var(--font-weight-regular);
    line-height: 31px;
}

.text-hero-bold {
    color: var(--orange);
    font-size: var(--header-1);
    font-weight: var(--font-weight-bold);
    line-height: 74px;
}

.text-hero-regular {
    color: var(--gray-1);
    font-size: var(--text-regular);
    font-weight: var(--font-weight-regular);
    line-height: 31px;
}


/* section bghsl */

section.bghsl {
    margin: 4rem 0;
    min-height: 100vh;
    /* background-color: var(--primary); */
    background-color: #5B8E7D;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%238CB369' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%2395B370'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-bghsl-bold {
    font-weight: var(--font-weight-semi-bold);
    font-size: var(--header-3);
    text-align: center;
    color: var(--white);
    /* animation: typing 2s steps(22), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden; */
    text-shadow: var(--shadow);
}

@keyframes typing {
    from {
        width: 0
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

.text-bghsl-regular {
    color: var(--orange);
    font-size: var(--text-regular);
    font-weight: var(--font-weight-regular);
    text-align: center;
    margin-bottom: 10px;
    text-shadow: var(--shadow);
}


/* .char {
    transform: translateY(115px);
    transition: transform .5s;
} */


/* section produk */

section.produk {
    margin: 4rem 0;
    justify-content: center;
    align-items: center;
}

.vids,
.tabs,
.tabx,
.pems,
.deps,
.bros {
    border-radius: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #5b8e7d;
    height: 350px;
}

.vids {
    position: relative;
    overflow: hidden; 
}

.vids iframe {
    /* Langkah 1: Posisikan iframe di tengah container */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* Langkah 2: Paksa iframe menjadi lebih besar dari container */
    /* Trik ini memastikan video menutupi seluruh area, tidak peduli aspek rasio container */
    width: 178vh; /* 100vh * 16/9 (rasio video) */
    min-width: 100%;
    height: 100vw; /* 100vw * 9/16 */
    min-height: 100%;
}

.vids video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
    border-radius: 15px;
}

.tabs {
    position: relative;
}

.jdl {
    color: #ffffff;
    width: 100%;
    text-align: center;
    font-size: 2em;
    position: absolute;
    top: 20px;
}

.detail-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    border-radius: 15px;
    transform: translate(-50%, 0);
}

.img-produk {
    position: absolute;
    top: 25%;
    left: 30%;
    max-width: 130px;
    transform: translate(-50%, -50%);
}


/* media */

@media (min-width: 1399.98px) {
    .container {
        width: 84%;
    }
}

@media (max-width: 576px) {
    /* .navbar{
        padding: 28px;
    } */
    a.nav-link {
        margin-right: 7px 0;
    }
    section.hero {
        margin: 2rem 0;
        text-align: center;
    }
    .btn {
        display: block;
        margin: 1rem 0;
    }
    .ms-3 {
        margin-left: 0 !important;
    }
    .text-label,
    .text-hero-bold,
    .text-hero-regular {
        text-align: center;
    }
    .text-hero-bold {
        font-weight: var(--font-weight-bold);
        font-size: var(--header-3);
        line-height: 64px;
    }
    section.hero img {
        margin: 2rem 0;
    }
}

@media (max-width: 768px) {
    a.nav-link {
        margin-right: 7px 0;
    }
    section.hero {
        margin: 1rem 0;
    }
    .text-hero-bold {
        font-weight: var(--font-weight-bold);
        font-size: var(--header-3);
        line-height: 64px;
    }
    section.hero img {
        margin: 2rem 0;
    }
}

@media (max-width: 992px) {
    a.nav-link {
        margin-right: 7px 0;
    }
    section.hero {
        margin: 1rem 0;
    }
    .text-hero-bold {
        font-weight: var(--font-weight-bold);
        font-size: var(--header-3);
        line-height: 64px;
    }
    section.hero img {
        margin: 2rem 0;
    }
}

@media (pointer: fine) {
    .tabs {
        transform-style: preserve-3d;
    }
    .jdl {
        /* opacity: 0; default*/
        /* opacity: 0.7; */
        transition: 0.5s;
        transform: translate3d(0, 0, 10px);
        /* top: 0; default*/
        top: 20px;
    }
    .tabs:hover .jdl {
        top: 30px;
        opacity: 1;
    }
    .detail-btn {
        transform: translate3d(-50%, 0, 30px);
        opacity: 0;
        transition: 0.5s;
    }
    .tabs:hover .detail-btn {
        opacity: 1;
        bottom: 15px;
    }
    .img-produk {
        top: 50%;
        left: 50%;
        transform: translate3d(-50%, -50%, 60px);
        transition: 0.5s;
    }
    .tabs:hover .img-produk {
        transform: translate3d(-50%, -50%, 60px) scale(1.3);
    }
}

section.news {
    margin: 4rem 0;
    justify-content: center;
    align-items: center;
    background-color: #F2F2F2;
}

.text-med-bold {
    margin-top: 50px;
    font-weight: var(--font-weight-semi-bold);
    font-size: var(--header-3);
    text-align: center;
    color: black;
    /* text-shadow: var(--shadow); */
}

.pagination {
    --bs-pagination-color: #808080;
    --bs-pagination-hover-color: #6d6d6d;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-border-color: #f5913a;
    --bs-pagination-active-bg: #f4a259;
    --bs-pagination-hover-bg: #eeb583;
}

.gallery {
    display: flex;
    /* outline: 1px solid var(--orange); */
    border-radius: 15px;
}

.left {
    width: 50%;
}

.right {
    height: 100vh;
    /* outline:1px solid purple; */
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.desktopContent {
    margin: auto;
    width: 90%;
}

.desktopContentSection {
    min-height: 100vh;
    /* outline:1px solid green; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.desktopPhotos {
    margin-top: 40px;
    width: 30vw;
    height: 30vw;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    /* box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4); */
}

.desktopPhoto {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center center;
}

.red {
    background: crimson;
}

.green {
    background: MediumSeaGreen;
}

.blue {
    background: dodgerblue;
}

.pink {
    background: deepPink;
}


/* small screen / mobile layout */

.mobileContent {
    display: none;
    width: 80vw;
}

.mobilePhoto {
    width: 80vw;
    height: 80vw;
    margin-top: 5em;
    border-radius: 6vw;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


/* defines styles for screens up to 599px wide */

@media screen and (max-width: 599px) {
    .left {
        display: none;
    }
    .right {
        height: auto;
        width: 100%;
        align-items: center;
    }
    .desktopPhotos {
        display: none;
    }
    .mobileContent {
        display: block;
    }
}


/* section profile */

section.prl {
    /* margin: 4rem 0; */
    padding-top: 30px;
    min-height: 100vh;
    /* background-color: var(--primary); */
    background-color: #5b8e7d;
    /* background-image: radial-gradient(#f4a259 0.8500000000000001px, transparent 0.8500000000000001px), radial-gradient(#f4a259 0.8500000000000001px, #5b8e7d 0.8500000000000001px); */
    /* background-image: var(--bgutm); */
    /* background-size: 34px 34px;
    background-position: 0 0, 17px 17px;
    background-attachment: fixed; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--text-regular);
    font-weight: var(--font-weight-regular);
}

section.posts {
    margin: 2rem 0;
    justify-content: center;
    align-items: center;
    background-image: repeating-linear-gradient(135deg, hsla(190, 0%, 89%, 0.15) 0px, hsla(190, 0%, 89%, 0.15) 0px, transparent 0px, transparent 1px, hsla(190, 0%, 89%, 0.15) 1px, hsla(190, 0%, 89%, 0.15) 4px, transparent 4px, transparent 5px, hsla(190, 0%, 89%, 0.15) 5px, hsla(190, 0%, 89%, 0.15) 10px), repeating-linear-gradient(45deg, hsla(190, 0%, 89%, 0.15) 0px, hsla(190, 0%, 89%, 0.15) 0px, transparent 0px, transparent 1px, hsla(190, 0%, 89%, 0.15) 1px, hsla(190, 0%, 89%, 0.15) 4px, transparent 4px, transparent 5px, hsla(190, 0%, 89%, 0.15) 5px, hsla(190, 0%, 89%, 0.15) 10px), repeating-linear-gradient(0deg, hsla(190, 0%, 89%, 0.15) 0px, hsla(190, 0%, 89%, 0.15) 0px, transparent 0px, transparent 1px, hsla(190, 0%, 89%, 0.15) 1px, hsla(190, 0%, 89%, 0.15) 4px, transparent 4px, transparent 5px, hsla(190, 0%, 89%, 0.15) 5px, hsla(190, 0%, 89%, 0.15) 10px), repeating-linear-gradient(90deg, hsla(190, 0%, 89%, 0.15) 0px, hsla(190, 0%, 89%, 0.15) 0px, transparent 0px, transparent 1px, hsla(190, 0%, 89%, 0.15) 1px, hsla(190, 0%, 89%, 0.15) 4px, transparent 4px, transparent 5px, hsla(190, 0%, 89%, 0.15) 5px, hsla(190, 0%, 89%, 0.15) 10px), linear-gradient(90deg, rgb(251, 251, 251), rgb(251, 251, 251));
    /* background-color: #5b8e7d;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%238cb369' fill-opacity='0.25' fill-rule='evenodd'/%3E%3C/svg%3E"); */
    background-attachment: fixed;
}

.text-funding-bold {
    font-weight: var(--font-weight-semi-bold);
    font-size: var(--header-1);
    text-align: center;
    background: #5B8E7D;
    background: linear-gradient(to right, #5B8E7D 0%, #8CB369 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.text-med-bold-all {
    font-weight: var(--font-weight-semi-bold);
    font-size: var(--header-3);
    text-align: center;
    color: white;
    margin-bottom: 20px;
}


/* section sejarah */

section.sjr {
    margin: 4rem 0;
    min-height: 100vh;
    background-color: #5b8e7d;
    background-image: var(--bgutm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-sjr-bold {
    font-weight: var(--font-weight-semi-bold);
    font-size: var(--header-3);
    text-align: center;
    color: var(--white);
    text-shadow: var(--shadow);
    margin-bottom: 1.5em;
}


/* section wilayah */

section.wl {
    margin: 4rem 0;
    min-height: 100vh;
    background-color: #5b8e7d;
    background-image: var(--bgutm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-wl-bold {
    font-weight: var(--font-weight-semi-bold);
    font-size: var(--header-3);
    text-align: center;
    color: var(--white);
    text-shadow: var(--shadow);
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}


/* section visi misi */

section.vsms {
    margin: 2rem 0;
    justify-content: center;
    align-items: center;
    background-color: #5b8e7d;
    /* background: rgb(140, 179, 105); */
    /* background: radial-gradient(circle, rgba(140, 179, 105, 1) 0%, rgba(91, 142, 125, 1) 100%); */
    background-image: var(--bgutm);
    background-attachment: fixed;
}

.text-pengurus-regular {
    color: var(--orange);
    font-size: var(--text-medium);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 10px;
    margin-top: 1em;
}

.text-pengurus-regular-ch {
    /* color: var(--yellow); */
    font-size: var(--text-regular);
    font-weight: var(--font-weight-semi-bold);
    text-align: center;
    margin-bottom: 10px;
    margin-top: 1em;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.accordion {
    --bs-accordion-btn-color: white;
    --bs-accordion-btn-bg: var(--primary);
    --bs-accordion-active-color: white;
    --bs-accordion-active-bg: var(--orange);
}

.brosur {
    /* border-radius: 15px; */
    margin-top: 10px;
    margin-bottom: 10px;
    /* background-color: #5b8e7d; */
    height: 400px;
}

.img-brosur {
    /* position: absolute; */
    /* top: 35%;
    left: 35%; */
    max-width: 130px;
}

.share button {
    padding: 0.5rem;
    margin: 1rem 2rem 1rem 0;
    background: none;
    border: none;
}

.share button svg {
    height: 30px;
    width: 30px;
}

.share button:hover {
    color: var(--primary);
}

.img-post {
    width: 350px;
    height: 350px;
    object-fit: cover;
}


/* section profil wilayah */

.info {
    background-image: repeating-linear-gradient(90deg, hsla(298, 16%, 68%, 0.06) 0px, hsla(298, 16%, 68%, 0.06) 1px, transparent 1px, transparent 21px, hsla(298, 16%, 68%, 0.06) 21px, hsla(298, 16%, 68%, 0.06) 22px, transparent 22px, transparent 72px), repeating-linear-gradient(0deg, hsla(298, 16%, 68%, 0.06) 0px, hsla(298, 16%, 68%, 0.06) 1px, transparent 1px, transparent 21px, hsla(298, 16%, 68%, 0.06) 21px, hsla(298, 16%, 68%, 0.06) 22px, transparent 22px, transparent 72px), repeating-linear-gradient(135deg, hsla(298, 16%, 68%, 0.06) 0px, hsla(298, 16%, 68%, 0.06) 1px, transparent 1px, transparent 21px, hsla(298, 16%, 68%, 0.06) 21px, hsla(298, 16%, 68%, 0.06) 22px, transparent 22px, transparent 72px), linear-gradient(90deg, hsl(275, 3%, 97%), hsl(275, 3%, 97%));
    font-weight: 700;
    color: black;
    padding-top: 10rem;
    padding-bottom: 10rem;
    /* font-family: Helvetica Neue, sans-serif; */
}

.info .desk {
    font-size: 1.1rem;
}

.info .description {
    font-size: 1rem;
    font-weight: 600;
}

.info .card {
    /* background-color: rgba(255, 255, 255, 0.2)!important; */
    color: black !important;
    border: 1px solid #999;
}

.info .card-header {
    border-bottom: 1px solid #999;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.info .card-body {
    font-size: 0.9rem;
}

.info .card-footer {
    border-top: 1px solid #999;
    font-size: 0.9rem;
    font-weight: 300;
}


/***************************************************
 * Generated by SVG Artista on 2/18/2025, 12:01:15 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 73297.0546875px;
        stroke-dasharray: 73297.0546875px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 73297.0546875px;
    }
}

@keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 73297.0546875px;
        stroke-dasharray: 73297.0546875px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 73297.0546875px;
    }
}

.svg-elem-1 {
    -webkit-animation: animate-svg-stroke-1 3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
    animation: animate-svg-stroke-1 3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both infinite;
    animation-delay: 2s;
}

.grad-text-col-orange {
    background: #F4A259;
    background: linear-gradient(to right, #F4A259 0%, #F4E285 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grad-text-col-green {
    background: #5B8E7D;
    background: linear-gradient(to right, #5B8E7D 0%, #8CB369 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-kb-bdg {
    background: #FFDE1B;
    background: linear-gradient(to bottom, #FFDE1B 0%, #159040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-bdg {
    background: #51A649;
    background: linear-gradient(to bottom, #51A649 0%, #00ADEC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-kb-bdg-br {
    color: #00943A;
}

.text-cmh {
    color: #e57a12;
}

.retro-text-glow {
    color: var(--orange);
    text-shadow: rgba(255, 255, 255, 0.9) 0px 0px 39px;
}

.info-kerjasama {
    background-image: radial-gradient(circle at 69% 86%, rgba(165, 165, 165, 0.06) 0%, rgba(165, 165, 165, 0.06) 25%, rgba(193, 193, 193, 0.06) 25%, rgba(193, 193, 193, 0.06) 50%, rgba(221, 221, 221, 0.06) 50%, rgba(221, 221, 221, 0.06) 75%, rgba(249, 249, 249, 0.06) 75%, rgba(249, 249, 249, 0.06) 100%), radial-gradient(circle at 49% 76%, rgba(129, 129, 129, 0.06) 0%, rgba(129, 129, 129, 0.06) 25%, rgba(164, 164, 164, 0.06) 25%, rgba(164, 164, 164, 0.06) 50%, rgba(200, 200, 200, 0.06) 50%, rgba(200, 200, 200, 0.06) 75%, rgba(235, 235, 235, 0.06) 75%, rgba(235, 235, 235, 0.06) 100%), radial-gradient(circle at 22% 64%, rgba(173, 173, 173, 0.06) 0%, rgba(173, 173, 173, 0.06) 25%, rgba(119, 119, 119, 0.06) 25%, rgba(119, 119, 119, 0.06) 50%, rgba(64, 64, 64, 0.06) 50%, rgba(64, 64, 64, 0.06) 75%, rgba(10, 10, 10, 0.06) 75%, rgba(10, 10, 10, 0.06) 100%), linear-gradient(307deg, rgb(255, 255, 255), rgb(255, 255, 255));
    font-weight: 700;
    color: black;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.info-visimisi {
    background-image: linear-gradient(216deg, rgba(77, 77, 77, 0.05) 0%, rgba(77, 77, 77, 0.05) 25%, rgba(42, 42, 42, 0.05) 25%, rgba(42, 42, 42, 0.05) 38%, rgba(223, 223, 223, 0.05) 38%, rgba(223, 223, 223, 0.05) 75%, rgba(36, 36, 36, 0.05) 75%, rgba(36, 36, 36, 0.05) 100%), linear-gradient(44deg, rgba(128, 128, 128, 0.05) 0%, rgba(128, 128, 128, 0.05) 34%, rgba(212, 212, 212, 0.05) 34%, rgba(212, 212, 212, 0.05) 57%, rgba(25, 25, 25, 0.05) 57%, rgba(25, 25, 25, 0.05) 89%, rgba(135, 135, 135, 0.05) 89%, rgba(135, 135, 135, 0.05) 100%), linear-gradient(241deg, rgba(55, 55, 55, 0.05) 0%, rgba(55, 55, 55, 0.05) 14%, rgba(209, 209, 209, 0.05) 14%, rgba(209, 209, 209, 0.05) 60%, rgba(245, 245, 245, 0.05) 60%, rgba(245, 245, 245, 0.05) 69%, rgba(164, 164, 164, 0.05) 69%, rgba(164, 164, 164, 0.05) 100%), linear-gradient(249deg, rgba(248, 248, 248, 0.05) 0%, rgba(248, 248, 248, 0.05) 32%, rgba(148, 148, 148, 0.05) 32%, rgba(148, 148, 148, 0.05) 35%, rgba(202, 202, 202, 0.05) 35%, rgba(202, 202, 202, 0.05) 51%, rgba(181, 181, 181, 0.05) 51%, rgba(181, 181, 181, 0.05) 100%), linear-gradient(92deg, hsl(214, 0%, 11%), hsl(214, 0%, 11%));
    font-weight: 700;
    color: white;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.info-pengurus {
    background-image: linear-gradient(22.5deg, rgba(242, 242, 242, 0.03) 0%, rgba(242, 242, 242, 0.03) 16%, rgba(81, 81, 81, 0.03) 16%, rgba(81, 81, 81, 0.03) 26%, rgba(99, 99, 99, 0.03) 26%, rgba(99, 99, 99, 0.03) 73%, rgba(43, 43, 43, 0.03) 73%, rgba(43, 43, 43, 0.03) 84%, rgba(213, 213, 213, 0.03) 84%, rgba(213, 213, 213, 0.03) 85%, rgba(125, 125, 125, 0.03) 85%, rgba(125, 125, 125, 0.03) 100%), linear-gradient(22.5deg, rgba(25, 25, 25, 0.03) 0%, rgba(25, 25, 25, 0.03) 54%, rgba(144, 144, 144, 0.03) 54%, rgba(144, 144, 144, 0.03) 60%, rgba(204, 204, 204, 0.03) 60%, rgba(204, 204, 204, 0.03) 76%, rgba(37, 37, 37, 0.03) 76%, rgba(37, 37, 37, 0.03) 78%, rgba(115, 115, 115, 0.03) 78%, rgba(115, 115, 115, 0.03) 91%, rgba(63, 63, 63, 0.03) 91%, rgba(63, 63, 63, 0.03) 100%), linear-gradient(157.5deg, rgba(71, 71, 71, 0.03) 0%, rgba(71, 71, 71, 0.03) 6%, rgba(75, 75, 75, 0.03) 6%, rgba(75, 75, 75, 0.03) 15%, rgba(131, 131, 131, 0.03) 15%, rgba(131, 131, 131, 0.03) 18%, rgba(110, 110, 110, 0.03) 18%, rgba(110, 110, 110, 0.03) 37%, rgba(215, 215, 215, 0.03) 37%, rgba(215, 215, 215, 0.03) 62%, rgba(5, 5, 5, 0.03) 62%, rgba(5, 5, 5, 0.03) 100%), linear-gradient(90deg, #ffffff, #ffffff);
    font-weight: 700;
    color: black;
    padding-top: 10rem;
    padding-bottom: 10rem;
}