.why {
    display: flex;
    flex-direction: row;
    gap: 24px;
}
.why > div:last-child {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}
.why > div:last-child > div {
    flex: 1 0 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background-color: var(--innerBg);
    border-radius: var(--brad);

    border: 4px solid transparent;
    background: linear-gradient(#252527, #252527) padding-box,
        linear-gradient(
                to right,
                rgba(134, 138, 255, 0.8) 0%,
                rgba(18, 203, 163, 0.8) 100%
            )
            border-box;
    background-clip: padding-box, border-box;
}
.why > div:last-child > div > div:first-child {
    height: 100%;
}
.why > div:last-child > div > div > p:first-child {
    color: var(--accent) !important;
    font-weight: 700 !important;
    font-size: 36px;
    margin-bottom: 0;
}
.why > div:last-child > div > div > p:last-child {
    margin-top: auto;
    margin-bottom: 0;
    color: white;
}
.why > div:last-child > div > div:last-child {
    background-color: var(--white30);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 115px;
    border-radius: 100px;
}
.why > div:last-child > div > div:last-child img {
    height: 38%;
    object-fit: contain;
    z-index: 10;
}

@media (max-width: 768px) {
    .why {
        flex-direction: column;
    }
    .why > div:last-child > div > div:last-child {
        max-width: 80px;
        min-width: 80px;
        max-height: 80px;
        min-height: 80px;
    }
}
