@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root
{
    --bg: #111
}
body
{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);  
}
.circle
{
    position: absolute;
    bottom: 0;
    width: 20px;
    aspect-ratio: 1/1;
    background: #eb0c1e;
    box-shadow: 0 0 10px #eb0c1e,
    0 0 20px #eb0c1e,
    0 0 30px #eb0c1e,
    0 0 50px #eb0c1e;
    border-radius: 50%;
    animation: animate 5s linear forwards;
    z-index: -1;
}
@keyframes animate
{
    0%
    {
        transform: translateY(0);
        opacity: 1;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: translateY(-100vh);
        opacity: 0;
    }
}
.circle::before
{
    content: '';
    position: absolute;
    top: 100%;
    left: 25%;
    width: 50%;
    height: 100vh;
    opacity: 0.5s;
    background: linear-gradient(#eb0c1e, transparent);
}
.card
{
    position: relative;
    transition: 0.5s;
    height: 100px;
    transition-delay: 0.5s;

}
.card.active
{
    height: 450px;
    transition-delay: 0s;
}
.card .user
{
    position: relative;
    width: 400px;
    min-height: 150px;
    background: #0C0636;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    padding: 60px 40px 30px;
}
.card .user .imgBox
{
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid #D21223;
    overflow: hidden;
    transition: 0.5s;
    z-index: 10;
}
.card .user .imgBox img
{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.card .user .konten
{
    position: relative;
    text-align: center;
}
.card .user .konten h2
{
    font-size: 1.05em;
    line-height: 1.50em;
    font-weight: 900;
    color: #fff;
}
.card .user .konten h2
{
    font-size: 0.85em;
    font-weight: 400;
}
.card .user .toggle
{
    position: absolute;
    bottom: 0;
    width: auto;
    padding: 5px 15px;
    background: #D21223;
    color: #fff;
    border-radius: 30px;
    transform: translateY(50%);
    border: 6px solid var(--bg);
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: 0.5s;
}
.card.active .user .toggle
{
    background: #0C0636;
    color: #fff;
}
.card .user .toggle::before
{
    content: 'Selengkapnya';
}
.card.active .user .toggle::before
{
    content: 'Tutup';
}
.card .kontak
{
    position: relative;
    top: 30px;
    width: 100%;
    height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.5s;
}
.card.active .kontak
{
    height: 325px;
}
.card .kontak li
{
    list-style: none;
    width: 100%;
    min-height: 100px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    transition: 0.5s;
    opacity: 0;
    transform: scale(0);
    padding: 10px 30px;
}
.card.active .kontak li
{
    opacity: 1;
    transform: scale(1);
    transition-delay: calc(0.25s * var(--i));
}
.card.card.active .kontak:hover li
{
    opacity: 0.15;
    filter: blur(2px);
    transition-delay: 0s;
}
.card.card.active .kontak li:hover
{
    opacity: 1;
    filter: blur(0px);
}
.card .kontak li a
{
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}
.card .kontak li a .iconBox
{
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--clr);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card .kontak li a .iconBox i
{
    color: #fff;
    font-size: 1.5em;
}
.card .kontak li a p
{
    color: #666;
    font-size: 1.1em;
}
.card .kontak li a:hover p
{
    color: #111;
}