* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1340px;
    padding: 0 20px;
    margin: 0 auto;
}

.product-item-section {
    padding: 30px 0 50px;
}

.product-item-titel h2 {
    font-family: Univers LT Std;
    font-size: 22px;
    font-weight: 700;
    line-height: 26.4px;
    text-align: center;
    color: #2C2C69;
    padding-bottom: 23px;
}

.product-item-image {
    max-width: 600px;
    margin: 0 auto;
}

.product-item-image img {
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.product-item-image img:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.product-item-content {
    padding: 50px 0;
}

.product-item-content-titel h4 {
    font-family: Utopia Std;
    font-size: 22px;
    font-weight: 400;
    line-height: 26.4px;
    text-align: center;
    padding-bottom: 20px;
}

.product-item-content-detail p {
    font-family: Univers LT Std;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    padding: 20px 0;
}

.product-item-table {
    padding:30px;
    max-width: 1440px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th {
    border: 1px solid rgba(44, 44, 105, 0.2);
    padding: 8px;
    width: 240px;
    font-family: Univers LT Std;
    font-size: 22px;
    font-weight: 400;
    line-height: 26.4px;
    text-align: left;
}

td {
    /* border-top: 1px solid rgba(44, 44, 105, 0.2); */
    border: 1px solid rgba(44, 44, 105, 0.2);
    padding: 8px;
    font-family: Univers LT Std;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: rgba(0, 0, 0, 0.7);
}

td img{
    width: 100%;
    max-width: 250px;
}

/* .first th {
    border-top: none;
}

.first td {
    border-top: none;
} */
.w-640px th{
    width: 485px;
}

.table-titel h3 {
    font-family: Univers LT Std;
    font-size: 22px;
    font-weight: 400;
    line-height: 26.4px;
    text-align: center;
    padding: 15px 0;
    color: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(44, 44, 105, 0.2);
}

@media (max-width:700px) {
    th {
        width: 100px;
        font-size: 18px;
    }
    td {
        font-size: 16px;
    }
    .w-640px th{
        width: 240px;
    }
    .ammonium-content {
        padding: 0;
    }

    .ammonium-table {
        padding: 0;
    }

}