.why-paytech {
    padding: 120px 0;
}

.why-paytech .section-title {
    margin-bottom: 80px;
}

.why-paytech__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-paytech__wrapper.-triple {
    grid-template-columns: repeat(3, 1fr);
}


.why-paytech-card {
    border-radius: 16px;
    border: 1px solid var(--shark-shark-100, #E4E7E9);
    background: var(--white, #FFF);
    padding: 40px;
}

.why-paytech-card .icon {
    height: 80px;
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.why-paytech-card .icon img {
    max-height: 32px;
    width: 100%;
    aspect-ratio: 1/1;
}

.why-paytech-card .title {
    margin-bottom: 24px;
}

.why-paytech-card .text {
    color: var(--shark-shark-350)
}


@media screen and (max-width: 1100px) {
    .why-paytech {
        padding: 80px 0;
    }

    .why-paytech .section-title {
        margin-bottom: 40px;
    }

    .why-paytech__wrapper, .why-paytech__wrapper.-triple {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-paytech-card {
        padding: 16px;
    }

    .why-paytech-card .icon {
        height: 56px;
        width: 56px;
        margin-bottom: 64px;
    }

    .why-paytech-card .icon img {
        max-height: 23px;
    }

    .why-paytech-card .title {
        margin-bottom: 16px;
    }

}