/* Profile */
#profile .card-profile {
    width: 80%;
    height: 25rem;
    background-color: var(--primary-color);
    font-size: 17px;
}

#profile .card-profile .title {
    width: 100%;
    background-color: var(--accent2-color);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    padding: 10px 2rem;
    display: flex;
    align-items: center;
}

#profile .profile-text {
    margin-top: 2rem;padding: 0 3rem;
}

@media only screen and (max-width:990px) {
    #profile .profile-text {
        padding: 0 1.5rem;
    }

    #profile .card-profile {
        width: 100%;
        height: 25rem;
        background-color: var(--primary-color);
        font-size: 14px;
        margin-bottom: 3rem;
    }

    #profile .card-profile .title {
        width: 100%;
        background-color: var(--accent2-color);
        font-size: 48px;
        font-weight: 700;
        color: var(--primary-color);
        margin-top: 2rem;
        padding: 10px 2rem;
        display: flex;
        align-items: center;
    }
}
/* Struktur Organisasi */

#struktur_organisasi .title {
    width: 50rem;
    height: 10rem;
    background-color: var(--primary-color);
    color: var(--accent2-color);
    font-size: 35px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#struktur_organisasi .title::before,
#struktur_organisasi .title::after {
    content: '';
    position: absolute;
    background-color: var(--third-color);
    width: 100%;
    height: 5rem;
}

#struktur_organisasi .title::before {
    left: -100%;
}

#struktur_organisasi .title::after {
    right: -100%;
}

@media only screen and (max-width: 990px) {
    #struktur_organisasi .title {
        width: 30rem;
        height: 5rem;
        background-color: var(--primary-color);
        color: var(--accent2-color);
        font-size: 15px;
        font-weight: 800;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
}

/* Lisensi */

#lisensi .skema-card {
    position: relative;
    padding-top: 2px;
    width: 20rem;
    height: 30rem;
    margin-bottom: 3rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px 0px rgba(0, 0, 0, 0.1);
    transition: all 400ms ease-out;
    overflow: hidden;
}

#lisensi .skema-card i {
    font-size: 70px;
    color: var(--primary-color);
}

#lisensi .skema-card h2 {
    margin-top: 1em;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: black;
}

#lisensi .skema-card span {
    font-size: 19px;
    font-weight: 400;
    text-align: center;
    color: black;
}

#lisensi .skema-card .skema-btn {
    opacity: 1;
    margin-top: 1.5em;
    width: 10rem;
    height: 3em;
    border-radius: 8px;
    border: 0;
    color: var(--accent2-color);
    background-color: var(--accent-color);
    transition: all 300ms ease-out;
}

#lisensi .skema-card .skema-btn:hover {
    background-color: var(--primary-color);
}

#lisensi .skema-card .skema-btn span {
    transition: all 300ms ease-out;
    font-size: 15px;
    font-weight: 500;
    color: var(--accent2-color);
}

#lisensi .skema-card .skema-btn:hover span {
    font-size: 16px;
}

#lisensi .detail-lisensi {
    visibility: hidden;
    top: 0;
    left: 0;
    position: fixed;
    width: 100dvw;
    height: 100dvh;
    background-color: black;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999 !important;
}

#lisensi .detail-lisensi img {
    height: 90%;
}

#lisensi .detail-lisensi i {
    color: var(--accent2-color);
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 30px;
    cursor: pointer;
}

@media only screen and (max-width: 990px) {
    #lisensi .detail-lisensi img {
        height: max-content;
        width: 80%;
    }
}