.card-custom {
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
    border-radius: 3px;
}

.card-title{
    margin-top:1rem;
}

.card-body{
    overflow-y: auto;
}

.card-custom-img {
    height: 200px;
    min-height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    border-color: inherit;
    background-image: url(triangles.svg);
}

.card-custom-img::after {
    position: absolute;
    content: '';
    top: 161px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-top-width: 40px;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 545px;
    border-left-width: calc(575px - 5vw);
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: inherit;
}

.card-custom-avatar i {
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
    position: absolute;
    top: 6.5rem;
    left: 1.25rem;
    width: 6.25rem;
    height: 6.25rem;
    text-align: center;
    line-height: 6.25rem;
    font-size: 3rem;
    color: var(--bs-purple);
    background:var(--bs-white);
}

.card-footer{
    background: inherit;
    border-color: inherit;
}