.container1 {
    width: 100%;
    height: 380px;
    background-image: url("/images/product/productHeaderImage.png");
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: left;
    overflow: hidden;
    transition: ease-in-out 2500ms;
}

.container1 h2:before {
    display: block;
    content: '';
    width: 30%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 47%;
    right: 0;
    opacity: .5;
}

.container1 h2:after {
    display: block;
    content: '';
    width: 30%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 47%;
    left: 0;
    opacity: .5;
}

.box1 {
    position: relative;
    width: 1000px;
    height: 380px;
    margin: 0 auto;
}

.productText {
    width: 100%;
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    line-height: 360px;
    color: #ffffff;
    letter-spacing: 5.5px;
}

.content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: block;
    list-style: none;
    padding-left: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.productBigTitle {
    width: calc(100% / 5);
    float: left;
    list-style: none;
}

.inProductBigTitle {
    display: block;
    width: 100%;
    padding: 15px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    background-color: rgba(117, 111, 111, 0.5);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    text-align: center;
}

.inProductBigTitle:hover{
    background-color: #01adf1;
}

.inProductBigTitleOn {
    display: block;
    width: 100%;
    padding: 15px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    background-color: #01adf1;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    text-align: center;
}

@media only screen and (max-width: 480px) {
    .container1{
        height: 170px;
    }

    .container2{
        padding-top: 0 !important;
    }

    .box1{
        width: 100%;
        height: 170px;
    }

    .productText{
        font-size: 22px;
        line-height: 130px;
    }

    .container1 h2:before{
        display: none;
    }

    .container1 h2:after{
        display: none;
    }

    .categoryMenu{
        font-size: 13px;
    }


}