.scorecard__container {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
}
.scorecard_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    /* gap: 20px; */
}
.scorecard_item > * {
    background-color: #252525;
    align-self: stretch;
    display: flex;
    align-items: center;
    border-radius: var(--brad);
}
.scorecard_left {
    flex: 1 0 30%;
}
.scorecard_left {
    padding: 0 32px;
}
.scorecard_left {
    border-top: 1px solid #957bff;
    border-left: 1px solid #957bff;
    flex-direction: column;
    justify-content: center;
}
.scorecard_left > p {
    text-align: left;
    float: left;
    margin-right: auto;
}
.scorecard_left > p:first-child {
    padding-left: 14px;
    margin-bottom: 24px;
    position: relative;
    margin-left: 12px;
}
.scorecard_left > p:first-child::after {
    content: "";
    position: absolute;
    width: 124%;
    height: 164%;
    left: 0;
    top: -50%;
    transform: translateY(10%) translateX(-10%);
    background-color: transparent;
    border-radius: 50px;
    border: 1px solid #957bff;
}
.scorecard_left > p:first-child::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(45deg, #957bff 3%, #fe72a1 6%);

    /* background-color: var(--mColor); */
}
.scorecard_left > p:last-child {
    font-weight: 700;
    text-transform: uppercase;
}

.scorecard_right::after {
    background-color: #3a3a3a;
}
.scorecard_item:first-child > .scorecard_right::after {
    background-color: var(--mColor) !important;
}
.scorecard_right {
    flex: 1 0 70%;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px 30px 70px;
    position: relative;
}
.scorecard_right::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #3a3a3a 0%, #957bff 50%, #fe72a1 100%);
}
.scorecard_right::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    background: linear-gradient(to left, #3a3a3a 0%, #957bff 100%);
}
.scorecard_right_top {
}
.scorecard_right_top > p:first-child {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 300;
}
.scorecard_right_top > p:last-child {
    opacity: 0.7;
    font-size: 14px;
    font-weight: 300;
}
.scorecard_right_bottom {
    margin-top: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.scorecard_right_bottom > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.scorecard_right_bottom > div > div {
    margin-left: 24px;
}
.scorecard_right_bottom > div > div > p {
    font-weight: 700;
    width: max-content;
}
.scorecard_right_bottom > div > div > p:last-child {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.7;
}
.scorecard_right_bottom_btn {
    margin-top: auto;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(90deg, #957bff 0%, #fe72a1 100%);
    clip-path: polygon(10% 0%, 100% 0, 90% 100%, 0% 100%);
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.scorecard_right_bottom_btn:hover {
    scale: 1.1;
}
.scorecard_right_bottom_btn::after {
    content: none;
}

@media (max-width: 768px) {
    .scorecard_item {
        flex-direction: column;
    }
    .scorecard_right_bottom {
        flex-direction: column;
        gap: 24px;
    }
    .scorecard_right_bottom > * {
        /* width: 60%; */
        margin-right: auto;
    }
    .scorecard_right_bottom > p {
        font-size: 18px !important;
    }
    .scorecard_right_bottom_btn {
        width: 100%;
    }
    .scorecard_left {
        padding: 20px 32px;
    }
}
