/* ? font sekolah penggerak */
@import url("https://fonts.googleapis.com/css2?family=Frijole&display=swap");

:root {
    --white: #fff;
    --light: #f6f6f6;
    --dark: #343a40;
    --hijau: #073e29;
    --hitam: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#profile {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eff0f4;
}
.container-profile {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 0;
    gap: 40px 60px;
}

.container-profile .drop {
    position: relative;
    width: 350px;
    height: 350px;
    box-shadow: inset 20px 20px 20px rgba(7, 62, 41, 0.2),
        25px 35px 20px rgba(7, 62, 41, 0.2), 25px 30px 30px rgba(7, 62, 41, 0.2),
        inset -20px -20px 25px rgba(255, 255, 255, 0.9);
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container-profile .drop-show {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: inset 20px 20px 20px rgba(7, 62, 41, 0.2),
        25px 35px 20px rgba(7, 62, 41, 0.2), 25px 30px 30px rgba(7, 62, 41, 0.2),
        inset -20px -20px 25px rgba(255, 255, 255, 0.9);
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-profile .drop {
    border-radius: 54% 46% 57% 43% / 33% 50% 50% 67%;
}
.container-profile .drop-show {
    border-radius: 20px;
}

.container-profile .drop:hover {
    border-radius: 50%;
}
.container-profile .drop-show:hover {
    border-radius: 50px;
}

.container-profile .drop::before,
.container-profile .drop-show::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 85px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.9;
}
.container-profile .drop::after,
.container-profile .drop-show::after {
    content: "";
    position: absolute;
    top: 90px;
    left: 110px;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
}

.container-profile .drop .content,
.container-profile .drop-show .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 40px;
    gap: 10px;
}

.container-profile .drop .content h2,
.container-profile .drop-show .content h2 {
    position: relative;
    width: 70px;
    height: 70px;
    background: #eff0f4;
    border-radius: 50%;
    box-shadow: inset 2px 5px 10px rgba(7, 62, 41, 0.1),
        inset -2px -5px 10px rgba(255, 255, 255, 1),
        15px 15px 10px rgba(7, 62, 41, 0.05),
        15px 10px 15px rgba(7, 62, 41, 0.025);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: 800;
    color: var(--crl) !important;
}

.container-profile .drop-show .content h1 {
    font-weight: 800;
    color: var(--crl) !important;
}
.container-profile .drop-show .content h3,
.container-profile .drop-show .content p {
    font-weight: 800;
    color: var(--crl) !important;
}
.container-profile .drop-show .content p {
    font-size: 1.3em;
}

.container-profile .drop .content a,
.container-profile .drop-show .content a {
    position: relative;
    padding: 10px 25px;
    background: var(--crl);
    color: var(--white);
    border-radius: 25px;
    font-weight: 500;
    text-shadow: 0 2px 2px rgba(7, 62, 41, 0.25);
    opacity: 0.75;
    transition: 0.5s;
}
.container-profile .drop .content a:hover,
.container-profile .drop-show .content a:hover {
    opacity: 1;
}

/* ? Dekstop */
@media screen and (min-width: 1008px) {
}

/* ? Tablet */
@media (min-width: 641px) and (max-width: 1007px) {
}

/* ? Handphone */
@media screen and (max-width: 640px) {
    .profil_pelajar_pancasila h1 {
        font-size: 20px;
    }
}
