@import url('jquery-ui.min.css');
@import url('effect01.css');
@import url('effect02.css');
@import url('effect03.css');

/*--------------------------------------------------------------*/
/* LOADING -----------------------------------------------------*/
/*--------------------------------------------------------------*/

/* loading */
.loading-box {
    position: fixed !important;
    width: 100%;
    height: 100%;
	top: 0;
	left: 0;
    background: #8fc31f;
    z-index: 99999 !important;
}
.loading-box .loader {
	box-sizing: border-box;
	position: relative;
	top: calc(50% - 100px);
	left: calc(50% - 100px);
    display: flex;
	width: 200px;
    height: 200px;
    align-items: center;
    justify-content: center;
}

/*--------------------------------------------------------------*/
/* HEADER ------------------------------------------------------*/
/*--------------------------------------------------------------*/

/* Header Basic */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: calc(100% - 50px);
	height: 100px;
	padding: 0 25px;
	justify-content: space-between;
	align-items: center;
	z-index: 9999;
	display: none;
}
header.index-header {
	display: flex;
}
header.scrolldown {
	width: calc(100% - 20px);
	height: 60px;
	padding: 0 10px;
	background-color: #fff;
}
header, header.scrolldown {
	-webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
}

/* Logo */
header .header-logo {
	height: 55%;
}
header .header-logo a,
header .header-logo img {
	display: block;
}
header .header-logo a {
	height: 100%;
}
header .header-logo img {
	width: auto;
	height: 100%;
}

/* lang */
header .header-lang {
	position: fixed;
	top: 100px;
	right: 42.5px;
}
header.scrolldown .header-lang {
	top: 20px;
    right: 75px;
}
header.scrolldown  div.cs-skin-slide {
    width: auto;
    text-align: left;
}
header.scrolldown .cs-skin-slide > span {
    line-height: 16px;
    margin: 0;
    writing-mode: initial;
}
header.scrolldown .cs-skin-slide .cs-options {
    top: -22px;
    background-color: #fff;
    padding: 15px;
}
header.scrolldown .cs-select ul {
    text-align: center;
}
header.scrolldown div.cs-skin-slide:before {
    display: block;
    float: left;
    margin-right: 5px;
}

/* Menu */
.header-menu {
    overflow: hidden;
    width: 55px;
    height: 55px;
}
.hamburger {
	background-color: #8fc31f;
	border-radius: 5px;
	position: relative;
    z-index: 9999;
}
*::-ms-backdrop, .hamburger {
	background-color: #8fc31f;
	border-radius: 5px;
	position: fixed;
    z-index: 9999;
	right:24px;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger.is-active {
	background-color: transparent;
}
.hamburger-box {
	width: 25px;
	height: 25px;
	display: block;
}
.hamburger-inner {
    margin-top: -1.5px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 100%;
	height: 3px;
	border-radius: 3px;
	background-color: #fff;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after {
	background-color: #8fc31f;
}
.hamburger-inner::before {
    top: -8px;
}
.hamburger-inner::after {
    bottom: -8px;
}
header.scrolldown .header-menu {
    width: 45px;
    height: 45px;
}
header.scrolldown .hamburger {
	padding: 10px;
}

/* Menu Content */
.header-menu-wrapper {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	overflow: hidden;
	width: 0;
}
.header-menu-wrapper.open {
	width: 400px;
}
.header-menu-wrapper,
.header-menu-wrapper.open {
	-webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
}
.header-menu-content {
	display: flex;
	flex-direction: column;

	align-items: center;
	justify-content: space-between;
	padding-right: 100px;
	width: 300px;
    height: 100%;
	background-color: #fff;
}

/* Search */
.header-menu-content .header-menu-search {
	position: relative;
	width: 180px;
	margin-top: 45px;
}
.header-menu-content .header-menu-search input[type="search"] {
	width: 100%;
	padding: 0 0 10px;
	border-bottom: 1px solid #151515;
	font-family: 'Microsoft Jhenghei';
	font-size: 14px;
	text-align: left;
	color: #151515;
	border-radius: 0;
	box-shadow: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
.header-menu-content .header-menu-search input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	font-family: 'FontAwesome';
	font-size: 16px;
	color: #151515;
	background-color: transparent;
}

.header-menu-content .header-menu-search input[type="button"] {
	position: absolute;
	top: 0;
	right: 0;
	font-family: 'FontAwesome';
	font-size: 16px;
	color: #151515;
	background-color: transparent;
}

/* Main Menu */
.header-menu-content .header-menu-main {
	text-align: center;
}
.header-menu-content .header-menu-main h3 {
	font-family: 'Playfair Display';
	font-weight: 700;
	font-size: 28px;
	line-height: 28px;
	text-transform: uppercase;
	color: #353535;
}
.header-menu-content .header-menu-main ul {
	margin-top: 45px;
}
.header-menu-content .header-menu-main ul li + li {
	margin-top: 30px;
}
.header-menu-content .header-menu-main ul a {
	font-family: 'Microsoft Jhenghei';
	font-size: 18px;
	line-height: 18px;
	color: #353535;
}
.header-menu-content .header-menu-main ul a:hover {
	color: #8fc31f;
}

/* Sub Menu */
.header-menu-content .header-menu-sub {
	margin-bottom: 45px;
	text-align: center;
}
.header-menu-content .header-menu-sub ul li + li {
	margin-top: 20px;
}
.header-menu-content .header-menu-sub ul a {
	font-family: 'Microsoft Jhenghei';
	font-size: 16px;
	line-height: 16px;
	color: #353535;
}
.header-menu-content .header-menu-sub ul a:hover {
	color: #8fc31f;
}

/*--------------------------------------------------------------*/
/* TOPBAR ------------------------------------------------------*/
/*--------------------------------------------------------------*/

/* Topbar Basic */
.topbar {
	position: relative;
	width: 100%;
	background-color: #fff;
}
.topbar .topbar-inner {
	width: 1200px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0 65px;
}

/* Service Line */
.topbar .topbar-service h3 {
	text-align: left;
	font-family: 'Arial', sans-serif;
	font-weight: 900;
	font-size: 24px;
	line-height: 24px;
	color: #329e57;
}
.topbar .topbar-service h3:before {
	content: attr(data-title);
	font-size: 12px;
	line-height: 12px;
	font-weight: 400;
	color: #888;
	text-transform: uppercase;
	display: block;
	margin-bottom: 5px;
}

/* Logo */
.topbar .topbar-logo {
	width: 150px;
}
.topbar .topbar-logo a,
.topbar .topbar-logo img {
	display: block;
}
.topbar .topbar-logo img {
	width: 100%;
}

/* Options */
.topbar .topbar-opt {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.topbar .topbar-opt > ul {
	display: flex;
	align-items: center;
}
.topbar .topbar-opt .search-wrapper {
	display: flex;
	align-items: center;
}
.topbar .topbar-opt .topbar-opt-search input {
	color: #888;
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	background: none;
	display: block;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
.topbar .topbar-opt .topbar-opt-search input[type="submit"] {
	font-family: 'FontAwesome';
	font-size: 16px;
	line-height: 16px;
}
.topbar .topbar-opt .topbar-opt-search input[type="button"] {
	font-family: 'FontAwesome';
	font-size: 16px;
	line-height: 16px;
}
.topbar .topbar-opt .topbar-opt-search input[type="search"] {
	font-family: 'Microsoft Jhenghei';
	font-size: 14px;
	line-height: 14px;
	margin-left: 5px;
	text-align: left;
	width: 40px;
}
.topbar .topbar-opt .topbar-opt-search input[type="search"]:focus {
	width: 100px;
}
.topbar .topbar-opt .topbar-opt-search input[type="search"]::-webkit-input-placeholder { color: #888; }
.topbar .topbar-opt .topbar-opt-search input[type="search"]::-moz-placeholder { color: #888; }
.topbar .topbar-opt .topbar-opt-search input[type="search"]:-ms-input-placeholder { color: #888; }
.topbar .topbar-opt .topbar-opt-search input[type="search"]:-moz-placeholder { color: #888; }
.topbar .topbar-opt .topbar-opt-search input[type="search"],
.topbar .topbar-opt .topbar-opt-search input[type="search"]:focus {
	-webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
}
.topbar .topbar-opt .topbar-opt-lang:before {
	content: '\f0ac';
	font-family: 'FontAwesome';
	color: #888;
	font-size: 16px;
	margin-right: 5px;
}
.topbar .topbar-opt .topbar-opt-lang select {
	color: #888;
	font-family: 'Microsoft Jhenghei';
	font-size: 14px;
	cursor: pointer;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
.topbar .topbar-opt .topbar-opt-links {
	margin-top: 10px;
	font-family: 'Microsoft Jhenghei';
	font-size: 14px;
}
.topbar .topbar-opt .topbar-opt-links a {
	color: #555;
}
.topbar .topbar-opt .topbar-opt-links a:hover {
	color: #888;
}
.topbar .topbar-opt .topbar-opt-links li + li {
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #ccc;
}

/* Nav */
.topbar nav {
	width: 1200px;
	height: 70px;
	z-index: 9999;
	position: absolute;
	overflow: hidden;
	border-radius: 5px;
	margin-top: -35px;
	left: calc(50% - 600px);
	background: #8fc31f;
    background: -webkit-linear-gradient(#a8d840 20%, #8fc31f);
    background:    -moz-linear-gradient(#a8d840 20%, #8fc31f);
    background:      -o-linear-gradient(#a8d840 20%, #8fc31f);
    background:         linear-gradient(#a8d840 20%, #8fc31f);
}
.topbar nav ul {
	display: flex;
	width: 1200px;
	margin: auto;
}
.topbar nav ul > li {
	width: 100%;
	height: 70px;
}
.topbar nav ul > li + li {
	border-left: 1px solid rgba(255,255,255,0.2);
}
.topbar nav ul > li > a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	line-height: 70px;
	font-family: 'Microsoft Jhenghei';
	font-size: 18px;
	font-weight: 700;
}
.topbar nav ul > li > a:hover {
	background-color: rgba(0,0,0,0.1);
}
.topbar nav.sticky {
	position: fixed;
	top: 35px;
	left: 0;
	width: 100%;
	border-radius: 0;
}
.topbar nav, .topbar nav.sticky {
	-webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
}

/*--------------------------------------------------------------*/
/* INDEX -------------------------------------------------------*/
/*--------------------------------------------------------------*/

/* Banner */
.index-banner {
	width: 100%;
	height: 100vh;
}
.index-banner .index-banner-slide {
	position: relative;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
}
.index-banner .index-banner-slide .index-banner-slide-text {
	position: absolute;
	right: 50px;
	bottom: 50px;
	width: 425px;
	padding: 25px;
    background-color: rgba(255,255,255,0.8);
	text-align: left;
}
.index-banner .index-banner-slide .index-banner-slide-text h3 {
	position: relative;
	font-family: 'HanWangMing';
	font-weight: 700;
	font-size: 60px;
	line-height: 65px;
	margin-bottom: 10px;
	color: #353535;
}
.index-banner .index-banner-slide .index-banner-slide-text h3:before {
	position: absolute;
	right: 10px;
	bottom: 70px;
	content: attr(data-subtitle);
	font-family: 'Microsoft Jhenghei';
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	color: #8fc31f;
}
.index-banner .index-banner-slide .index-banner-slide-text p {
	font-family: 'Microsoft Jhenghei';
	font-size: 15px;
	line-height: 25px;
	text-align: justify;
	color: #555;
}

/* Index Section */
.index-section {
	width: 100%;
	background-color: #f5f5f5;
}
.index-section .index-section-top {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
}
.index-section .index-section-infobox {
	position: relative;
	z-index: 10;
	margin: 35px;
	width: 370px;
	padding: 55px;
	background-color: #fff;
}
.index-section .index-section-infobox img {
	display: block;
	width: 40px;
	margin: auto;
}
.index-section .index-section-infobox h3 {
	text-align: center;
	font-family: 'HanWangMing';
	font-weight: 700;
	font-size: 30px;
	line-height: 30px;
	display: table;
	margin: 15px auto 0;
	color: #353535;
	padding-bottom: 15px;
	border-bottom: 2px solid #353535;
}
.index-section .index-section-infobox h3:after {
	content: attr(data-subtitle);
	display: none;
	font-family: 'Playfair Display';
	font-weight: 400;
	font-size: 18px;
	text-transform: capitalize;
	line-height: 18px;
	margin-top: 10px;
}
.index-section .index-section-infobox p {
	margin-top: 30px;
	font-family: 'Microsoft Jhenghei';
	font-weight: 400;
	font-size: 14px;
	color: #353535;
	line-height: 25px;
	text-align: justify;
}
.index-section .index-section-infopic {
	position: absolute;
	z-index: 9;
	top: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
}
.index-section .index-section-bottom {
	position: relative;
	z-index: 1;
	margin-top: -75px;
	width: 100%;
	padding: 100px 0;
}

/* Why Us*/
.index-section.why-us .index-section-top {
	justify-content: flex-start;
}
.index-section.why-us .index-section-top .index-section-infobox {
	margin-left: calc(30% - 240px);
}
.index-section.why-us .index-section-top .index-section-infopic {
	right: 0;
	left: 30%;
}
.index-section.why-us .index-section-bottom,
.index-section.wcwd .index-section-bottom {
	background-color: #8fc31f;
}
.index-section.why-us .index-section-bottom > ul {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin: 75px auto 0;
	width: 700px;
}
.index-section.why-us .index-section-bottom > ul > ul img {
	width: auto;
	height: 80px;
}
.index-section.why-us .index-section-bottom > ul ul.divider {
	display: block;
	width: 1px;
	background-color: #fff;
	opacity: 0.1;
}
.index-section.why-us .index-section-bottom > ul > ul > li {
	font-family: 'HanWangMing';
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}
.index-section.why-us .index-section-bottom > ul > ul > li + li {
	margin-top: 15px;
}

/* What Can We Do */
.index-section.wcwd .index-section-top {
	justify-content: flex-end;
}
.index-section.wcwd .index-section-top .index-section-infobox {
	margin-right: calc(30% - 240px);
}
.index-section.wcwd .index-section-top .index-section-infopic {
	right: 30%;
	left: 0;
}
.index-section.wcwd .index-section-bottom {
	color: #fff;
}
.index-section.wcwd .index-section-bottom h3 {
	font-family: 'HanWangMing';
	font-size: 30px;
	font-weight: 700;
	line-height: 30px;
	margin-top: 75px;
}
.index-section.wcwd .index-section-bottom > ul {
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	width: 1200px;
	margin: 50px auto 0;
}
.index-section.wcwd .index-section-bottom > ul > ul {
	width: calc(20% - 50px);
	padding-left: 50px;
	font-family: 'Microsoft Jhenghei';
	font-size: 14px;
	margin-top: 50px;
	background-image: url('../images/index/capsule.svg');
	background-position: left;
	background-size: contain;
	background-repeat: no-repeat;
}
.index-section.wcwd .index-section-bottom > ul > ul:nth-child(-n+5) {
	margin-top: 50px;
}
.index-section.wcwd .index-section-bottom > ul > ul > li:first-child {
	font-size: 16px;
	margin-bottom: 3px;
}

/* Highlight */
.index-section.highlight {
	display: flex;
	justify-content: center;
	padding: 100px 0;
}
.index-section.highlight .index-section-infobox {
	margin: 0;
}
.index-section.highlight .index-section-infobox + .index-section-infobox {
	margin-left: 40px;
}
.index-section.highlight .index-section-infobox p {
	display: -webkit-box;
	overflow: hidden;
	text-align: left;
	text-overflow : ellipsis;
	-webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.index-section.highlight .index-section-infobox a {
	display: block;
	text-align: center;
	background-color: #8fc31f;
	color: #fff;
	font-family: 'Microsoft Jhenghei';
	font-size: 14px;
	padding: 15px 0;
	margin: 55px -55px -55px;
}

/* Contact */
.index-contact {
	position: relative;
	width: 100%;
	padding: 100px 0;
	background-image: url('../images/demo/index/contact_bg.jpg');
	background-size: cover;
	background-position: center;
}
.index-contact:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
	background-color: rgba(0,0,0,0.8);
}
.index-contact .index-contact-inner {
	position: relative;
	z-index: 1;
	width: 1200px;
	margin: auto;
	color: #fff;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.index-contact .index-contact-inner h3 {
	font-family: 'HanWangMing';
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
}
.index-contact .index-contact-inner ul {
	font-family: 'Microsoft Jhenghei';
	font-size: 14px;
}
.index-contact .index-contact-inner ul li:first-child {
	font-size: 18px;
	font-weight: 700;
}
.index-contact .index-contact-inner ul li a {
	color: #fff;
}
.index-contact .index-contact-inner ul li + li {
	margin-top: 10px;
}

/*--------------------------------------------------------------*/
/* PAGES -------------------------------------------------------*/
/*--------------------------------------------------------------*/

/* User Editor */
.user-editor-style {
	text-align: justify !important;
	line-height: 200%;
}
.user-editor-style a {
	color: #252525;
	font-weight: 700;
}
.user-editor-style a:hover {
	color: #8fc31f;
}
.user-editor-style img {
	display: block;
	max-width: 100%;
}
.user-editor-style h3 {
	font-weight: 700;
	color: #8fc31f;
}
.user-editor-style table {
	color: inherit;
	padding: inherit;
}
table.styled-table {
	border: none;
	border-collapse: collapse;
}
table.styled-table td {
	padding: 15px;
}
table.styled-table thead tr {
	background-color: #8fc31f;
	color: #fff;
}
table.styled-table tr:nth-child(even) {
	background-color: #f5f5f5;
}
.user-editor-style * + p,
.user-editor-style * + h3,
.user-editor-style * + ul,
.user-editor-style * + ol,
.user-editor-style * + img,
.user-editor-style * + table,
.user-editor-style * + iframe,
.user-editor-style * + .iframe-wrapper {
	margin-top: 10px;
}
.user-editor-style ul {
	padding-left: 25px;
}
.user-editor-style ul li:before {
	content: '\f152';
	font-family: 'FontAwesome';
	color: #8fc31f;
	margin-left: -25px;
	margin-right: 10px;
}
.user-editor-style ol {
	margin-left: 25px;
	list-style-type: decimal;
}

/* Page Head */
.page-head {
	width: 100%;
	overflow: hidden;
	background-image: url('../images/demo/pages/page_banner.jpg');
	background-size: cover;
	background-position: center;
	padding: 35px 0 100px;
	position: relative;
}
.page-head h3 {
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'HanWangMing';
	font-weight: 700;
	font-size: 36px;
	color: #353535;
	position: relative;
	z-index: 10;
}
.page-head:before {
	content: '';
	position: absolute;
	z-index: 10;
	left: 0;
	bottom: 0;
	border-bottom: 100px solid #fff;
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
}
.page-head .page-head-slick {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
.page-head .page-head-slick .slick-list,
.page-head .page-head-slick .slick-track {
	height: 100%;
}
.page-head .page-head-slick .slick-item {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
}

/* Page Body */
.page-body {
	width: 1200px;
	margin: 0 auto 100px;
	position: relative;
}

/* Page Body Bread */
.page-body .page-body-bread {
	width: 100%;
	padding-bottom: 25px;
	border-bottom: 1px solid #e5e5e5;
}
.page-body .page-body-bread ul {
	display: flex;
  flex-wrap: wrap;
	justify-content: flex-end;
}
.page-body .page-body-bread ul > li {
	font-family: 'Microsoft Jhenghei';
	font-size: 14px;
	color: #888;
}
.page-body .page-body-bread ul > li + li:before {
	content: '/';
	margin: 0 5px;
}
.page-body .page-body-bread ul > li a {
	color: #888;
}

/* Page Body Main */
.page-body .page-body-main {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.page-body .page-body-main .page-body-left {
	width: 300px;
}
.page-body .page-body-main .page-body-right {
	width: calc(100% - 350px);
}
.page-body .page-body-main .page-body-right.full {
	width: 100%;
}

/* Page Body left */
.page-body .page-body-main .page-body-left > ul {
	text-align: left;
	font-family: 'Microsoft Jhenghei';
}
.page-body .page-body-main .page-body-left > ul + ul {
	margin-top: 20px;
}
.page-body .page-body-left ul.page-body-left-nav h3.page-body-left-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 18px;
	color: #fff;
	padding: 20px 15px;
	background-color: #8fc31f;
	pointer-events: none;
}
.page-body .page-body-left ul.page-body-left-nav > ul > li a {
	display: block;
	font-size: 16px;
	line-height: 16px;
	color: #fff;
	padding: 15px;
	background-color: #c0e08e;
}
.page-body .page-body-left ul.page-body-left-nav > ul > li a:hover,
.page-body .page-body-left ul.page-body-left-nav > ul > li a.current {
	background-color: #a8d840;
}
.page-body .page-body-left ul.page-body-left-nav > ul > li a.current {
	pointer-events: none;
}
.page-body .page-body-left ul.page-body-left-brick > a {
	display: block;
	padding-bottom: 75%;
	background-size: cover;
	background-position: center;
	position: relative;
}
.page-body .page-body-left ul.page-body-left-brick > a > ul {
	position: absolute;
	top: 0;
	bottom: 0;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-align: justify;
}
.page-body .page-body-left ul.page-body-left-brick > a > ul > li:first-child {
	font-weight: 700;
	font-size: 18px;
}
.page-body .page-body-left ul.page-body-left-brick > a > ul > li:last-child {
	font-weight: 400;
	font-size: 14px;
	margin-top: 10px;
	line-height: 25px;
	opacity: 0.8;
}
.page-body .page-body-left ul.page-body-left-brick > a ul.core {
	color: #fff;
}
.page-body .page-body-left ul.page-body-left-brick > a ul.facilities {
	color: #353535;
}

/* Page Body Left Slick */
.page-body .page-body-left.multi-nav ul.page-body-left-slick {
    margin-top: 20px !important;
}
.page-body .page-body-left ul.page-body-left-slick {
	padding: 25px 50px;
	border: 1px solid #eee;
	position: relative;
}
.page-body .page-body-left ul.page-body-left-slick .product-pic {
	width: 100%;
	padding-bottom: 100%;
	background-size: cover;
	background-position: center;
	margin-bottom: 15px;
}
.page-body .page-body-left ul.page-body-left-slick .product-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 18px;
	color: #8fc31f;
	text-align: center;
}
.page-body .page-body-left ul.page-body-left-slick .product-title:after {
	content: attr(data-generic);
	display: block;
	color: #aaa;
	font-weight: 400;
	font-size: 12px;
	line-height: 12px;
	margin-top: 5px;
}
.page-body .page-body-left ul.page-body-left-slick .slick-prev,
.page-body .page-body-left ul.page-body-left-slick .slick-next {
	color: #fff;
	background-color: #8fc31f;
	width: 35px;
	height: 35px;
}
.page-body .page-body-left ul.page-body-left-slick .slick-prev:before,
.page-body .page-body-left ul.page-body-left-slick .slick-next:before {
	font-family: 'FontAwesome';
	font-size: 18px;
	opacity: 1;
}
.page-body .page-body-left ul.page-body-left-slick .slick-prev:before {
	content: '\f060';
}
.page-body .page-body-left ul.page-body-left-slick .slick-next:before {
	content: '\f061';
}
.page-body .page-body-left ul.page-body-left-slick .slick-prev {
	left: 0 !important;
}
.page-body .page-body-left ul.page-body-left-slick .slick-next {
	right: 0 !important;
}

/* Multi-leveled Nav */
.multi-nav-button {
	display: none;
	width: 100%;
	font-family: 'Microsoft Jhenghei';
	font-size: 18px;
	font-weight: 700;
	text-align: left;
	color: #fff;
	padding: 20px 15px;
	background-color: #727171;
}
.multi-nav-button:before {
	content: '\f0c9';
	font-family: 'FontAwesome';
	margin-right: 10px;
	font-weight: 400;
}
.page-body .page-body-main .page-body-left.multi-nav > ul + ul {
	margin-top: 1px;
}
.page-body .page-body-left.multi-nav ul.page-body-left-brick {
	margin-top: 20px !important;
}
.page-body .page-body-left.multi-nav ul.page-body-left-nav > h3 {
	pointer-events: initial;
	cursor: pointer;
}
.page-body .page-body-left.multi-nav ul.page-body-left-links {
	display: none;
	margin-bottom: -2px;
}

/* Page Body Right */
.page-body .page-body-main .page-body-right {
	font-family: 'Microsoft Jhenghei';
}
.page-body .page-body-main .page-body-right .page-body-right-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 24px;
	color: #353535;
	text-align: left;
	margin-bottom: 35px;
}
.page-body .page-body-main .page-body-right .page-body-right-content {
	color: #555;
	font-size: 16px;
    text-align: left;
}

/* Pagination */
.pagination {
	margin-top: 25px;
}
.pagination ul {
	display: table;
	margin: auto;
	overflow: hidden;
}
.pagination ul > li {
	float: left;
	margin: 0 1px;
	text-align: center;
}
.pagination ul > li a {
	display: block;
	width: 30px;
	height: 30px;
	font-size: 12px;
	line-height: 30px;
	color: #fff;
	background-color: #a8d840;
}
.pagination ul > li a.prev:before, .pagination ul > li a.next:before {
	font-family: 'FontAwesome';
}
.pagination ul > li a.prev:before {
	content: '\f0d9';
}
.pagination ul > li a.next:before {
	content: '\f0da';
}
.pagination ul > li a.current {
	cursor: default;
}
.pagination ul > li a.current,
.pagination ul > li a:hover {
	background-color: #8fc31f;
}
.pagination ul > li a.disabled {
	display: none;
}

/* Back to Previous Page */
button.btn-prev {
	font-size: 14px;
	display: block;
	margin: auto;
	margin-top: 25px;
	padding: 7px 10px;
	color: #fff;
	background-color: #8fc31f;
	border-radius: 0;
}
button.btn-prev:hover {
	background-color: #329e57;
}
button.btn-prev,
button.btn-prev:hover {
	-webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
}

/* iframe */
.iframe-wrapper {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}
.iframe-wrapper iframe {
	position: absolute;
	width: 100%;
  	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

/*--------------------------------------------------------------*/
/* NEWS --------------------------------------------------------*/
/*--------------------------------------------------------------*/

.news-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.news-list a {
	width: calc(100%/3 - 30px/3);
	margin: 15px 15px 0 0;
	display: block;
	text-align: left;
}
@media screen and (min-width:601px) {
	.news-list a:nth-child(3n+0) {
		margin-right: 0;
	}
	.news-list a:nth-child(-n+3) {
		margin-top: 0;
	}
}
.news-list a ul.news-list-pic {
	width: 100%;
	padding-bottom: 65.45%;
	background-size: cover;
	background-position: center;
}
.news-list a ul.news-list-content {
	border: 1px solid #eee;
	border-top: none;
	padding: 15px;
}
.news-list a:hover ul.news-list-content {
	border: 1px solid #a8d840;
	border-top: none;
}
.news-list a ul.news-list-content,
.news-list a:hover ul.news-list-content {
	-webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
}
.news-list a ul.news-list-content li + li {
	margin-top: 10px;
}
.news-list a ul.news-list-content li.date {
	font-size: 12px;
	color: #888;
}
.news-list a ul.news-list-content li.title {
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #8fc31f;
}
.news-list a ul.news-list-content li.desc {
	color: #888;
	font-size: 14px;
	line-height: 22px;
	height: 40px;
	overflow: hidden;
	position: relative;
	text-align: justify;
}
.news-list a ul.news-list-content li.desc:after {
	content: '...';
	background-color: #fff;
	display: block;
	height: 14px;
	width: 14px;
	text-align: right;
	letter-spacing: 1px;
	line-height: 14px;
	position: absolute;
	bottom: 0;
	right: 0;
}

/*--------------------------------------------------------------*/
/* FACILITIES --------------------------------------------------*/
/*--------------------------------------------------------------*/

ul.facilities-display-box {
	padding: 0;
	float: right;
}
ul.facilities-display-box li.facilities-img,
ul.facilities-display-box li:before {
	display: none;
}

/*--------------------------------------------------------------*/
/* PRODUCT -----------------------------------------------------*/
/*--------------------------------------------------------------*/

/* Product Categories */
.product-cates h3 {
	font-size: 18px;
	font-family: 'Microsoft Jhenghei';
	font-weight: 700;
	line-height: 18px;
	color: #8fc31f;
	text-align: left;
}
.product-cates h3:before {
	content: '\f0fe';
	font-family: 'FontAwesome';
	font-weight: normal;
	margin-right: 5px;
}
.product-cates ul + h3 {
	margin-top: 25px;
}
.product-cates ul {
	display: flex;
	flex-wrap: wrap;
}
.product-cates ul li {
	width: calc(100%/4 - 75px/4);
	margin-right: 25px;
	margin-top: 25px;
	position: relative;
	overflow: hidden;
}
.product-cates ul li:nth-child(4n+0) {
	margin-right: 0;
}
.product-cates ul li:after {
	content: attr(data-title);
	display: inline-block;
	padding: 10px;
	color: #fff;
	font-family: 'Microsoft Jhenghei';
	font-size: 16px;
	position: absolute;
	left: 0;
	bottom: 25px;
	z-index: 5;
	background: #8fc31f;
	background: -webkit-linear-gradient(left, #8fc31f, #a8d840);
	background:    -moz-linear-gradient(right, #8fc31f, #a8d840);
	background:      -o-linear-gradient(right, #8fc31f, #a8d840);
	background:         linear-gradient(to right, #8fc31f, #a8d840);
}
.product-cates ul li a {
	display: block;
	position: relative;
	padding-bottom: 100%;
	background-size: cover;
	background-position: center;
	-webkit-filter: grayscale(100%);
            filter: grayscale(100%);
}
.product-cates ul li a:before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0.3);
	z-index: 1;
}
.product-cates ul li a:hover:before {
	opacity: 0;
}
.product-cates ul li a:hover {
	-webkit-filter: grayscale(0%);
            filter: grayscale(0%);
}
.product-cates ul li a:before,
.product-cates ul li a:hover:before {
	-webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
}

/* Product List */
.product-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: -30px;
}
.product-list > ul {
	width: calc(100%/3 - 60px);
	padding: 20px;
	margin-top: 30px;
	border-top: 5px solid #8fc31f;
	font-family: 'Microsoft Jhenghei';
	text-align: left;
	box-shadow: 0 0 10px rgba(0,0,0,0.08);
}
.product-list > ul > ul + ul {
	margin-top: 15px;
}
.product-list > ul ul.product-pic a {
	display: block;
	padding-bottom: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.product-list > ul ul.product-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 18px;
	color: #8fc31f;
}
.product-list > ul ul.product-title:after {
	content: attr(data-generic);
	display: block;
	color: #aaa;
	font-weight: 400;
	font-size: 12px;
	line-height: 12px;
	margin-top: 5px;
}
.product-list > ul ul.product-info {
	font-size: 14px;
	color: #888;
}
.product-list > ul ul.product-info li:before {
	content: ''attr(data-title)'：';
}
.product-list > ul ul.product-info li + li {
	margin-top: 5px;
}
.product-list > ul ul.product-more a {
	display: block;
	padding: 15px;
	text-align: center;
	color: #fff;
	background: #8fc31f;
	background: -webkit-linear-gradient(left, #8fc31f, #a8d840);
	background:    -moz-linear-gradient(right, #8fc31f, #a8d840);
	background:      -o-linear-gradient(right, #8fc31f, #a8d840);
	background:         linear-gradient(to right, #8fc31f, #a8d840);
}

/* Product View */
.product-view-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.product-view-head ul.product-view-pic {
	width: 300px;
	height: 300px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid #ccc;
}
.product-view-head ul.product-view-profile {
	width: calc(100% - 330px);
	text-align: left;
	font-family: 'Microsoft Jhenghei';
}
.product-view-head ul.product-view-profile > ul + ul {
	margin-top: 25px;
}
.product-view-head ul.product-view-profile ul.product-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 24px;
	color: #8fc31f;
}
.product-view-head ul.product-view-profile ul.product-title:after {
	content: attr(data-generic);
	display: block;
	color: #aaa;
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	margin-top: 10px;
}
.product-view-head ul.product-view-profile ul.product-info {
	font-size: 16px;
	color: #888;
}
.product-view-head ul.product-view-profile ul.product-info li:before {
	content: ''attr(data-title)'：';
}
.product-view-head ul.product-view-profile ul.product-info li + li {
	margin-top: 10px;
}
.product-view-body {
	margin-top: 25px;
}

/*--------------------------------------------------------------*/
/* INVESTOR RELATIONSHIP ---------------------------------------*/
/*--------------------------------------------------------------*/

/* IR List */
.ir-list a {
	display: block;
	padding: 0 25px;
	border-bottom: 1px solid #eee;
}
.ir-list a:hover {
	background-color: #f5f5f5;
}
.ir-list a:first-child {
	border-top: 1px solid #eee;
}
.ir-list ul {
	text-align: left;
	padding: 25px 0;
	color: #555;
	overflow: hidden;
	font-family: 'Microsoft Jhenghei';
	font-size: 16px;
}
.ir-list ul > li {
	float: left;
	padding: 2px 0;
}
.ir-list ul li.ir-date {
	width: 85px;
	text-align: center;
	font-size: 12px;
	background-color: #8fc31f;
	color: #fff;
}
.ir-list ul li.ir-type {
	width: 60px;
	text-align: center;
	margin: 0 10px;
	font-size: 12px;
	letter-spacing: 1px;
	background-color: #a8d840;
	color: #fff;
}
.ir-list ul li.ir-title {
	width: calc(100% - 165px);
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.ir-list ul li.ir-title:after {
	content: '\f054';
	font-family: 'FontAwesome';
	display: block;
	color: #8fc31f;
	position: absolute;
	right: 0;
	top: 4px;
}

/* IR View */
ul.ir-view-info {
	font-weight: 400;
	font-family: 'Microsoft Jhenghei';
	text-align: center;
	color: #fff;
	overflow: hidden;
	margin-top: 10px;
}
ul.ir-view-info > li {
	float: left;
}
ul.ir-view-info li.ir-date {
	width: 85px;
	font-size: 12px;
	background-color: #8fc31f;
}
ul.ir-view-info li.ir-type {
	width: 60px;
	margin: 0 10px;
	font-size: 12px;
	letter-spacing: 1px;
	background-color: #329e57;
}

/* IR Download */
table.download-list {
	width: 100%;
}
table.download-list tr td.date {
	width: 25%;
}
table.download-list tr td.name {
	width: 25%;
}
table.download-list tr td.type {
	width: 15%;
}
table.download-list tr td.size {
	width: 20%;
}
table.download-list tr td.save {
	width: 15%;
}
table.download-list button.btn-download {
	outline: none;
	border: none;
	background: transparent;
	color: #8fc31f;
	padding: 0px;
}
table.download-list button.btn-download:before {
	font-family: 'FontAwesome';
	content: '\f019';
}

/* FAQS */
.ir-faq ul li {
	padding: 20px;
	text-align: left;
}
.ir-faq ul li.q {
  	background: #eee;
  	font-weight: 700;
  	font-size: 18px;
  	line-height: 30px;
  	border-bottom: 1px #ddd solid;
  	cursor: pointer;
}
.ir-faq ul li.q:before {
	float: left;
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-family: 'FontAwesome';
	font-weight: normal;
	font-size: 16px;
	content: '\f059';
	background-color: #8fc31f;
	color: #fff;
	margin-right: 10px;
	border-radius: 50%;
}
.ir-faq ul li.a {
 	background: #8fc31f;
 	display: none;
 	color: #fff;
	font-size: 16px;
}
.ir-faq ul li.a a {
	color: #fff;
}

/*--------------------------------------------------------------*/
/* CONTACT -----------------------------------------------------*/
/*--------------------------------------------------------------*/

/* Contact Form */
ul.contact-form {
	overflow: hidden;
	margin-top: 30px;
}
ul.contact-form > ul {
	overflow: hidden;
	width: 100%;
	margin-bottom: 30px;
	display: table;
	font-family: 'Microsoft Jhenghei';
}
ul.contact-form > ul:last-child {
	margin-bottom: 0;
}
ul.contact-form > ul > li {
	display: table-cell;
	vertical-align: middle;
}
ul.contact-form > ul > li:first-child {
	width: 120px;
	text-align: center;
	background-color: #8fc31f;
	color: #fff;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
ul.contact-form > ul > li:last-child {
	width: calc(100% - 120px);
}
ul.contact-form input[type="text"] {
	display: block;
	padding: 15px;
	width: calc(100% - 30px);
	background-color: #eee;
	border-radius: 0;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	border: none;
	outline: none;
	box-shadow: none;
	-webkit-appearance: none;
}
ul.contact-form .fa {
	margin-right: 10px;
}
ul.contact-form ul.contact-form-content li {
	height: 200px;
}
ul.contact-form ul.contact-form-content textarea {
	padding: 15px;
	width: calc(100% - 30px);
	background-color: #eee;
	height: 100%;
	resize: none;
	display: block;
	border: none;
	outline: none;
	border-radius: 0;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	-webkit-appearance: none;
}
ul.contact-form ul.contact-form-buttons {
	width: auto;
	margin: auto;
}
ul.contact-form ul.contact-form-buttons li {
	width: auto;
	padding: 0 5px;
	background-color: transparent !important;
	border-radius: 0;
}
ul.contact-form ul.contact-form-buttons input {
	display: block;
	padding: 7px 10px;
	color: #fff;
	border-radius: 3px;
	background-color: #8fc31f;
	outline: none;
	-webkit-appearance: none;
}
ul.contact-form ul.contact-form-buttons input:hover {
	background-color: #329e57;
}
ul.contact-form ul.contact-form-buttons input,
ul.contact-form ul.contact-form-buttons input:hover {
	-webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
}

/*--------------------------------------------------------------*/
/* FOOTER ------------------------------------------------------*/
/*--------------------------------------------------------------*/

/* Basic */
footer {
	width: 100%;
}
footer > div > div {
	width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	font-family: 'Microsoft JhengHei';
}

/* Footer Top */
.footer-top {
	padding: 45px 0;
	background-color: #f5f5f5;
	text-align: left;
}

/* Footer Top Med */
.footer-top .footer-top-med h3 {
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	height: 16px;
	color: #171717;
}
.footer-top .footer-top-med .footer-top-med-list {
	margin-top: 25px;
	display: flex;
}
.footer-top .footer-top-med .footer-top-med-list > ul > li {
	display: block;
	font-size: 14px;
	line-height: 14px;
}
.footer-top .footer-top-med .footer-top-med-list > ul > li + li {
	margin-top: 15px;
}
.footer-top .footer-top-med .footer-top-med-list > ul > li a {
	color: #7a7a7a;
	display: inline-block;
}

/* Footer Top Menu */
.footer-top .footer-top-menu {
	display: flex;
}
.footer-top .footer-top-menu > ul > li {
	display: block;
}
.footer-top .footer-top-menu > ul > li + li {
	margin-top: 22.5px;
}
.footer-top .footer-top-menu > ul > li a {
	font-weight: 700;
	color: #151515;
	display: inline-block;
}

/* Footer Bottom */
.footer-bottom {
	background-color: #d3d3d3;
	padding: 20px 0;
}
.footer-bottom > div {
	align-items: center;
}

/* Footer Bottom Medias */
.footer-bottom .footer-bottom-medias > ul > li {
	display: inline-block;
}
.footer-bottom .footer-bottom-medias > ul > li a {
	display: block;
	font-size: 36px;
}
.footer-bottom .footer-bottom-medias > ul li.facebook a {
	color: #3b5999;
}
.footer-bottom .footer-bottom-medias > ul li.youtube a {
	color: #d02200;
}

/* Footer Bottom Copyright */
.footer-bottom .footer-bottom-copyright {
	font-size: 12px;
	color: #888;
}
.footer-bottom .footer-bottom-copyright a {
	color: #888;
}

/*--------------------------------------------------------------*/
/* RESPONSIVE --------------------------------------------------*/
/*--------------------------------------------------------------*/

@media screen and (max-width:1200px) {
	/* HEADER */
	header {
		background-color: #fff;
		width: calc(100% - 20px);
		height: 60px;
		padding: 0 10px;
		display: flex;
	}
	.topbar {
		display: none;
	}
	.header-menu {
		width: 45px;
		height: 45px;
	}
	.hamburger {
		padding: 10px;
	}
	header .header-lang {
		top: 20px;
		right: 75px;
	}
	header  div.cs-skin-slide {
		width: auto;
		text-align: left;
	}
	header .cs-select ul {
		text-align: center;
	}
	header div.cs-skin-slide:before,
	header.scrolldown div.cs-skin-slide:before {
		display: none;
	}
	header .cs-skin-slide .cs-options,
	header .cs-skin-slide > span {
		display: none;
	}
	header .header-lang select {
		display: block;
		font-size: 16px;
		margin: 0;
		padding: 0;
		color: #888;
		-webkit-appearance: none;
		   -moz-appearance: none;
		        appearance: none;
	}
	header .header-lang section:before {
		display: block;
		float: left;
		margin-right: 5px;
		color: #888;
		font-family: 'FontAwesome';
		content: '\f0ac';
		font-size: 20px;
		line-height: 22px;
	}
	main {
		margin-top: 60px;
	}

	/* INDEX */
	.index-banner,
	.index-banner .index-banner-slide {
		height: calc(100vh - 60px);
	}
	.index-banner .index-banner-slide .index-banner-slide-text {
		bottom: 75px;
	}
	.index-section.wcwd .index-section-bottom > ul {
		justify-content: space-between;
		width: 75%;
		margin: 25px auto 0;
	}
	.index-section.wcwd .index-section-bottom > ul > ul:nth-child(-n+5) {
		margin-top: 25px;
	}
	.index-section.wcwd .index-section-bottom > ul > ul {
		width: auto;
		margin: 25px;
	}
	.index-section.highlight {
		padding: 25px 0;
	}
	.index-section.highlight .index-section-infobox {
		width: calc(50% - 50px - 95px);
	}
	.index-section.highlight .index-section-infobox + .index-section-infobox {
		margin-left: 25px;
	}
	.index-contact {
		padding: 50px 0;
	}
	.index-contact .index-contact-inner {
		width: calc(100% - 100px);
	}

	/* PAGES */
	.page-head {
		padding: 0 0 75px;
	}
	.page-head h3 {
		height: 150px;
	}
	.page-head:before {
		border-bottom: 75px solid #fff;
	}
	.page-head .page-head-slick {
		display: none;
	}
	.page-body {
		width: calc(100% - 50px);
		margin: 0 auto 25px;
	}
	.page-body .page-body-bread {
		padding-bottom: 20px;
	}
	.page-body .page-body-bread ul {
		justify-content: center;
	}
	.page-body .page-body-main {
		margin-top: 25px;
	}

	/* PRODUCTS */
	.product-list > ul {
    	width: calc(50% - 55px);
	}

	/* FOOTER */
	footer > div > div {
   		width: calc(100% - 80px);
		flex-wrap: wrap;
	}
}

@media screen and (max-width:1023px) {
	/* INDEX */
	.index-section.why-us .index-section-top .index-section-infobox {
		margin: 0;
		width: calc(50% - 110px);
	}
	.index-section.wcwd .index-section-top .index-section-infobox {
		margin: 0;
		width: calc(50% - 110px);
	}
	.index-section.why-us .index-section-top .index-section-infopic {
		left: 50%;
	}
	.index-section.wcwd .index-section-top .index-section-infopic {
		right: 50%;
	}
	.index-section .index-section-bottom {
		margin-top: 0;
		padding: 50px 0;
	}
	.index-section.why-us .index-section-bottom > ul {
		margin: 0 auto;
		width: calc(100% - 150px);
	}
	.index-section.wcwd .index-section-bottom h3 {
		margin-top: 0;
	}
	.index-section.wcwd .index-section-bottom > ul {
		width: calc(100% - 100px);
	}
	.index-contact .index-contact-inner h3 {
		width: 100%;
		margin-bottom: 25px;
	}

	/* PAGES */
	.multi-nav-button {
		display: block;
	}
	.page-body .page-body-main .page-body-left,
	.page-body .page-body-main .page-body-right {
		width: 100%;
	}
	.page-body .page-body-left ul.page-body-left-nav h3.page-body-left-title {
		pointer-events: initial;
	}
	.page-body .page-body-left ul.page-body-left-nav h3.page-body-left-title:before {
		content: '\f0c9';
		font-family: 'FontAwesome';
		margin-right: 10px;
	}
	.page-body .page-body-left ul.page-body-left-nav > ul,
	.page-body .page-body-left ul.page-body-left-slick,
	.page-body .page-body-left ul.page-body-left-brick {
		display: none;
	}
	.page-body .page-body-main .page-body-right {
		margin-top: 35px;
	}

	/* INVESTOR RELATIONSHIP */
	.page-body .page-body-left.multi-nav {
		display: none;
	}
	.page-body .page-body-left.multi-nav ul.page-body-left-nav h3.page-body-left-title:before {
		display: none;
	}
}

@media screen and (max-width:600px) {
	/* HEADER */
	.header-menu-wrapper.open {
		width: 80vw;
	}
	.header-menu-content {
		padding-right: 80px;
		width: calc(80vw - 80px);
	}
	.header-menu-content .header-menu-search {
		width: calc(100% - 50px);
		margin-top: 25px;
	}
	.header-menu-content .header-menu-main ul {
		margin-top: 25px;
	}
	.header-menu-content .header-menu-main ul li + li {
		margin-top: 20px;
	}
	.header-menu-content .header-menu-main ul a {
		font-size: 16px;
		line-height: 16px;
	}
	.header-menu-content .header-menu-sub {
		margin-bottom: 25px;
	}
	.header-menu-content .header-menu-sub ul li + li {
		margin-top: 15px;
	}
	.header-menu-content .header-menu-sub ul a {
		font-size: 14px;
		line-height: 14px;
	}

	/* INDEX */
	.index-banner .index-banner-slide .index-banner-slide-text {
		right: 20px;
		left: 20px;
		bottom: 60px;
		padding: 40px 10px 10px;
		width: auto;
	}
	.index-banner .index-banner-slide .index-banner-slide-text h3 {
		font-size: 40px;
		line-height: 45px;
		margin-bottom: 5px;
	}
	.index-banner .index-banner-slide .index-banner-slide-text h3:before {
		right: auto;
		left: 0;
		top: -25px;
		bottom: auto;
		font-weight: 700;
	}
	.index-banner .index-banner-slide .index-banner-slide-text p {
		font-size: 14px;
		line-height: 20px;
	}
	.index-section.why-us .index-section-top .index-section-infopic,
	.index-section.wcwd .index-section-top .index-section-infopic {
		left: 0;
		right: 0;
		bottom: calc(100% - 250px);
	}
	.index-section.why-us .index-section-top .index-section-infobox,
	.index-section.wcwd .index-section-top .index-section-infobox {
		width: calc(100% - 110px);
		margin-top: 250px;
	}
	.index-section.why-us .index-section-bottom > ul {
		margin: 0 auto;
		width: 100%;
		display: block;
	}
	.index-section.why-us .index-section-bottom > ul > ul + ul {
		margin-top: 50px;
	}
	.index-section.highlight {
		flex-wrap: wrap;
	}
	.index-section.highlight .index-section-infobox {
		width: calc(100% - 100px);
		padding: 25px;
	}
	.index-section.highlight .index-section-infobox a {
		margin: 25px -25px -25px;
	}
	.index-section.highlight .index-section-infobox + .index-section-infobox {
		margin-left: 0;
		margin-top: 25px;
	}
	.index-contact {
		padding: 25px 0;
	}
	.index-contact .index-contact-inner {
		width: calc(100% - 50px);
	}
	.index-contact .index-contact-inner ul + ul {
		margin-top: 25px;
	}

	/* PAGES */
	.page-head {
		padding: 0 0 30px;
	}
	.page-head:before {
		border-bottom: 30px solid #fff;
	}
	.page-head h3 {
		height: 100px;
		font-size: 30px;
	}
	.page-body {
		width: calc(100% - 30px);
		margin: 0 auto 15px;
	}
	.page-body .page-body-bread {
		padding-bottom: 10px;
	}
	.page-body .page-body-main {
		margin-top: 15px;
	}
	.page-body .page-body-main .page-body-right .page-body-right-title {
		margin-bottom: 15px;
	}
	table.styled-table thead {
		display: none;
	}
	table.styled-table tr {
		display: block;
	}
	table.styled-table tr + tr {
		margin-top: 25px;
	}
	table.styled-table tr td {
		display: block;
		width: calc(100% - 95px) !important;
		text-align: left;
		position: relative;
		padding-left: 80px;
	}
	table.styled-table tr td:nth-child(odd) {
		background-color: #e5e5e5;
	}
	table.styled-table tr td:nth-child(even) {
		background-color: #f5f5f5;
	}
	table.styled-table tr td:before {
		content: attr(data-title);
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 0 15px;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 35px;
		line-height: 18px;
		background-color: #8fc31f;
		color: #fff;
	}
	table.styled-table tr td:nth-child(even):before {
		background-color: #329e57;
	}
	.pagination,
	button.btn-prev {
		margin-top: 15px;
	}

	/* NEWS */
	.news-list a {
		width: 100%;
		margin: 15px 0 0 0;
	}
	.news-list a:first-child {
		margin-top: 0;
	}

	/* FACILITIES */
	ul.facilities-display-box {
		float: none;
	}

	/* INVESTOR RELATIONSHIP */
	.ir-list a {
		padding: 0;
	}
	.ir-list ul li.ir-title {
		width: 100%;
		margin-top: 10px;
	}
	.ir-list ul li.ir-title:after {
		display: none;
	}

	/* PRODUCTS */
	.product-cates ul li {
		width: calc(100%/2 - 15px/2);
		margin-right: 15px;
		margin-top: 15px;
	}
	.product-cates ul li:nth-child(2n+0) {
		margin-right: 0;
	}
	.product-cates ul li a {
		-webkit-filter: grayscale(0%);
				filter: grayscale(0%);
	}
	.product-cates ul li a:before {
		opacity: 0;
	}
	.product-cates ul li:after {
		bottom: 15px;
	}
	.product-list > ul {
		width: calc(100% - 40px);
	}
	.product-view-head ul.product-view-pic {
		width: calc(100% - 2px);
		height: 0;
		padding-bottom: 100%;
		margin-bottom: 15px;
	}
	.product-view-head ul.product-view-profile {
		width: 100%;
	}

	/* CONTACT */
	ul.contact-form > ul {
		margin-bottom: 15px;
	}

	/* FOOTER */
	footer > div > div {
		width: calc(100% - 30px);
	}
	.footer-top {
		padding: 15px 0;
	}
	.footer-top .footer-top-menu {
		width: 50%;
		margin-top: 30px;
	}
	.footer-bottom {
		padding: 15px 0;
	}
	.footer-bottom > div {
		justify-content: center;
	}
	.footer-bottom .footer-bottom-copyright {
		margin-top: 10px;
	}
}


@media screen and (max-width: 600px){
table.styled-table tr td {
    padding-left: 80px !important;
}
}

@media screen and (max-width: 1024px) {
    .footer-top-med {
        margin-bottom: 30px;
        width: calc(25% - 10px);
        padding: 0 10px 0 0;
    }

    .footer-top-menu {
        width: calc(25% - 10px);
        margin-bottom: 30px;
        padding: 0 10px 0 0;
    }

    .footer-top-med a {
        line-height: 17px
    }

    footer>div>div {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 600px) {
    .footer-top-med {
        width: calc(33% - 10px);
    }

    .footer-top .footer-top-menu {
        margin-top: 0;
        width: calc(33% - 10px);
    }

    .footer-top .footer-top-med .footer-top-med-list {
        margin-top: 15px
    }

    .footer-top {
        padding-top: 30px;
    }
}

@media screen and (max-width: 460px) {
    .footer-top-med {
        width: calc(50% - 20px);
        padding: 0 20px 0 0;
    }

    .footer-top .footer-top-menu {
        margin-top: 0;
        width: calc(50% - 20px);
        padding: 10px 20px 0 0;
    }
}
.product-list:after {
    content: "";
    width: calc(100%/3 - 60px);
    padding: 20px;
}