.topCard {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: var(--brad);
    overflow: hidden;
    gap: 32px;
    background-color: white;
}
.topCard .redGradBtn {
    filter: none;
}
.topCard > div {
    flex: 1 0 50%;
}
.topCard > div:first-child {
    flex: 1 1 30%;
    background-color: white;
    border-radius: var(--bradMed);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 244px;
}
.topCard > div:first-child img {
    object-fit: contain;
    width: 70%;
}

.topCard > div:last-child {
    flex: 1 1 107%;

    padding: 20px 34px 20px 0;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 24px;
}
.topCard > div:last-child > * {
    flex: 1 1 30%;
}

.topCard > div:last-child div:first-child {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.topCard > div:last-child div:first-child > h3 {
    /* color: var(--textP) !important; */
}
.topCard > div:last-child div:first-child > p:nth-child(2) {
    line-height: 130% !important;
    /* color: var(--textMain) !important; */
    font-weight: 500 !important;
}

.topCard > div:last-child div:nth-child(2) {
    max-width: 156px;
    margin-right: 60px;
    margin-left: 60px;
}
.topCard > div:last-child div:nth-child(2) ul {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 4px;
}
.topCard > div:last-child div:nth-child(2) ul:nth-child(2) {
    margin-bottom: 8px;
}
.topCard > div:last-child div:nth-child(2) ul li {
    height: 28px;
    width: 36px;
    border-radius: 2px;
    background-color: #dedede;
}

.topCard > div:last-child div:last-child {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 234px;
    max-width: 234px;
    align-items: center;
}
.topCard > div:last-child ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.topCard > div:last-child ul img {
    object-fit: contain;
}

@media (max-width: 768px) {
    .topCard {
        flex-direction: column;
        gap: 0;
    }
    .topCard > div:first-child {
        min-width: 244px;
        min-height: 260px;
    }
    .topCard > div:last-child {
        flex-direction: column;
        padding: 24px;
    }
    .topCard > div:last-child div:nth-child(2) {
        max-width: 156px;
        margin-right: 0;
        margin-left: 0;
    }
    .topCard > div:last-child div:last-child {
        max-width: 100%;
    }
}
