.information {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 100px;
    margin-bottom: 50px;
}

.information .title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
}

.product-list img {
    width: 182px;
    height: 182px;
    transition: 300ms;
}

.product-list img:hover {
    transform: scale(1.5);
}

.product-list h2 {
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
}

.product-list ul li {
    float: left;
    width: 31.3333%;
    text-align: center;
    margin-bottom: 60px;
    animation: slideUp 2s;
}

.product-list ul li {
    animation: slideUp 2s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
    }
}

.product-list ul li a {
    color: #4d4d4d;
}

.product-list ul li a:hover {
    color: #000;
}

.product-list .portfolio-img {
    overflow: hidden;
    margin-bottom: 30px;
}