.profile-box {
    background: var(--primaryLight);
    background-color: #00000052;
    background-blend-mode: multiply;
    background-position: center center;
    background-attachment: fixed;
}

.inside {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: var(--siteBorderRadius);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.inside h3 {
    margin-bottom: 1rem;
}

.inside ul {
    list-style: none;
    padding: 0;
}

.inside ul {
    li {
        position: relative;
        font-size: 16px;
        margin-bottom: 10px;

        i {
            color: var(--primaryColor);
        }
    }
}

.ww-bounce2 {
    animation: ww_bounce2 2s ease infinite;
}

@keyframes ww_bounce2 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}