.why {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}
.why > h2,
.why > p {
    text-align: center;
}
.why > div:last-child {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.why > div:last-child > div {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    justify-content: start;
    padding: 25px 30px;
    background-color: var(--innerBg2);
    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:nth-child(3),
.why > div:last-child > div:nth-child(4) {
    flex: 0 0 40%;
}
.why > div:last-child > div > div:first-child {
    height: 100%;
}
.why > div:last-child > div > div > p:first-child {
    color: var(--textMain) !important;
    font-weight: 700 !important;
    font-size: 30px;
    margin-bottom: 0;
    
}

@media (max-width: 768px){
    .why > div:last-child > div > div > p:first-child{
        font-size: 24px;
    }
}
.why > div:last-child > div > div > p:last-child {
    margin-top: auto;
    margin-bottom: 0;
    color: var(--textMain) !important;
}
.why > div:last-child > div > div:last-child {
    background-color: var(--white30);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 100px;
}
.why > div:last-child > div > div:last-child img {
    height: 100%;
    object-fit: contain;
    z-index: 10;
}

@media (max-width: 768px) {
    .why {
        flex-direction: column;
    }
    .why > div:last-child > div {
        flex: 1 1 100% !important;
        align-items: center;
    }
    .why > div:last-child > div > div:last-child {
        max-width: 80px;
        min-width: 80px;
        max-height: 80px;
        min-height: 80px;
    }

    .why > div:last-child > div > div > p{
        text-align: center;
        font-size: 22px;
    }

    .why > div:last-child > div > div > h3{
        text-align: center;
    }

    .why > div:last-child > div > div:last-child img {
    height: 60%;
    object-fit: contain;
    z-index: 10;
}
}
