.stamping-produce {
    width: 100%;
    padding: 0 0 70px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center
}

.stamping-produce .produce__content {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    text-align: center
}

.stamping-produce .produce__title {
    font-weight: 500;
    color: #333333;
    margin-bottom: 20px
}

.stamping-produce .produce__description {
    font-weight: 400;
    color: #333333;
    line-height: 30px;
    margin-bottom: 40px
}

.stamping-produce .produce__list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 30px 30px
}

.stamping-produce .produce__item {
    width: calc(100% / 3 - 20px);
    max-width: 446px;
    background: #FAFAFA;
    padding: 20px 35px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.stamping-produce .produce__item.active {
    background: #E0191E;
    padding-top: 55px;
    padding-bottom: 55px
}

.stamping-produce .produce__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px
}

.stamping-produce .produce__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.stamping-produce .produce__item-title {
    font-weight: 400;
    font-size: 24px;
    color: #E0191E;
    margin-bottom: 20px
}

.stamping-produce .produce__item-description {
    font-weight: 400;
    color: #333333;
    line-height: 30px
}

.stamping-produce .produce__item.active .produce__item-description {
    color: #FFFFFF
}

.stamping-materials {
    width: 100%;
    padding: 70px 0 70px;
    margin-bottom: 70px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden
}

.stamping-materials .materials__background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.stamping-materials .materials__background img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.stamping-materials .materials__content {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1
}

.stamping-materials .materials__title {
    font-weight: 500;
    color: #E0191E;
    margin-bottom: 40px
}

.stamping-materials .materials__description {
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px
}

@media screen and (max-width:760px) {
    .stamping-produce .produce__list {
        flex-direction: column;
        align-items: center
    }

    .stamping-produce .produce__item {
        width: 100%
    }
}

@media screen and (min-width:760px) and (max-width:1020px) {
    .stamping-produce .produce__item {
        width: calc(100% / 2 - 15px)
    }
}

@media screen and (min-width:1020px) and (max-width:1350px) {
    .stamping-produce .produce__item {
        width: calc(100% / 2 - 15px)
    }
}