@font-face {
    font-family: 'Frogie-Regular';
    src: url('../fonts/Frogie-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #ffffff;
    overflow-x: hidden;
}

/*body {*/
/*    font-family: 'Frogie-Regular', Arial, sans-serif;*/
/*}*/

a {
    text-decoration: none;
}

p {
    text-align: justify;
}

/* Header */
.hero-content h1 {
    font-family: 'Frogie-Regular', Arial, sans-serif;
}

/*.hero-content .deskripsi {*/
/*    font-family: Arial, sans-serif;*/
/*}*/


/* Semua isi form */
/*.features-wrapper {*/
/*    font-family: Arial, sans-serif;*/
/*}*/

/* HEADER GRADASI */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 100px;
}

/* Layer untuk menutup seluruh bagian atas */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: #fff;
    z-index: 1;
}


/* Layer ellipse untuk membuat lengkungan */
.hero::after {
    content: "";
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    width: 140%;
    height: 500px;

    background: linear-gradient(
        to bottom,
        #b34b66 70%,
        #98b8dc 100%
    );

    border-radius: 50%;

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

.breadcrumb > .breadcrumb-item a, .breadcrumb > .breadcrumb-item:before {
    color: #b34b66;
}

.breadcrumb-item.active {
    color: #98b8dc;
}

.accordion-button {
    background-color: #98b8dc;
    color: #fff;
    border-radius: 10px;
}

.accordion-button.collapsed::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed) {
    background-color: #b34b66;
    color: #fff;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion,
.accordion-item,
.accordion-button,
.accordion-collapse,
.accordion-body {
    border: none !important;
}


/* DESKTOP */
@media (min-width: 768px) {
    .hero {
        padding-top: 50px;
        padding-bottom: 120px;
    }
}

/* MOBILE */
@media (max-width: 767.98px) {
    .hero {
        text-align: center;
        padding-top: 0;
        padding-bottom: 60px;
    }

    .features-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    /*
    Bootstrap otomatis membuat
    col-12 menjadi 1 kolom.
    */
}