.shadow-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* opacity: 0.2; */
    background: var(--primary-color);
    z-index: -1;
    border-radius: 20px;
    transform: scale(1.1) skew(11deg, 176deg);
}

.shadow-card {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    display: inline-block;
    width: 75%;
    border-radius: 20%;
    position: relative;
}
