            @keyframes accslideInUp {
                0% {
                    opacity: 0;
                    -webkit-transform: translateY(100px);
                    -moz-transform: translateY(100px);
                    -ms-transform: translateY(100px);
                    -o-transform: translateY(100px);
                    transform: translateY(100px);
                }
                100% {
                    opacity: 1;
                    -webkit-transform: translateY(0px);
                    -moz-transform: translateY(0px);
                    -ms-transform: translateY(0px);
                    -o-transform: translateY(0px);
                    transform: translateY(0px);
                }
            }
            
            .header_section {
                height: 80%;
            }
            
            .header_content {
                background: no-repeat center;
                background-size: cover;
                overflow: hidden;
            }
            
            .header_content_wrap {
                width: 700px;
                margin: auto;
                text-align: center;
            }
            
            .header_content_wrap h2 {
                text-align: center;
                font-family: montserrat_thin, sans-serif;
                margin-top: 100px;
                text-shadow: none;
                font-size: 40px;
                z-index: 1;
                margin-bottom: 0;
            }
            
            .header_content_wrap p {
                background: none;
                padding: 0;
                font-family: montserrat_thin, sans-serif;
                color: #777;
            }
            
            .header_content_wrap p:before {
                display: none;
            }
            
            .slide_anim {
                z-index: 0;
            }
            
            @keyframes triangle1Rotate {
                0% {
                    -webkit-transform: scale(1.1) rotate(34deg) translate(0, 0);
                    -moz-transform: scale(1.1) rotate(34deg) translate(0, 0);
                    -ms-transform: scale(1.1) rotate(34deg) translate(0, 0);
                    -o-transform: scale(1.1) rotate(34deg) translate(0, 0);
                    transform: scale(1.1) rotate(34deg) translate(0, 0);
                }
                100% {
                    -webkit-transform: scale(1) rotate(394deg) translate(0px, 0px);
                    -moz-transform: scale(1) rotate(394deg) translate(0px, 0px);
                    -ms-transform: scale(1) rotate(394deg) translate(0px, 0px);
                    -o-transform: scale(1) rotate(394deg) translate(0px, 0px);
                    transform: scale(1) rotate(394deg) translate(0px, 0px);
                }
            }
            
            @keyframes triangle2Rotate {
                0% {
                    -webkit-transform: scale(0.5) rotate(300deg) translate(0, 0);
                    -moz-transform: scale(0.5) rotate(300deg) translate(0, 0);
                    -ms-transform: scale(0.5) rotate(300deg) translate(0, 0);
                    -o-transform: scale(0.5) rotate(300deg) translate(0, 0);
                    transform: scale(0.5) rotate(300deg) translate(0, 0);
                }
                100% {
                    -webkit-transform: scale(0.6) rotate(-60deg) translate(0px, 0px);
                    -moz-transform: scale(0.6) rotate(-60deg) translate(0px, 0px);
                    -ms-transform: scale(0.6) rotate(-60deg) translate(0px, 0px);
                    -o-transform: scale(0.6) rotate(-60deg) translate(0px, 0px);
                    transform: scale(0.6) rotate(-60deg) translate(0px, 0px);
                }
            }
            
            @keyframes triangle3Rotate {
                0% {
                    -webkit-transform: scale(0.3) rotate(-60deg) translate(0, 0);
                    -moz-transform: scale(0.3) rotate(-60deg) translate(0, 0);
                    -ms-transform: scale(0.3) rotate(-60deg) translate(0, 0);
                    -o-transform: scale(0.3) rotate(-60deg) translate(0, 0);
                    transform: scale(0.3) rotate(-60deg) translate(0, 0);
                }
                100% {
                    -webkit-transform: scale(0.4) rotate(300deg) translate(0px, 0px);
                    -moz-transform: scale(0.4) rotate(300deg) translate(0px, 0px);
                    -ms-transform: scale(0.4) rotate(300deg) translate(0px, 0px);
                    -o-transform: scale(0.4) rotate(300deg) translate(0px, 0px);
                    transform: scale(0.4) rotate(300deg) translate(0px, 0px);
                }
            }
            
            .active_slide #triangle1 {
                animation: triangle1Rotate 15s infinite linear;
            }
            
            .active_slide .triangle_inner {
                animation: innerTriangleAnim 15s infinite linear;
            }
            
            .active_slide #triangle2 {
                animation: triangle2Rotate 15s infinite linear;
                bottom: 5%;
                left: 50%;
            }
            
            .active_slide #triangle3 {
                animation: triangle2Rotate 15s infinite linear;
                top: 30%;
                left: 5%;
            }
            
            .active_slide #triangle4 {
                animation: triangle3Rotate 15s infinite linear;
                left: 40%;
                top: 5%;
            }
            
            .active_slide #triangle5 {
                animation: triangle3Rotate 15s infinite linear;
                right: 10%;
                bottom: 15%;
            }
            
            .active_slide #triangle6 {
                animation: triangle1Rotate 15s infinite linear;
            }
            
            .banner_wrap {
                z-index: 1;
                width: 500px;
                margin: 100px auto;
                position: relative;
            }
            
            .square_outer {
                perspective: 80px;
                margin-top: 150px;
            }
            
            .square_wrap {
                display: flex;
                flex-wrap: wrap;
                -webkit-transform: rotateX(16deg);
                -moz-transform: rotateX(16deg);
                -ms-transform: rotateX(16deg);
                -o-transform: rotateX(16deg);
                transform: rotateX(16deg);
                justify-content: center;
            }
            
            .square {
                width: 200px;
                background-color: rgba(0, 0, 0, 0.2);
                height: 70px;
                margin: 10px;
                -webkit-transition: all 0.7s;
                -moz-transition: all 0.7s;
                -ms-transition: all 0.7s;
                -o-transition: all 0.7s;
                transition: all 0.7s;
                box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
                cursor: pointer;
                border-top: 1px solid #8366a9;
                border-bottom: 1px solid #8eabf9;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
                background-position: 0 0, 100% 0;
                background-repeat: no-repeat;
                -webkit-background-size: 1px 100%;
                -moz-background-size: 1px 100%;
                background-size: 1px 100%;
                background-image: -webkit-linear-gradient(top, #8366a9 0%, #8eabf9 100%), -webkit-linear-gradient(top, #8366a9 0%, #8eabf9 100%);
                background-image: -moz-linear-gradient(top, #8366a9 0%, #8eabf9 100%), -moz-linear-gradient(top, #8366a9 0%, #8eabf9 100%);
                background-image: -o-linear-gradient(top, #8366a9 0%, #8eabf9 100%), -o-linear-gradient(top, #8366a9 0%, #8eabf9 100%);
                background-image: linear-gradient(to bottom, #8366a9 0%, #8eabf9 100%), linear-gradient(to bottom, #8366a9 0%, #8eabf9 100%);
            }
            
            .square:hover,
            .square.active {
                -webkit-transform: translate(-10px, -10px) scale(1.1);
                -moz-transform: translate(-10px, -10px) scale(1.1);
                -ms-transform: translate(-10px, -10px) scale(1.1);
                -o-transform: translate(-10px, -10px) scale(1.1);
                transform: translate(-10px, -10px) scale(1.1);
                box-shadow: 7px 15px 5px 1px rgba(0, 0, 0, 0.2);
            }
            
            .square:nth-child(2n):hover,
            .square:nth-child(2n).active {
                -webkit-transform: translate(-10px, -10px) scale(1.1);
                -moz-transform: translate(-10px, -10px) scale(1.1);
                -ms-transform: translate(-10px, -10px) scale(1.1);
                -o-transform: translate(-10px, -10px) scale(1.1);
                transform: translate(-10px, -10px) scale(1.1);
            }
            
            .square:nth-child(2) {
                border-top: 1px solid #60c5f3;
                border-bottom: 1px solid #80abef;
                background-image: -webkit-linear-gradient(top, #60c5f3 0%, #80abef 100%), -webkit-linear-gradient(top, #60c5f3 0%, #80abef 100%);
                background-image: -moz-linear-gradient(top, #60c5f3 0%, #80abef 100%), -moz-linear-gradient(top, #60c5f3 0%, #80abef 100%);
                background-image: -o-linear-gradient(top, #60c5f3 0%, #80abef 100%), -o-linear-gradient(top, #60c5f3 0%, #80abef 100%);
                background-image: linear-gradient(to bottom, #60c5f3 0%, #80abef 100%), linear-gradient(to bottom, #60c5f3 0%, #80abef 100%);
            }
            
            .square:nth-child(3) {
                border-top: 1px solid #4ed5aa;
                border-bottom: 1px solid #58badd;
                background-image: -webkit-linear-gradient(top, #4ed5aa 0%, #58badd 100%), -webkit-linear-gradient(top, #4ed5aa 0%, #58badd 100%);
                background-image: -moz-linear-gradient(top, #4ed5aa 0%, #58badd 100%), -moz-linear-gradient(top, #4ed5aa 0%, #58badd 100%);
                background-image: -o-linear-gradient(top, #4ed5aa 0%, #58badd 100%), -o-linear-gradient(top, #4ed5aa 0%, #58badd 100%);
                background-image: linear-gradient(to bottom, #4ed5aa 0%, #58badd 100%), linear-gradient(to bottom, #4ed5aa 0%, #58badd 100%);
            }
            
            .square:nth-child(4) {
                border-top: 1px solid #fb60e0;
                border-bottom: 1px solid #f95d9a;
                background-image: -webkit-linear-gradient(top, #fb60e0 0%, #f95d9a 100%), -webkit-linear-gradient(top, #fb60e0 0%, #f95d9a 100%);
                background-image: -moz-linear-gradient(top, #fb60e0 0%, #f95d9a 100%), -moz-linear-gradient(top, #fb60e0 0%, #f95d9a 100%);
                background-image: -o-linear-gradient(top, #fb60e0 0%, #f95d9a 100%), -o-linear-gradient(top, #fb60e0 0%, #f95d9a 100%);
                background-image: linear-gradient(to bottom, #fb60e0 0%, #f95d9a 100%), linear-gradient(to bottom, #fb60e0 0%, #fb60e0 100%);
            }
            
            .banner_data {
                position: absolute;
                width: 100%;
            }
            
            .square_info_wrap {
                position: absolute;
                width: 250px;
                left: -220px;
                top: -70px;
                opacity: 0;
                -webkit-transition: all 0.7s;
                -moz-transition: all 0.7s;
                -ms-transition: all 0.7s;
                -o-transition: all 0.7s;
                transition: all 0.7s;
                -webkit-transform: translateY(10px);
                -moz-transform: translateY(10px);
                -ms-transform: translateY(10px);
                -o-transform: translateY(10px);
                transform: translateY(10px);
            }
            
            .square_info_wrap.active {
                opacity: 1;
                -webkit-transform: translateY(0px);
                -moz-transform: translateY(0px);
                -ms-transform: translateY(0px);
                -o-transform: translateY(0px);
                transform: translateY(0px);
            }
            
            .square_info_wrap:before {
                content: '';
                position: absolute;
                width: 30px;
                border-bottom: 2px solid #ef0d33;
            }
            
            .square_info_wrap .dot {
                position: absolute;
                width: 15px;
                height: 15px;
                border-radius: 50%;
                background: #fff;
                top: 111%;
                right: -90px;
                margin-top: -13px;
                z-index: 1;
                padding: 3px;
                box-sizing: border-box;
                background: rgba(255, 255, 255, 0.15);
                background: -moz-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
                background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(255, 255, 255, 0.15)), color-stop(100%, rgba(255, 255, 255, 0)));
                background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
                background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
                background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
                background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
                filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1);
            }
            
            .square_info_wrap .dot:after {
                content: '';
                position: absolute;
                width: 8px;
                height: 8px;
                border-radius: 50%;
                opacity: 0.9;
                background: rgba(131, 102, 169, 1);
                background: -moz-radial-gradient(center, ellipse cover, rgba(131, 102, 169, 1) 0%, rgba(142, 170, 249, 0.5) 100%);
                background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(131, 102, 169, 1)), color-stop(100%, rgba(142, 170, 249, 0.5)));
                background: -webkit-radial-gradient(center, ellipse cover, rgba(131, 102, 169, 1) 0%, rgba(142, 170, 249, 0.5) 100%);
                background: -o-radial-gradient(center, ellipse cover, rgba(131, 102, 169, 1) 0%, rgba(142, 170, 249, 0.5) 100%);
                background: -ms-radial-gradient(center, ellipse cover, rgba(131, 102, 169, 1) 0%, rgba(142, 170, 249, 0.5) 100%);
                background: radial-gradient(ellipse at center, rgba(131, 102, 169, 1) 0%, rgba(142, 170, 249, 0.5) 100%);
                filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#8366a9', endColorstr='#8eaaf9', GradientType=1);
            }
            
            .square_info_wrap h4 {
                background: none;
                padding: 0;
                position: relative;
                font-family: montserrat_light, sans-serif;
                font-size: 14px;
                line-height: 14px;
                font-weight: normal;
                text-transform: uppercase;
                margin-top: 10px;
            }
            
            .square_info_wrap h4:after {
                content: '';
                position: absolute;
                height: 110px;
                width: 1px;
                background: rgba(255, 255, 255, 0.2);
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                -o-transform: rotate(-45deg);
                transform: rotate(-45deg);
                right: -40px;
                top: 100%;
                margin-top: -10px;
            }
            
            .square_info_wrap h4:before {
                content: '';
                position: absolute;
                bottom: -7px;
                height: 1px;
                width: 100%;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 0;
                left: 0px;
                top: auto;
            }
            
            .square_info_wrap p {
                color: #939393;
                background: none;
                padding: 0;
                margin-right: 50px;
                font-size: 11px;
                line-height: 14px;
                margin-bottom: 10px;
            }
            
            .square_info_wrap p:before {
                display: none;
            }
            
            .square_info_wrap .btn {
                text-transform: uppercase;
                padding: 5px 10px;
                font-size: 10px;
                line-height: 12px;
                margin: 0;
                font-family: montserrat_light, sans-serif;
                height: auto;
                width: auto;
                border: 1px solid #666;
                color: #666;
                cursor: default;
            }
            
            .square_info_wrap.active .btn {
                cursor: pointer;
            }
            
            .square_info_wrap:nth-child(2n) {
                left: auto;
                right: -220px;
                text-align: right;
            }
            
            .square_info_wrap:nth-child(2n):before {
                right: 0;
                left: auto;
            }
            
            .square_info_wrap:nth-child(2n) .dot {
                left: -90px;
                right: auto;
            }
            
            .square_info_wrap:nth-child(2n) .dot:after {
                margin-left: -8px;
                background: rgba(96, 197, 243, 1);
                background: -moz-radial-gradient(center, ellipse cover, rgba(96, 197, 243, 1) 0%, rgba(128, 171, 239, 0) 100%);
                background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(96, 197, 243, 1)), color-stop(100%, rgba(128, 171, 239, 0)));
                background: -webkit-radial-gradient(center, ellipse cover, rgba(96, 197, 243, 1) 0%, rgba(128, 171, 239, 0) 100%);
                background: -o-radial-gradient(center, ellipse cover, rgba(96, 197, 243, 1) 0%, rgba(128, 171, 239, 0) 100%);
                background: -ms-radial-gradient(center, ellipse cover, rgba(96, 197, 243, 1) 0%, rgba(128, 171, 239, 0) 100%);
                background: radial-gradient(ellipse at center, rgba(96, 197, 243, 1) 0%, rgba(128, 171, 239, 0) 100%);
                filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#60c5f3', endColorstr='#80abef', GradientType=1);
            }
            
            .square_info_wrap:nth-child(2n) h4:after {
                right: auto;
                left: -40px;
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                transform: rotate(45deg);
            }
            
            .square_info_wrap:nth-child(2n) h4:before {
                left: auto;
                right: 0px;
            }
            
            .square_info_wrap:nth-child(2n) p {
                margin-right: 0;
                margin-left: 50px;
            }
            
            .square_info_wrap:nth-child(3) {
                left: -280px;
                top: 40px;
            }
            
            .square_info_wrap:nth-child(3) .dot:after {
                background: rgba(78, 213, 170, 1);
                background: -moz-radial-gradient(center, ellipse cover, rgba(78, 213, 170, 1) 0%, rgba(88, 186, 221, 0) 100%);
                background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(78, 213, 170, 1)), color-stop(100%, rgba(88, 186, 221, 0)));
                background: -webkit-radial-gradient(center, ellipse cover, rgba(78, 213, 170, 1) 0%, rgba(88, 186, 221, 0) 100%);
                background: -o-radial-gradient(center, ellipse cover, rgba(78, 213, 170, 1) 0%, rgba(88, 186, 221, 0) 100%);
                background: -ms-radial-gradient(center, ellipse cover, rgba(78, 213, 170, 1) 0%, rgba(88, 186, 221, 0) 100%);
                background: radial-gradient(ellipse at center, rgba(78, 213, 170, 1) 0%, rgba(88, 186, 221, 0) 100%);
                filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#4ed5aa', endColorstr='#58badd', GradientType=1);
            }
            
            .square_info_wrap:nth-child(4) {
                right: -280px;
                top: 40px;
            }
            
            .square_info_wrap:nth-child(4) .dot:after {
                background: rgba(251, 96, 225, 1);
                background: -moz-radial-gradient(center, ellipse cover, rgba(251, 96, 225, 1) 0%, rgba(249, 93, 153, 0) 100%);
                background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(251, 96, 225, 1)), color-stop(100%, rgba(249, 93, 153, 0)));
                background: -webkit-radial-gradient(center, ellipse cover, rgba(251, 96, 225, 1) 0%, rgba(249, 93, 153, 0) 100%);
                background: -o-radial-gradient(center, ellipse cover, rgba(251, 96, 225, 1) 0%, rgba(249, 93, 153, 0) 100%);
                background: -ms-radial-gradient(center, ellipse cover, rgba(251, 96, 225, 1) 0%, rgba(249, 93, 153, 0) 100%);
                background: radial-gradient(ellipse at center, rgba(251, 96, 225, 1) 0%, rgba(249, 93, 153, 0) 100%);
                filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#fb60e1', endColorstr='#f95d99', GradientType=1);
            }
            
            .industries_section {
                background: #f8f8f8;
                overflow: hidden;
                display: block;
                width: 100%;
                box-sizing: border-box;
                height: auto;
            }
            
            .industries_section h2 {
                font-size: 108px;
                padding-left: 120px;
                color: #e5e5e5;
            }
            .industries_section h1 {
                font-size: 80px;
                padding-left: 120px;
                color: #e5e5e5;
            }
            .industries_wrap {
                display: flex;
                margin: 20px 80px 20px 120px;
                justify-content: flex-start;
                flex-wrap: wrap;
            }
            .pro_owner{
                padding-right: 3%;
            }
            
            .industry_links {
                margin: 20px 3% 20px 0px;
                width: 30%;
                background: #fff;
                box-shadow: 0px 0px 10px 0px #ddd;
                padding: 30px 40px 50px 40px;
                box-sizing: border-box;
                -webkit-transition: all 0.8s;
                -moz-transition: all 0.8s;
                -ms-transition: all 0.8s;
                -o-transition: all 0.8s;
                transition: all 0.8s;
                cursor: pointer;
                position: relative;
                display: block;
            }
            
            .industry_links:hover {
                box-shadow: 0px 3px 10px 1px #ddd;
                -webkit-transform: translateY(-5px);
                -moz-transform: translateY(-5px);
                -ms-transform: translateY(-5px);
                -o-transform: translateY(-5px);
                transform: translateY(-5px);
            }
            
            .industry_links:nth-child(3n) {
                margin-right: 0px;
            }
            
            .industry_links.dummy {
                visibility: hidden;
            }
            /*.section_view .industry{*/
            /*animation: accslideInUp 0.9s forwards;*/
            /*animation-delay: 0.5s;*/
            /*}*/
            /*.section_view .industry:nth-child(2), .section_view .industry:nth-child(4){*/
            /*animation-delay: 0.8s;*/
            /*}*/
            /*.section_view .industry:nth-child(3), .section_view .industry:nth-child(5), .section_view .industry:nth-child(7){*/
            /*animation-delay: 1.1s;*/
            /*}*/
            /*.section_view .industry:nth-child(6),.section_view .industry:nth-child(8), .section_view .industry:nth-child(10){*/
            /*animation-delay: 1.4s;*/
            /*}*/
            /*.section_view .industry:nth-child(9),.section_view .industry:nth-child(11), .section_view .industry:nth-child(13){*/
            /*animation-delay: 1.7s;*/
            /*}*/
            /*.section_view .industry:nth-child(12),.section_view .industry:nth-child(14), .section_view .industry:nth-child(16){*/
            /*animation-delay: 2s;*/
            /*}*/
            
            .industry_links .icon {
                width: 100px;
                height: 100px;
                background: url("../images/play.png") no-repeat center;
                background-size: contain;
                /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.10);
    border-radius: 50%; */
            }
            
            .industry_links h3 {
                text-transform: uppercase;
                color: #191919;
                margin: 20px 0px 10px;
            }
            
            .industry_links p {
                color: #999;
                font-family: montserrat_light, sans-serif;
                font-size: 15px;
                text-align: left;
                line-height: 25px;
              
            }
            
            .btn_red {
                opacity: 1 !important;
            }
            
            .btn_red:after {
                display: none;
            }
            
            .detail_open {
                overflow: hidden !important;
            }
            
            .industry.show {
                transform: none;
            }
            
            .industry_detail_outer {
                position: fixed;
                top: 50%;
                left: 50%;
                width: 0%;
                height: 0;
                background: #fff;
                /*transition: all 0.8s;*/
                z-index: 100;
                display: none;
                overflow: hidden;
            }
            
            .industry_detail_outer.show {
                position: fixed;
                top: 50%;
                left: 50%;
                width: 100%;
                height: 100%;
                margin: 0;
                z-index: 1;
            }
            
            .detail_left {
                position: absolute;
                width: 40%;
                left: -40%;
                top: 0;
                height: 100%;
                -webkit-transition: all 0.6s;
                -moz-transition: all 0.6s;
                -ms-transition: all 0.6s;
                -o-transition: all 0.6s;
                transition: all 0.6s;
                background: url("../images/retail_bg.jpg") no-repeat center;
                background-size: cover;
                overflow: hidden;
            }
            
            .detail_right {
                position: absolute;
                width: 60%;
                height: 100%;
                overflow-y: scroll;
                overflow-x: hidden;
                top: 0;
                right: 0%;
                -webkit-transition: all 0.6s;
                -moz-transition: all 0.6s;
                -ms-transition: all 0.6s;
                -o-transition: all 0.6s;
                transition: all 0.6s;
                -webkit-overflow-scrolling: touch;
            }
            
            .industry_detail_outer.open .detail_left {
                left: 0;
            }
            
            .bg_anim {
                width: 100%;
                background: #f5f5f5;
                height: 100%;
                position: absolute;
                left: 0;
                -webkit-transition: all 0.8s;
                -moz-transition: all 0.8s;
                -ms-transition: all 0.8s;
                -o-transition: all 0.8s;
                transition: all 0.8s;
                transition-delay: 0.4s;
                -o-transition-delay: 0.4s;
                -ms-transition-delay: 0.4s;
                -moz-transition-delay: 0.4s;
                -webkit-transition-delay: 0.4s;
                z-index: 1;
            }
            
            .industry_detail_outer.open .bg_anim {
                left: 100%;
            }
            
            .industry_detail_outer.prevItem .bg_anim,
            .industry_detail_outer.nextItem .bg_anim {
                -webkit-transition: none;
                -moz-transition: none;
                -ms-transition: none;
                -o-transition: none;
                transition: none;
            }
            
            .detail_left_wrap {
                position: absolute;
                top: 25%;
                margin: 0px 50px;
                color: #fff;
                opacity: 0;
                -webkit-transition: all 0.8s;
                -moz-transition: all 0.8s;
                -ms-transition: all 0.8s;
                -o-transition: all 0.8s;
                transition: all 0.8s;
                transition-delay: 1s;
                -o-transition-delay: 1s;
                -ms-transition-delay: 1s;
                -moz-transition-delay: 1s;
                -webkit-transition-delay: 1s;
                -webkit-transform: translateY(60px);
                -moz-transform: translateY(60px);
                -ms-transform: translateY(60px);
                -o-transform: translateY(60px);
                transform: translateY(60px);
            }
            
            .industry_detail_outer.open .detail_left_wrap:first-child {
                opacity: 1;
                -webkit-transform: translateY(0px);
                -moz-transform: translateY(0px);
                -ms-transform: translateY(0px);
                -o-transform: translateY(0px);
                transform: translateY(0px);
            }
            
            .industry_detail_outer.nextItem .detail_left_wrap:first-child,
            .industry_detail_outer.prevItem .detail_left_wrap:first-child {
                -webkit-transition-delay: 0s;
                -moz-transition-delay: 0s;
                -ms-transition-delay: 0s;
                -o-transition-delay: 0s;
                transition-delay: 0s;
            }
            
            .industry_detail_outer.open .detail_left_wrap.hide {
                transition: none;
                -o-transition: none;
                -ms-transition: none;
                -moz-transition: none;
                -webkit-transition: none;
                -webkit-transition-delay: 0s;
                -moz-transition-delay: 0s;
                -ms-transition-delay: 0s;
                -o-transition-delay: 0s;
                transition-delay: 0s;
            }
            
            .industry_detail_outer.hide .detail_left_wrap {
                opacity: 0;
                -webkit-transform: translateY(60px);
                -moz-transform: translateY(60px);
                -ms-transform: translateY(60px);
                -o-transform: translateY(60px);
                transform: translateY(60px);
                -webkit-transition-delay: 0.5s;
                -moz-transition-delay: 0.5s;
                -ms-transition-delay: 0.5s;
                -o-transition-delay: 0.5s;
                transition-delay: 0.5s;
            }
            
            .detail_left_wrap .icon {
                width: 40px;
                height: 40px;
                background: url("../images/industries/retail.png") no-repeat center;
                background-size: contain;
            }
            
            .detail_left_wrap h2 {
                font-size: 36px;
                line-height: 48px;
                position: relative;
                margin: 10px 0;
                display: inline-block;
                cursor: pointer;
            }
            
            .detail_left_wrap h2:after {
                content: '';
                position: absolute;
                width: 30px;
                border-bottom: 3px solid #ef0d33;
                bottom: 0px;
                left: 0;
                -webkit-transition: all 0.6s;
                -moz-transition: all 0.6s;
                -ms-transition: all 0.6s;
                -o-transition: all 0.6s;
                transition: all 0.6s;
            }
            
            .detail_left_wrap h2:hover:after {
                width: 100%;
            }
            
            .detail_left_wrap p {
                font-family: montserrat_light, sans-serif;
                font-size: 12px;
                color: #ddd;
            }
            
            .detail_nav_wrap {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                display: flex;
                justify-content: space-between;
            }
            
            .detail_nav {
                color: #f5f5f5;
                text-transform: uppercase;
                font-size: 12px;
                margin: 20px;
                position: relative;
                font-family: montserrat_light, sans-serif;
                cursor: pointer;
            }
            
            .detail_nav:before {
                content: '';
                width: 10px;
                border-bottom: 2px solid #ef0d33;
                left: 0;
                position: absolute;
                top: -3px;
                -webkit-transition: all 0.6s;
                -moz-transition: all 0.6s;
                -ms-transition: all 0.6s;
                -o-transition: all 0.6s;
                transition: all 0.6s;
            }
            
            .detail_nav:hover:before {
                width: 100%;
            }
            
            .nav_next:before {
                left: auto;
                right: 0;
            }
            
            .nav_count {
                font-size: 16px;
                color: #f5f5f5;
                line-height: 64px;
                font-family: montserrat_light, sans-serif;
            }
            
            .detail_close {
                width: 25px;
                height: 25px;
                background: url("../images/close.png") no-repeat center;
                background-size: contain;
                position: absolute;
                top: 30px;
                right: 30px;
                cursor: pointer;
            }
            
            .detail_right_wrap {
                padding: 0px 0px 100px 0;
                opacity: 0;
                -webkit-transform: translateY(50px);
                -moz-transform: translateY(50px);
                -ms-transform: translateY(50px);
                -o-transform: translateY(50px);
                transform: translateY(50px);
                -webkit-transition: all 0.8s;
                -moz-transition: all 0.8s;
                -ms-transition: all 0.8s;
                -o-transition: all 0.8s;
                transition: all 0.8s;
                -webkit-transition-delay: 1.3s;
                -moz-transition-delay: 1.3s;
                -ms-transition-delay: 1.3s;
                -o-transition-delay: 1.3s;
                transition-delay: 1.3s;
                height: 100%;
            }
            
            .industry_detail_outer.open .detail_right_wrap:nth-child(1) {
                -webkit-transform: translateY(0px);
                -moz-transform: translateY(0px);
                -ms-transform: translateY(0px);
                -o-transform: translateY(0px);
                transform: translateY(0px);
                opacity: 1;
            }
            
            .industry_detail_outer.nextItem .detail_right_wrap:nth-child(1),
            .industry_detail_outer.prevItem .detail_right_wrap:nth-child(1) {
                -webkit-transition-delay: 0.1s;
                -moz-transition-delay: 0.1s;
                -ms-transition-delay: 0.1s;
                -o-transition-delay: 0.1s;
                transition-delay: 0.1s;
            }
            
            .industry_detail_outer.open .detail_right_wrap.hide {
                transition: none;
                -o-transition: none;
                -ms-transition: none;
                -moz-transition: none;
                -webkit-transition: none;
                -webkit-transition-delay: 0s;
                -moz-transition-delay: 0s;
                -ms-transition-delay: 0s;
                -o-transition-delay: 0s;
                transition-delay: 0s;
            }
            
            .industry_detail_outer.hide .detail_right_wrap {
                -webkit-transform: translateY(50px);
                -moz-transform: translateY(50px);
                -ms-transform: translateY(50px);
                -o-transform: translateY(50px);
                transform: translateY(50px);
                opacity: 0;
                -webkit-transition: all 0.1s;
                -moz-transition: all 0.1s;
                -ms-transition: all 0.1s;
                -o-transition: all 0.1s;
                transition: all 0.1s;
                transition-delay: 0s;
                -o-transition-delay: 0s;
                -ms-transition-delay: 0s;
                -moz-transition-delay: 0s;
                -webkit-transition-delay: 0s;
            }
            
            .detail_right_top {
                height: auto;
                padding: 180px 0px 50px;
                max-width: 400px;
                margin: auto;
                box-sizing: border-box;
            }
            
            .detail_right_top h1 {
                font-size: 160px;
                color: #f5f5f5;
                margin: 0;
                margin-left: -80px;
                white-space: nowrap;
            }
            
            .detail_right_top .tag {
                background: #ef0d33;
                padding: 7px 20px;
                color: #fff;
                display: inline-block;
                font-size: 16px;
                font-family: montserrat_light, sans-serif;
                letter-spacing: 1px;
            }
            
            .detail_right_top h2 {
                font-size: 60px;
                line-height: 60px;
                color: #000;
            }
            
            .detail_right_top p {
                color: #666;
                font-family: montserrat_light, sans-serif;
                text-align: justify;
            }
            
            .content_item {
                margin: 20px 0px 80px;
            }
            
            .content_item .icon {
                background: url('../images/screen.png') no-repeat center;
                background-size: contain;
                width: 40px;
                height: 40px;
                margin-bottom: 30px;
            }
            
            .detail_right_wrap h3 {
                text-transform: uppercase;
                color: #000;
                font-size: 30px;
            }
            
            .content_wrap {
                position: relative;
                overflow: hidden;
                background: #f2f2f2;
                padding: 50px 0px;
            }
            
            .slider_nav_wrap {
                position: absolute;
                left: 0;
                top: 0;
                width: 12%;
                background: #f2f2f2;
                height: 100%;
                z-index: 10;
                padding-top: 60px;
            }
            
            .slider_nav {
                width: 38px;
                height: 38px;
                background: url("../images/download.png") no-repeat center;
                /*background-size: 15px;*/
                -webkit-transform: rotate(90deg);
                -moz-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                -o-transform: rotate(90deg);
                transform: rotate(90deg);
                margin: 10px 0px 10px 50px;
                cursor: pointer;
            }
            
            .slider_nav:hover {
                /*background-color: #aaa;*/
                opacity: 0.7;
            }
            
            #nextSlide {
                -webkit-transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
                background-image: url("../images/color_right_arrow.png");
                background-color: #ef0d33;
            }
            
            .content_slider {
                margin-left: 100px;
                white-space: nowrap;
                width: 115%;
            }
            
            #content_slider {
                margin-left: -50%;
            }
            
            .content_item {
                display: inline-block;
                /*margin: 20px;*/
                background: #fff;
                padding: 20px;
                box-shadow: 0px 0px 10px 1px #ddd;
                /*width: 450px;*/
                white-space: normal;
                -webkit-transform: scale(0.8);
                -moz-transform: scale(0.8);
                -ms-transform: scale(0.8);
                -o-transform: scale(0.8);
                transform: scale(0.8);
                transition: all 0.8s;
                -o-transition: all 0.8s;
                -ms-transition: all 0.8s;
                -moz-transition: all 0.8s;
                -webkit-transition: all 0.8s;
            }
            
            .content_item:first-child {
                -webkit-transform: scale(1);
                -moz-transform: scale(1);
                -ms-transform: scale(1);
                -o-transform: scale(1);
                transform: scale(1);
            }
            
            .content_item .banner {
                background: url("../images/retail_bg.jpg") no-repeat center;
                background-size: cover;
                height: 180px;
            }
            
            .content_item.hide {
                margin-left: -400px;
            }
            
            .content_item h3 {
                line-height: 40px;
                font-size: 30px;
                margin: 15px 0px;
                color: #333;
            }
            
            .content_item p {
                color: #999;
                font-family: montserrat_light, sans-serif;
                line-height: 20px;
                text-align: justify;
                font-size: 12px;
                margin: 10px 0px 20px;
            }
            
            .service_wrap {
                padding: 60px 100px;
                background: #f2f2f2;
            }
            
            .service_wrap ul {
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
                flex-wrap: wrap;
            }
            
            .service_wrap li {
                padding: 20px 20px 20px 40px;
                background: url("../images/screen.png") no-repeat top 20px left 0px;
                background-size: 20px;
                width: 30%;
                box-sizing: border-box;
                margin: 10px 20px 10px 0px;
            }
            
            .clients_wrap {
                padding: 50px 100px;
            }
            
            .clients_wrap ul {
                margin: 0;
                padding: 0;
                list-style: none;
                display: flex;
                flex-wrap: wrap;
            }
            
            .clients_wrap li {
                background: #fff;
                height: 60px;
                padding: 15px;
                margin: 10px 20px 10px 0px;
                box-shadow: 0px 0px 10px 0px #ddd;
            }
            
            .clients_wrap li img {
                width: auto;
                height: 100%;
            }
            
            .pro_outer {
                box-shadow: none;
            }
            
            .pro_outer:hover {
                box-shadow: 0 17px 17px 0 rgba(0, 0, 0, 0.15);
            }
            
            .pro_owner {
                /* text-transform: uppercase; */
                color: #52535a;
                font-family: montserrat_regular, sans-serif;
                position: absolute;
                bottom: 10px;
                left: 40px;
                right: 15px;
            }
            
            .pro_owner span {
                text-transform: uppercase;
                color: #999;
                font-family: montserrat_regular, sans-serif;
            }
            
            @media only screen and (max-width: 1300px) {
                .industries_section h2 {
                    padding-left: 60px;
                    font-size: 88px;
                }
                .industries_wrap {
                    margin: 20px 60px;
                }
            }
            
            @media only screen and (max-width: 1150px) {
                .square_info_wrap:nth-child(4) {
                    right: -180px;
                }
                .square_info_wrap:nth-child(3) {
                    left: -180px;
                }
                #content_slider .swiper-slide-prev {
                    opacity: 0;
                }
            }
            
            @media only screen and (max-width: 1024px) {
                .industries_section h1{
                    padding-left: 60px;
                }
                .square_info_wrap {
                    left: -180px;
                }
                .square_info_wrap:nth-child(2n) {
                    right: -180px
                }
                .detail_right_wrap h3 {
                    font-size: 20px;
                }
                .detail_right_top h2 {
                    font-size: 50px;
                    line-height: 55px;
                }
                .detail_right_top h1 {
                    margin-left: -60px;
                }
                .service_wrap li {
                    padding: 20px 0px 20px 30px;
                    width: 43%;
                }
            }
            
            @media only screen and (max-width: 900px) {
                .square_info_wrap {
                    left: -125px;
                }
                .square_info_wrap:nth-child(2n) {
                    right: -125px
                }
                .square_info_wrap:nth-child(3) {
                    left: -125px
                }
                .square_info_wrap:nth-child(4) {
                    right: -125px;
                }
                .industry_links {
                    width: 46%;
                }
                .industry_links:nth-child(3n) {
                    margin-right: 3%;
                }
                .industry_links p {
                    max-height: 275px;
                    overflow: hidden;
                    height: 275px;
                }
                .service_wrap {
                    padding: 60px 80px;
                }
                .clients_wrap {
                    padding: 50px 80px;
                }
            }
            
            @media only screen and (max-width: 767px) {
                .industry_detail_outer.open .detail_left {
                    left: 0;
                    display: none;
                }
                .detail_right {
                    width: 100%;
                }
                .detail_right_wrap {
                    -webkit-transition-delay: 0.3s;
                    -moz-transition-delay: 0.3s;
                    -ms-transition-delay: 0.3s;
                    -o-transition-delay: 0.3s;
                    transition-delay: 0.3s;
                }
                .banner_wrap {
                    width: 450px;
                }
                .square_info_wrap h4:after,
                .square_info_wrap h4:before {
                    display: none;
                }
                .square_info_wrap .dot {
                    display: none;
                }
                .square_info_wrap {
                    left: 70px;
                    top: -55px;
                }
                .square_info_wrap:nth-child(2n) {
                    right: 70px;
                    top: -55px;
                }
                .square_info_wrap:nth-child(4) {
                    right: 18px;
                    top: 8px;
                }
                .square_info_wrap:nth-child(3) {
                    left: 18px;
                    top: 8px;
                }
                .detail_right_top h1 {
                    font-size: 115px;
                }
                .detail_right_top h2 {
                    font-size: 45px;
                    line-height: 48px;
                }
                .detail_right_wrap h3 {
                    font-size: 18px;
                }
            }
            @media only screen and (max-width: 1024px) {
                .industry_links p{
                    height: 320px;
                }
            }
            @media only screen and (max-width: 768px) {
                .industry_links p{
                    height: 185px;
                }
            }
            @media only screen and (max-width: 695px) {
                .industry_links {
                    width: 100%;
                }
                .header_content_wrap {
                    width: auto;
                }
                .header_content_wrap h2 {
                    font-size: 34px;
                    line-height: 36px;
                }
                .detail_right_top h1 {
                    font-size: 100px;
                }
                .detail_right_top h2 {
                    font-size: 42px;
                    line-height: 46px;
                }
                .detail_right_wrap h3 {
                    font-size: 17px;
                }
                .detail_right_top p {
                    padding: 10px 20px;
                    font-size: 14px;
                }
                .detail_right_top h1 {
                    font-size: 85px;
                    margin-left: -30px;
                }
            }
            @media only screen and (max-width: 425px) {
                .industries_section h1{
                    padding-left:20px;
                    font-size: 40px;
                }
                .industry_links p{
                    height: unset;
                }
            }
            @media only screen and (max-width: 595px) {
                .square {
                    width: 175px;
                }
                .industries_section h2 {
                    padding-left: 60px;
                    font-size: 65px;
                }
                .clients_wrap ul {
                    display: block;
                }
                .clients_wrap li {
                    display: block;
                    text-align: center;
                }
            }
            
            @media only screen and (max-width: 487px) {
                .detail_right_top p {
                    padding: 10px 20px;
                    font-size: 13px;
                }
                .detail_right_top {
                    height: auto;
                    padding: 180px 16px 50px;
                }
                .detail_right_top h2 {
                    font-size: 40px;
                }
                .industries_wrap {
                    margin: 20px 20px;
                }
                .service_wrap {
                    padding: 60px 25px;
                }
                .service_wrap li {
                    width: 100%;
                }
                .square {
                    width: 132px;
                }
                .square_info_wrap {
                    left: 10%;
                    top: -60px;
                }
                .square_info_wrap h4 {
                    font-size: 12px;
                    line-height: 12px;
                }
                .square_info_wrap p {
                    font-size: 10px;
                    line-height: 12px;
                }
                .square_info_wrap:nth-child(2n) {
                    right: 17%;
                    top: -60px;
                }
                .square_info_wrap:nth-child(3) {
                    left: 10%;
                    top: 50px;
                }
                .square_info_wrap:nth-child(4) {
                    right: 11%;
                    top: 57px;
                }
                .industries_section h2 {
                    padding-left: 60px;
                    font-size: 45px;
                }
                .detail_right_top h1 {
                    font-size: 70px;
                    margin-left: -10px;
                }
                .detail_right_top h2 {
                    font-size: 36px;
                    line-height: 42px;
                }
                .clients_wrap {
                    padding: 60px 25px;
                }
            }
            
            @media only screen and (min-height: 800px) {
                .header_content h2 {
                    margin-top: 130px;
                }
                .banner_wrap {
                    margin-top: 160px;
                }
                .detail_right_top {
                    padding-top: 240px;
                }
            }
            
            @media only screen and (max-height: 750px) {
                .header_content h2 {
                    margin-top: 80px;
                }
                .square_outer,
                .banner_wrap {
                    margin-top: 80px;
                }
            }
            
            @media only screen and (max-height: 650px) {
                .header_content h2 {
                    margin-top: 60px;
                }
                .square_outer,
                .banner_wrap {
                    margin-top: 80px;
                }
            }
            
            @media only screen and (max-height: 580px) {
                .header_content h2 {
                    margin-top: 50px;
                }
                .square_outer {
                    margin-top: 60px;
                }
            }
            
            @media only screen and (min-height: 800px) {
                .header_content h2 {
                    margin-top: 130px;
                }
                .banner_wrap {
                    margin-top: 160px;
                }
                .detail_right_top {
                    padding-top: 240px;
                }
            }
            
            @media only screen and (min-height: 1024px) {
                .header_content h2 {
                    margin-top: 200px;
                }
            }
            
            @media only screen and (max-width: 430px) {
                .square {
                    width: 60px;
                }
                .square_outer,
                .banner_wrap {
                    margin-top: 60px;
                }
                .square_info_wrap {
                    left: 10%;
                    top: -60px;
                }
                .square_info_wrap:nth-child(2n) {
                    right: 12%;
                    top: 76px;
                }
                .square_info_wrap:nth-child(3) {
                    left: 10%;
                    top: -60px;
                }
                .square_info_wrap:nth-child(4) {
                    right: 11%;
                    top: 66px !important;
                }
            }
            
            @media only screen and (max-width: 400px) {
                .square_outer,
                .banner_wrap {
                    display: none;
                }
                .header_content_wrap {
                    width: auto;
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    padding: 0 20px;
                }
                .detail_right_top h2 {
                    font-size: 26px;
                }
            }
            
            @media only screen and (max-width: 350px) {
                .industries_wrap {
                    margin: 20px 15px;
                }
                .detail_right_top h2 {
                    font-size: 26px;
                }
            }
            @media only screen and (max-width: 370px) {
                .pro_owner{
                    position: unset;
                }
            }
@media only screen and (max-width: 4000px) and (min-width: 1452px) {
    .industries_section h2{
        font-size: 6.92vw;
        padding-left: 7.69vw;
    }
    
    .industries_section h1{
        font-size: 5.5vw;
        line-height: 6.15vw;
color: #e5e5e5;
margin: 5% 7% 3%;
padding-left: 0;
    }
    .industries_wrap{
        margin: 1.28vw 5.1vw 1.28vw 7.69vw;
    }
    .industry_links{
        margin: 1.28vw 3% 1.28vw 0px;
        padding: 1.9vw 2.5vw 3.2vw 2.5vw;

    }
    .industry_links .icon{
        width: 6.7vw;
        height: 6.7vw;
    }
    .industry_links h3{
          margin: 1.28vw 0px 1.28vw 0;
          font-size: 1.1vw;
    }
    .industry_links p{
        font-size: 1vw;
        line-height: 1.7vw;
    }
    .pro_owner{
        font-size: 1vw;
        bottom: 0.6vw;
    left: 2.5vw;
    right: 0.96vw;
    }
    .industries_section{
        padding: 3.20vw 0.64vw;
    }
}
           