/*about-style-start*/

    .about{
        background: #F7F7F7;
    }

    .about .position-item{
        padding: 15px 65px;
        background: #608A53;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        transition: transform 0.5s ease;
    }

    .about .position-item:hover{
        box-shadow: 0 0 10px 1px rgba(0,0,0,0.36);
        transform: translatey(10px)  translate(-50%,-50%);
    }

    .about .position-item .number{
        font-family: 'Oswald', sans-serif;
        font-size: 66px;
        font-weight: bold;
        white-space: nowrap;
        color: #fff;
    }

    .about .position-item .item-introduction{
        white-space: nowrap;
        display: block;
        font-weight: 600;
        letter-spacing: 1px;
        color: #fff;
    }

/*about-style-end*/

/*manufacturing-style-start*/

    .manufacturing .manufacturing-item {
        background: #FAFAFA;
        color: #666;
        border-bottom: 5px solid transparent;
        transition: all 0.5s ease;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    .manufacturing .manufacturing-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: #E4F2F3;
        transition: height 0.7s ease;
        z-index: -1;
    }

    .manufacturing .manufacturing-item::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 5px;
        background: #B6DD7A;
        transition: width 0.7s ease;
        z-index: 1;
    }

    .manufacturing .manufacturing-item:hover {
        box-shadow: #fff 0 0 10px 2px;
    }

    .manufacturing .manufacturing-item:hover::before {
        height: 100%;
    }

    .manufacturing .manufacturing-item:hover::after {
        width: 100%;
    }

    .manufacturing .manufacturing-item .item-title{
        font-size: 24px;
        color: #666;
    }

    .manufacturing .manufacturing-item .item-introduction{
        text-align: left;
        font-size: 14px;
        font-weight: 500;
    }

/*manufacturing-style-end*/

/*certifications-style-start*/

    .certifications{
        background: #E4D8CE;
    }

    .certifications-iconv-lists{
        margin: 0 auto;
        width: 100%;
    }

    .certifications-lists{
        width: 100%;
        padding: 65px 0;
        overflow-x: scroll;
        &::-webkit-scrollbar {
            display: none;
        }
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .certifications-lists .certifications-img{
        object-fit: contain;
    }

    .certifications-lists .certifications-item:nth-child(2n-1) {
        transform: scale(1.06);
        box-shadow: -6px 6px 0 1px RGBA(201, 177, 157, 0.6);
    }

    .certifications-lists .certifications-item:nth-child(2n){
        transform: scale(1.08);
        transition: transform 0.5s ease;
        position: relative;
        top: 40px;
        z-index: 100;
        box-shadow: -6px 6px 0 1px RGBA(201, 177, 157, 0.6);
    }

    .certifications-lists .certifications-item:nth-child(2n):hover{
        transform: scale(1.08) translateY(-10px);
    }

/*certifications-style-end*/

/*exhibitions-style-end*/

    .exhibitions .exhibitions-lists .table{
        background: #5F5F5F;
    }

    .exhibitions .exhibitions-lists .table td{
        position: relative;
        padding: 0;
        border: 15px solid #5F5F5F;
        overflow: hidden;
    }

    .exhibitions .exhibitions-lists .table td .exhibitions-introduction{
        font-family: 'Poppins', sans-serif;
        position: absolute;
        bottom: 0;
        background: rgba(0,0,0,0.4);
        width: 100%;
        color: #fff;
    }

    .exhibitions .exhibitions-lists .table td .exhibitions-img{
        transition: transform 0.7s ease;
    }

    .exhibitions .exhibitions-lists .table td .exhibitions-img:hover{
        transform: scale3D(1.08,1.08,1.08);
    }

/*exhibitions-style-end*/

/*our-team-style-end*/

    .our-team{
        background: #DDEDE5;
    }

    .our-team .our-team-item{
        overflow: hidden;
    }

    .our-team .our-team-item .our-team-img{
        overflow: hidden;
        transition: transform 0.7s ease;
    }

    .our-team .our-team-item:hover .our-team-img{
        transform: scale3D(1.08,1.08,1.08);
    }

    .our-team .our-team-item:hover{
        box-shadow: -8px 8px 10px 1px rgba(0,0,0,0.14);
    }

/*our-team-style-end*/

/*collaborate-top-style-end*/

    .collaborate-top{
        background: #BECFAA;
    }

    .collaborate-content{
        background: #F3F4F9;
        position: relative;
        top: -50px;
    }

    .collaborate-content .title{
        font-size: 70px;
        padding-top: 143px;
    }

    .collaborate-content .public-btn{
        font-family: 'roboto-bold', sans-serif;
        text-transform: none;
        font-size: 20px;
        background: #608A53;
        padding: 12px 30px;
        margin-bottom: 82px;
    }

/*collaborate-top-style-end*/

@media (max-width:1320px) {

    /*about-style-start*/

        .about .position-item{
            padding: 8px 45px;
        }

        .about .position-item .number{
            font-size: 60px;
        }

    /*about-style-end*/

    /*manufacturing-style-start*/

        .manufacturing .manufacturing-item .item-title{
            font-size: 20px;
            color: #666;
        }

    /*manufacturing-style-end*/

    /*exhibitions-style-end*/

        .exhibitions .exhibitions-lists .table td{
            border: 10px solid #5F5F5F;
        }

    /*exhibitions-style-end*/

    /*collaborate-top-style-end*/

        .collaborate-content .title{
            font-size: 60px;
        }

    /*collaborate-top-style-end*/

}

@media (max-width:1200px) {

    /*collaborate-top-style-end*/

        .collaborate-content .title{
            font-size: 40px;
            line-height: 50px;
        }

    /*collaborate-top-style-end*/

}

@media (max-width:992px) {

    /*about-style-start*/

        .about .position-item{
            padding: 8px 45px;
        }

        .about .position-item .number{
            font-size: 54px;
        }

    /*about-style-end*/

}

@media (max-width:768px) {

    /*exhibitions-style-end*/

        .exhibitions .exhibitions-lists .table td{
            border: 5px solid #5F5F5F;
        }

        .exhibitions .exhibitions-lists .table .exhibitions-introduction{
            font-size: 12px;
        }

    /*exhibitions-style-end*/
}

@media (max-width:571px) {

    /*about-style-start*/

        .about .position-item{
            padding: 5px 15px;
        }

        .about .position-item .number{
            font-size: 40px;
        }

        .about .position-item .item-introduction{
            font-size: 14px;
        }

    /*about-style-end*/
}