@font-face {
    font-family: 'Frogie-Regular';
    src: url('../fonts/Frogie-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    background: linear-gradient(
        to bottom,
        #b34b66 0%,
        #aa7c9b 100%
    );

    font-family: 'Frogie-Regular', Arial, sans-serif;

    overflow-x: hidden;
}

.breadcrumb > .breadcrumb-item a {
    text-decoration: none;
}

.breadcrumb > .breadcrumb-item a, .breadcrumb > .breadcrumb-item:before {
    color: #98b8dc;
}

.breadcrumb-item.active {
    color: #fff;
}


/* =========================
   AREA UTAMA
========================= */

.features-wrapper {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}

.features-wrapper .container {
    width: 100%;

    display: flex;
    flex-direction: column;
}


/* =========================
   KOTAK
========================= */

.feature-box {
    height: 100px;

    border-radius: 20px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}


/* =========================
   LINK
========================= */

.feature-box .judul {
    margin: 0;
    padding: 5px;

    font-size: 2.5rem;
}

.feature-box .judul a {
    text-decoration: none;
    color: #fff;
}


/* =========================
   WARNA
========================= */

.box-1 {
    background: #b34b66;
}

.box-2 {
    background: #e09cb1;
}

.box-3 {
    background: #98b8dc;
}

.box-4 {
    background: #6397cd;
}


/* =========================
   GAMBAR BAWAH
========================= */

.gambar-wrapper {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    margin: 0;
    padding: 0;
}

.gambar-bawah {
    display: block;

    width: 70%;
    max-width: 350px;
    height: auto;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767.98px) {

    .features-wrapper {
        padding: 30px 20px 0 20px;
    }

    .feature-box {
        height: 100px;
    }

    .feature-box .judul {
        font-size: 2rem;
    }

    .gambar-wrapper {
        /* margin-top: 40px; */
        padding-top: 0;
    }

    .gambar-bawah {
        max-width: 70%;
    }
}