body {
    position: relative;
}

.home {
    .header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        min-height: 0;
        z-index: 100;

        perspective: 10000px;
        transform-style: preserve-3d;

        -webkit-transition: all .8s ease;
        -moz-transition: all .8s ease;
        transition: all .8s ease;

        .navbar-header {
            height: auto;
            .site-logo { 
                img {
                    display: block;
                    width: 170px;

                    -webkit-transition: all .5s ease;
                    -moz-transition: all .5s ease;
                    transition: all .5s ease;
                }
            }
            .left,
            .right {
                -webkit-transition: all .5s ease;
                -moz-transition: all .5s ease;
                transition: all .5s ease;
            }
            .right {
                > .list-inline {
                    -webkit-transition: all .5s ease;
                    -moz-transition: all .5s ease;
                    transition: all .5s ease;
                    li {
                        display: inline-block;
                        vertical-align: middle;
                        a {
                            line-height: 1;
                        }
                    }
                }
            }
        }
        .navbar-nav {
            > li {
                &:hover {
                    a {
                        color: #3e3e3e;
                        background-color: #eee;
                    }
                }
                >  a {
                    -webkit-transition: all .5s ease;
                    -moz-transition: all .5s ease;
                    transition: all .5s ease;
                }
            }
        }

        .nav-menu {
            float: left;
            width: 100%;
             
            -webkit-transition: all .8s ease;
            -moz-transition: all .8s ease;
            transition: all .8s ease;
        }

        &.header-scale {
            .navbar-header { 
                .site-logo {
                    img {
                        width: 100px;
                    }
                }
                .left, 
                .right {
                    height: 50px;
                }
                .right {
                    > .list-inline {
                        margin-top: 12px;
                    }
                }
            }
            .nav-menu {
                li {
                    a {
                        font-size: 13px;
                        padding: 10px 15px;
                    }
                }
            }
        } 
    }
}
@media (min-width: 1024px) {
    .home .header {
        height: 130px;
    }
}

.header-secound {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;

    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;

    &.header-hide {
        opacity: 0;
        pointer-events: none;
        
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}



@media (min-width: 1024px) {
    #fullPage {
        .section-2,
        .section-3,
        .section-4,
        .section-5, 
        .section-6, 
        .section-7, 
        .section-8, 
        .section-9,  
        .section-10 {
            .fp-tableCell > div[class*=section] {
                height: 100vh;
                margin: 0;
                
                display: -webkit-flex;
                display: -moz-flex;
                display: -ms-flex;
                display: -o-flex;
                display: flex;

                -webkit-align-items: center;
                -moz-align-items: center;
                align-items: center;

                -webkit-align-content: center;
                -moz-align-content: center;
                align-content: center;
            } 
        }
    }
    .section-2 {
        .section-inner {
            margin-top: 70px;
        }
    }
    .section-3 {
        .section-inner {
            margin-top: 70px;
        }
    }
    .section-4 {
        .section-inner {
            margin-top: 77px;
        }
    }
    .section-5 {
        .section4 { 
            > div {
                margin: 84px auto 0;
                width: 100%;
            } 
            .section-title {
                margin-top: 20px;
                margin-bottom: 5px;
                display: block;
                font-size: 25px;
                color: #ed2224;
                text-transform: uppercase;
                text-align: center;
                font-weight: 600;
            }
            .product-items {
                position: relative;
                height: 460px;
                .image {
                    position: absolute;
                    z-index: 10;
                    overflow: hidden;

                    -webkit-transition: all .4s ease;
                    -moz-transition: all .4s ease;
                    transition: all .4s ease;
                    &:hover {
                        -webkit-transform: scale(1.1,1.1);
                        -moz-transform: scale(1.1,1.1);
                        transform: scale(1.1,1.1);
                    }
                    img {
                        display: block;
                        max-width: 100%;
                    }
                    &:nth-of-type(1) {
                        margin-top: 6%;
                        left: 19.7%;
                        right: 68%;
                    }
                    &:nth-of-type(2) {
                        margin-top: 23.3%;
                        left: 21.7%;
                        right: 61%;
                    }
                    &:nth-of-type(3) {
                        margin-top: 5.6%;
                        left: 31.7%;
                        right: 61%;
                    }
                    &:nth-of-type(4) {
                        margin-top: 1.6%;
                        left: 39.7%;
                        right: 32%;
                    }
                    &:nth-of-type(5) {
                        margin-top: 18.6%;
                        left: 36.3%;
                        right: 48%;
                    }
                    &:nth-of-type(6) {
                        margin-top: 20.6%;
                        left: 51.3%;
                        right: 39%;
                    }
                    &:nth-of-type(7) {
                        margin-top: 14.6%;
                        left: 58.3%;
                        right: 14%;
                    }
                }
            }
        }
    }
    .section-6 {
        .section-inner {
            margin-top: 87px;
            max-width: 900px;
            .item {
                max-width: 430px;
            }
        }
    }
    .section-7 {
        .section-inner {
            margin-top: 40px;
        }
    }
    .section-9 {
        position: relative;
        .container {
            padding: 10px 10px 0;
        }
        .section9 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10;

            display: block !important;
            height: auto !important;
            background-color: #fff;
        }
        .section8 {
            .section-title {
                font-weight: 600;
                font-size: 25px;
                color: #ed2224;
                margin: 35px 0 23px;
                text-transform: uppercase;
                text-align: center;
            }
            .news-slide {

            }
            .swiper-pagination-bullet-active { 
                background-color: #ed2224;
            }
        }
        .section-inner {
            margin-top: 10px;
        }
    }
    .section-10 {
        .section-inner {
            margin-top: 68px;
        }
        .footer {
            height: 100%;
            .section1 {
                max-width: 388px;
                .product-length {
                    font-size: 60px;
                }
            }
            .section2 ul li {
                height: 136px;
            }
            .section2 ul li .image img {
                max-height: 28px;
            }
            .section2 ul li .text h1 {
                font-size: 30px; 
            }
            .section3 .left p {
                font-size: 12px;
                margin-bottom: 5px;
            }
            .section3 .right {
                padding-top: 15px;
            }
        }
    }
}



@-webkit-keyframes imageScaleAnimation {
	from { transform: none; }
	50% { transform: scale(1.3); }
	to { transform: none; }
}
@-moz-keyframes imageScaleAnimation {
	from { transform: none; }
	50% { transform: scale(1.3); }
	to { transform: none; }
}
@keyframes imageScaleAnimation {
	from { transform: none; }
	50% { transform: scale(1.3); }
	to { transform: none; }
} 

.home-banner {
    overflow: hidden;
    background-image: none !important;
    .banner-item {
        overflow: hidden;
        img {
            min-width: 100%;
            min-height: 100%;
            max-width: none;
            margin: 0 auto;

            -webkit-animation: imageScaleAnimation 50s infinite;
            -moz-animation: imageScaleAnimation 50s infinite;
            animation: imageScaleAnimation 50s infinite;
        }
    }
}


.news-slide {
    padding-bottom: 50px;
}


.news-thumbnail {
    .image {
        display: block;
        height: 180px;
        background-color: #fff;
        background-size: cover;
        background-position: center center;
    }
    .text {
        .title {
            display: block;
            margin-top: 20px;
            margin-bottom: 10px;
            font-size: 14px;
            line-height: 20px;
            font-weight: 600;
            height: 56px;
            overflow: hidden;
            text-transform: uppercase;
            a {
                color: #ed2224;
                text-decoration: none;
                &:hover {
                    text-decoration: none;
                }
            }
        }
        .excerpt {
            display: block;
            margin-bottom: 10px;
            font-size: 13px;
            height: 55px;
            overflow: hidden;
            color: #3e3e3e;
            text-align: justify;
        }
        .readmore {
            display: block;
            text-decoration: none;
            background-color: #ed1c24;
            text-align: center;
            color: #fff;
            text-transform: uppercase;
            padding: 6px 10px 2px; 
        }
    }
}


.footer {
    .section1 ,
    .section3 ,
    .section2 {
        margin: 0;
        display: block;
        height: auto;
        background-image: none;
        h3, h1 {
            color: #fff;
        }
    }
}

#fp-nav {
    position: fixed;
    top: 50%;
    left: 20px;
    z-index: 100;
    ul {
        padding-left: 0;
        width: 20px;
        text-align: center;
        list-style: none;
        li {
            margin-bottom: 0; 
        }
    }
    a {
        display: block;
        width: 12px;
        height: 12px; 
        border-radius: 50%;
        margin-bottom: 10px;
        background-color: rgba(237, 34, 36, .5);
        &.active {
            background-color: #f00;
        }
    }
}