
section.webhook-usage .grid .box {
    position: relative;
}
section.webhook-usage .grid .item {
    position: relative;
    text-align: center;
    padding: 25px 35px;
}
section.webhook-usage h2 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-left: 0;
    margin-top: 10px;
}
section.webhook-usage h3 {
    font-size: 32px;
    margin: unset;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 400;
    line-height: 32px;
}
section.webhook-usage h3 span {
    color: var(--color);
    font-weight: 600;
}
section.webhook-usage p {
    margin: unset;
    font-size: 14px;
    line-height: 18px;
}
section.webhook-usage .grid {
    grid-template-columns: repeat(3, 1fr)
}
section.webhook-usage .image {
    display: inline-block;
    background: var(--color);
    color: black;
    width: 54px;
    height: 54px;
    text-align: center;
    font-size: 27px;
    line-height: 54px;
    border-radius: var(--border-radius);
}
section.webhook-usage .image img {
    width: 38px;
    height: 54px;
    object-fit: contain;
}
@media all and (max-width: 1140px) {

    section.webhook-usage h3 {
        font-size: 24px;
        line-height: 24px;
    }

}
@media all and (max-width: 960px) {

    section.webhook-usage .grid .item {
        padding: 30px 20px 30px;
    }

}
@media all and (max-width: 720px) {

    section.webhook-usage .grid .item {
        padding: 20px 10px;
    }

    section.webhook-usage h3 {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 5px;
    }
}
@media all and (max-width: 576px) {

    section.webhook-usage .grid .item {
        margin: unset;
        display: grid;
        grid-template-columns: 36px 1fr;
        text-align: left;
        padding: 5px 10px 10px;
        grid-gap: 15px;
    }

    section.webhook-usage .grid {
        grid-template-columns: 1fr;
        grid-gap: 5px;
    }
    section.webhook-usage .image {
        width: 36px;
        height: 36px;
        font-size: 20px;
        line-height: 36px;
        margin-top: 10px;
        position: relative;
        top: 3px;
    }
    section.webhook-usage .image img {
        height: 24px;
        width: 24px;
        position: relative;
        top: 5px;
    }
}