/*
Theme Name: Zhantai
Theme URI: https://www.becomingjenny.net
Version: 1.0
Author: Brain@JennyStudio
Author URI: https://blog.brain1981.com
Description: This theme is a customized version based on Wordpress theme twentyTwelve. JennyStudio - build your own WordPress theme.
License: 
License URI: https://www.becomingjenny.net
Tags: light, gray, white, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: zhantai
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

*::-moz-selection {
	background-color: #4D525A;
	color: #FFF;
}
*::selection {
	background-color: #4D525A;
	color: #FFF;
}
input[type="button"],
input[type="submit"],
input[type="reset"],
textarea {
	-webkit-appearance: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	/*font-style: normal;*/
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: 300;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	/*outline: thin dotted;*/
	outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ededed;
	background-color: rgba(0,0,0,0.1);
	border: 0;
	height: 1px;
	margin: 24px 0;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title {
	font-size: 16px;
	font-size: 1.225714286rem;
	line-height: 2.181818182;
	font-weight: normal;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
select,
textarea {
	border: 1px solid #eee;
	/*border: 1px solid rgba(0,0,0,0.4);*/
	border-radius: 0px;
	font-family: inherit;
	padding: 4px;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

@media screen and (min-width: 768px){
	.form-regular input[type="checkbox"],
	.form-regular input[type="radio"] {
		position: relative;
		z-index: 0;
		height:20px;
		box-sizing: border-box;
		vertical-align: middle;
		margin-right: 18px;
	}
	.form-regular input[type="checkbox"]:after,
	.form-regular input[type="radio"]:after {
		position: absolute;
		content:"";
		width:20px;
		height:20px;
		box-sizing: border-box;
		background-color: #fff;
		border: 0;
		padding: 9px;
		border-radius: 3px;
		display: inline-block;
		vertical-align: top;
		z-index: 1;
		left:-2px;
		top:-2px;
	}
	.form-regular input[type="radio"]:after {
		border-radius: 50%;
		top: -4px;
	}
	.form-regular input[type="checkbox"]:checked:after,
	.form-regular input[type="radio"]:checked:after {
		background-color: #d6b361;
		color: #fff;
	}
	.form-regular input[type="checkbox"]:checked:before,
	.form-regular input[type="radio"]:checked:before {
		/*content: '\2714';*/
		font-size: 18px;
		position: absolute;
		top: 0;
		left: 3px;
		color: #fff;
		line-height: 20px;
		z-index: 2;
	}
	.form-regular input[type="radio"]:checked:before {
		/*content: '';*/
		background: #fff;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		display: block;
		left: 6px;
		top: 4px;
	}
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}
input[type="checkbox"],
input[type="radio"]{
	vertical-align: middle;
}
@media screen and (min-width: 768px){
	input[type="checkbox"],
	input[type="radio"] {
		position: relative;
		z-index: 0;
		height:20px;
		box-sizing: border-box;
		vertical-align: middle;
		margin-right: 10px;
	}
	input[type="checkbox"]:after,
	input[type="radio"]:after {
		position: absolute;
		content:"";
		width:20px;
		height:20px;
		box-sizing: border-box;
		background-color: #fff;
		border: 1px solid #ddd;
		padding: 9px;
		border-radius: 3px;
		display: inline-block;
		vertical-align: top;
		z-index: 1;
		left:-2px;
		top:-1px;
	}
	input[type="radio"]:after {
		border-radius: 50%;
	}
	input[type="checkbox"]:checked:after,
	input[type="radio"]:checked:after {
		background-color: #d6b361;
		border-color: #d6b361;
		color: #fff;
	}
	input[type="checkbox"]:checked:before,
	input[type="radio"]:checked:before {
		content: '\2714';
		font-size: 13px;
		position: absolute;
		top: -1px;
		left: 3px;
		color: #fff;
		line-height: 20px;
		z-index: 2;
	}
	input[type="radio"]:checked:before {
		content: '';
		background: #fff;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		display: block;
		left: 4px;
		top: 5px;
	}
}
/* Buttons */
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 4px 26px;
	font-size: 12px;
	font-size: 0.865714286rem;
	line-height: 1.628571429;
	font-weight: normal;
	color: #fff;
	background-color: #d6b361;
	border:none;
	-webkit-transition:color 0.2s, background 0.2s;
	transition:color 0.2s, background 0.2s;
}
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #fff;
	background-color: #9e7e35;
}
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #fff;
	background-color: #000;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

.button,
.button1,
.button2,
.button3,
.button4{
	box-sizing: border-box;
	display: inline-block;
	color: #222a35;
	padding: 7px 20px;
	width:fit-content;
	min-width: 170px;
	text-align: center;
	text-transform: uppercase;
	font-size: 13px;
	text-decoration: none;
	line-height: 1.1;
	font-weight: 500;
	background-color: #d6b361;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-text-shadow: none;
	text-shadow: none;
	word-break: keep-all;
}
.button:hover,
.button1:hover,
.button2:hover,
.button3:hover,
.button4:hover{
	text-decoration: none!important;
}
.button1{
	border:1px solid #d6b361;
	color:#fff!important;
	background:#d6b361;
}
.button1:hover{
	color:#fff!important;
	border:1px solid #9e7e35;
	background:#9e7e35;
}
.button2{
	border:1px solid #fff;
	color:#fff!important;
	background:transparent;
}
.button2:hover{
	color:#fff!important;
	border:1px solid #d6b361;
	background:#d6b361;
}
.button3{
	border:1px solid #000;
	color:#000!important;
	background:transparent;
}
.button3:hover{
	color:#fff!important;
	border:1px solid #d6b361;
	background:#d6b361;
}
.button3:after{
	filter: brightness(0);
}
.button3:hover:after{
	filter: brightness(100);
}
.button-large{
	padding: 14px 30px;
	font-size: 21px;
	font-size: 1.5rem;
}
.button-small{
	padding: 5px 18px;
	width:auto;
}
.button-more:after{
	content:"";
	display: inline-block;
	height: 9px;
	width: 26px;
	background:url(images/arraw-more-white.svg) no-repeat;
	margin-left: 5px;
	transition: 0.2s all;
}
.button-more:hover:after{
	transform: translate(5px,0);
}

/* Responsive images */
img.entry-image,
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/*grids*/
.col-raw{
	margin:0 -28px 0 -28px;
	overflow: hidden;
}
.col-raw.col-narrow{
	margin-left: -5px;
	margin-right: -5px;
}
.col-raw.col-medium{
	margin-left: -16px;
	margin-right: -16px;
}
.col-raw.col-wide{
	margin-left: -28px;
	margin-right: -28px;
}
.col-raw.col-sticky{
	margin-left: 0;
	margin-right: 0;
}
.col-n{
	box-sizing: border-box;
	padding-left: 28px;
	padding-right: 28px;
}
.col-narrow .col-n{
	padding-left: 5px;
	padding-right: 5px;
}
.col-medium .col-n{
	padding-left: 16px;
	padding-right: 16px;
}
.col-wide .col-n{
	padding-left: 28px;
	padding-right: 28px;
}
.col-sticky .col-n{
	padding-left: 0;
	padding-right: 0;
}
@media screen and (max-width: 767px){
	.col-n-mb{
		float: left;
	}
	.col-1-mb{
		width:8.33%;
	}
	.col-2-mb{
		width:16.66%;
	}
	.col-3-mb{
		width:25%;
	}
	.col-4-mb{
		width:33.33%;
	}
	.col-5-mb{
		width:41.66%;
	}
	.col-6-mb{
		width:50%;
	}
	.col-7-mb{
		width:58.33%;
	}
	.col-8-mb{
		width:66.66%;
	}
	.col-9-mb{
		width:75%;
	}
	.col-10-mb{
		width:83.33%;
	}
	.col-11-mb{
		width:91.66%;
	}
	.col-12-mb{
		width:100%;
	}
	.hide-mb{
		display: none!important;
	}
	.col-raw{
		margin-left: -16px;
		margin-right: -16px;
	}
	.col-n{
		padding-left: 16px;
		padding-right: 16px;
	}
	.col-raw.col-medium{
		margin-left: -12px;
		margin-right: -12px;
	}
	.col-medium .col-n{
		padding-left: 12px;
		padding-right: 12px;
	}
	.col-raw.col-wide{
		margin-left: -24px;
		margin-right: -24px;
	}
	.col-wide .col-n{
		padding-left: 24px;
		padding-right: 24px;
	}
	.col-flex-mb{
		display: flex;
		flex-direction: row;
		align-items: center;
		flex-wrap: nowrap;
	}
	.col-flex-mb-reverse{
		flex-direction: row-reverse;
	}
}
@media screen and (min-width: 768px) and (max-width:1280px){/*tablet*/
	.col-n-tb{
		float: left;
	}
	.col-1-tb{
		width:8.33%;
	}
	.col-2-tb{
		width:16.66%;
	}
	.col-3-tb{
		width:25%;
	}
	.col-4-tb{
		width:33.33%;
	}
	.col-5-tb{
		width:41.66%;
	}
	.col-6-tb{
		width:50%;
	}
	.col-7-tb{
		width:58.33%;
	}
	.col-8-tb{
		width:66.66%;
	}
	.col-9-tb{
		width:75%;
	}
	.col-10-tb{
		width:83.33%;
	}
	.col-11-tb{
		width:91.66%;
	}
	.col-12-tb{
		width:100%;
	}
}
@media screen and (min-width: 1280px){
	.col-n{
		float: left;
	}
	.col-1{
		width:8.33%;
	}
	.col-2{
		width:16.66%;
	}
	.col-3{
		width:25%;
	}
	.col-4{
		width:33.33%;
	}
	.col-5{
		width:41.66%;
	}
	.col-6{
		width:50%;
	}
	.col-7{
		width:58.33%;
	}
	.col-8{
		width:66.66%;
	}
	.col-9{
		width:75%;
	}
	.col-10{
		width:83.33%;
	}
	.col-11{
		width:91.66%;
	}
	.col-12{
		width:100%;
	}
}
@media screen and (min-width: 768px){/*all except mobile*/
	.hide-pc{
		display: none!important;
	}
	.col-1-5{
		width: 20%;
	}
	.col-2-5{
		width: 40%;
	}
	.col-3-5{
		width: 60%;
	}
	.col-4-5{
		width: 80%;
	}
	.col-flex{
		display: flex;
		flex-direction: row;
		align-items: center;
		flex-wrap: nowrap;
	}
	.col-flex-reverse{
		flex-direction: row-reverse;
	}
	.col-inlineblock{
		font-size: 0;
		text-align: left;
	}
	.col-inlineblock .col-n{
		display: inline-block;
		float: none;
		vertical-align: top;
	}
}

div.gap{
	height: 20px;
}
div.gap.x2{
	height: 40px;
}
div.gap.x3{
	height: 60px;
}

/*responsive table*/
.table-responsive{
	width: 100%;
	overflow-y: auto;
	_overflow: auto;
	margin: 0 0 1em;
}
.table-responsive::-webkit-scrollbar{
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
}
.table-responsive::-webkit-scrollbar-thumb{
	border-radius: 8px;
	border: 3px solid #fff;
	background-color: rgba(0, 0, 0, .3);
}
.table-responsive table{
	/*min-width: 400px;*/
}
.txt-left{
	text-align: left!important;
}
.txt-right{
	text-align: right!important;
}
.txt-center{
	text-align: center!important;
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {

}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}

.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-previous,
.nav-next {
	line-height: 1.5;
	width: 47%;
}
.nav-previous a,
.nav-next a{
	text-decoration: none;
	display: block;
	padding: 8px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.nav-previous { border-left: 6px solid #000; }
.nav-next { border-right: 6px solid #000; }
.nav-previous a{ border-left: none; }
.nav-next a{ border-right: none; }
.nav-previous a:hover,
.nav-next a:hover{
	background-color: #eee;
	text-decoration: none;
}
.nav-previous a .meta-nav,
.nav-next a .meta-nav{ display: none;}

.nav-single,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	/*font-family: 'Roboto', '微软雅黑',  Helvetica, Arial, sans-serif;*/
	font-family: 'Montserrat', 'Noto Sans TC', '微软雅黑', Arial, sans-serif;
	font-weight: normal;
	text-rendering: optimizeLegibility;
	color: #000;
	background-color:#fff;
}
html[lang="zh-hans"] body {
	/*font-family: '阿里巴巴普惠体','Montserrat', 'Noto Sans TC', '微软雅黑', Arial, sans-serif;*/
}
a {
	outline: none;
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #333;
	text-decoration: underline;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
hgroup {
	overflow: hidden;
	margin: 0 auto;
	max-width: 1500px;
	max-width: 107.1428571rem;
	position: relative;
	width: 98%;
}
.site {
	padding: 0 21px;
	padding: 0 1.5rem;
}
.site-content {
	margin: 21px 0 0;
	margin: 1.5rem 0 0;
}
.widget-area {
	margin: 21px 0 0;
	margin: 1.5rem 0 0;
}

/* Header */
.site-header{
	-webkit-transition: all 0.2s; 
	-moz-transition: all 0.2s; 
	transition: all 0.2s;
}
.site-header * {
	-webkit-transition: all 0.2s; 
	-moz-transition: all 0.2s; 
	transition: all 0.2s;
}
.site-header {
	position: absolute;
	z-index: 10;
	padding: 0;
	width:100%;
	background-color:transparent;
	padding-top: 1px;

}
.site-header h1,
.site-header h2 {
	text-align: center;
	display: none;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 2px;
	margin-bottom: 0.15rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}


/* Navigation Menu */
.main-navigation {
	text-align: center;
	/*overflow: hidden;*/
	clear:both;
	/*background-color:#333;*/
}
.main-navigation li {
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 2.6;
}
.main-navigation a {
	color: #fff;
	text-decoration: none;
	display: block;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 13px;
	font-size: 0.9285714rem;
}
.main-navigation a:hover,
.main-navigation a:focus {
	/*background: #fafafa;*/
	color:#0a3e52;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
	width:100%;
	font-size: 0;
}
.main-navigation ul.nav-menu.toggled-on { display: inline-block; }

.menu-header-menu-container { 
	line-height: 0;
}
.main-navigation ul.nav-menu {
	height:0;
	overflow:hidden; 
	display: inline-block;
	-webkit-transition: height 0.5s; 
	-moz-transition: height 0.5s; 
	transition: height 0.5s;
}
.main-navigation ul.nav-menu li {
	border-top:1px solid rgba(255,255,255,0.2);
}
.main-navigation ul.nav-menu.toggled-on {
	/*height:336px;*/
}
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_ancestor > a {
	/*background: transparent;*/
	color:#d6b361;
}
#site-navigation-bg{
	position: absolute;
	background:rgba(255,255,255,0.18);
	z-index: 1;
	top:100%;
	left:0;
	width: 100%;
	height: 0;
	opacity: 0;
}
#site-navigation-bg.stay{
	height: 196px;
	opacity: 1;
}
/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 24px;
	margin-bottom: 1.714571429rem;
	padding-bottom: 24px;
	padding-bottom: 1.714571429rem;
	border-bottom:1px solid #EDEDED;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 10px;
	margin-bottom: 1rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.646153846;
}
.widget-area .widget li { margin-bottom:10px;}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
	text-decoration:none;
}
.widget-area .widget a:hover {
	color: #21759b;
	text-decoration:underline;
}
.widget-area .widget a:visited {
	color: #5789a0;
}
.widget-area #s {
	width: 45%;
	width: -webkit-calc(100% - 65px);
	width: calc(100% - 65px); /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	clear: both;
	line-height: 1.6;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	position: relative;
	background-color: #fff;
	color: #000;
}
footer[role="contentinfo"] .entry-content{
	font-size: 13px;
	font-size: 0.9285714rem;
}
footer[role="contentinfo"] .col-n{
	padding-top: 14px;
	padding-top: 1rem;
	padding-bottom: 14px;
	padding-bottom: 1rem;
}
footer[role="contentinfo"] a:hover{
	text-decoration: none;
	color:#d6b361;
}
/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title{
	line-height: 1.2;
	padding-bottom: 10px;
	padding-top: 2px;
	color:#333;
	border-bottom: 1px solid rgba(0,0,0,0.1);;
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 600;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.comments-link {
	margin-top: 14px;
	margin-top: 1rem;
	margin-bottom: 42px;
	margin-bottom: 3rem;
	text-align: center;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #999;
}

.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.8;
	font-size: 16px;
	font-size: 1.14258571rem;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
	font-weight: 400;
}
.entry-content h1,
.comment-content h1 {
	font-size: 28px;
	font-size: 2rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2,
.site-blocks .entry-content h2{
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.3;
	color:#000;
	font-weight: 500;
	text-align: left;
}
.entry-content h3,
.comment-content h3 {
	font-size: 18px;
	line-height: 1.4;
	font-weight: 600;
}
.entry-content h4,
.comment-content h4 {
	font-size: 16px;
	font-size: 1.14258571rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.8;
	font-size: 14px;
	font-size: 1rem;
}
.entry-content a,
.comment-content a {
	/*color: #FF8288;*/
	color: #000;
	/*font-size: 16px;
	font-size: 1.14258571rem;*/
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.8;
	font-size: 16px;
	font-size: 1.14258571rem;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 21px;
	margin: 0 0 0 1.5rem;
	line-height: 1.8;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.8;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 8px 16px;
	padding: 0.5714285713rem 1.142885714rem;
}
.entry-content pre:hover,
.comment-content pre:hover { 
	background-color:#fafafa;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 7px 28px 28px 0;
	margin: 0.5rem 2rem 2rem 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	font-size: 16px;
	font-size: 1.14258571rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table thead td,
.comment-content table thead td{
	font-weight: bolder;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 10px;
}
.site-content article {
	border-bottom: 1px solid #ededed;
	margin-bottom: 45px;
	margin-bottom: 3.042857143rem;
	padding-bottom: 45px;
	padding-bottom: 3.042857143rem;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
article.error404 { border-bottom: none}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 0;
}

/* =Single audio/video attachment view
-------------------------------------------------------------- */

.attachment .entry-content .mejs-audio {
	max-width: 400px;
}

.attachment .entry-content .mejs-container {
	margin-bottom: 24px;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
.comments-area .bypostauthor cite b {
	font-weight: bold;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}
#searchsubmit { padding:4px 8px;}
.site-logo {
	display:none;
	width:171px;
	height:29px;
	max-width:98%;
	float:none;
	margin:1.5rem auto 0 auto;
	overflow: hidden;
}
.site-logo img {width:100%; height:auto}
.site-title,
.site-description { clear:right;}
.tagcloud { overflow:hidden;}
.tagcloud a {padding:3px; float:left; display:inline-block; 
	-webkit-transition: background 0.2s ease;
	transition: background 0.2s ease;}
.tagcloud a:hover { text-decoration: none!important; background-color:#333; color: #fff!important }


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}
/*wp-pagenavi*/
.wp-pagenavi {
	clear: both;
	text-align: center;
	margin: 3rem auto 5rem auto;
}
.wp-pagenavi a,
.wp-pagenavi span {
	border:none;
	min-width: 30px;
	height: 30px;
	padding: 0 12px!important;
	margin:3px;
	display: inline-block;
	line-height: 30px;
	border-radius: 4px;
	vertical-align: middle;
	box-sizing: border-box;
}
.wp-pagenavi span.pages{
	width:auto;
	margin-right:10px;
}
.wp-pagenavi a{
	text-decoration: none;
	color:#4f4f4f;
	padding: 6px 12px;
	background-image:none;
	background-color:#f5f4f2;
	border:none;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	font-size:15px;
	font-size:1.07142857rem;
	display: inline-block;
}
.wp-pagenavi a:hover,
.wp-pagenavi a.current,
.wp-pagenavi span.current {
	color:#fff;
	background-image:none;
	background-color:#d6b361;
	text-decoration: none;
	font-weight: normal;
	font-size: 15px;
	font-size: 1.07142857rem;
}
.wp-pagenavi a:hover{
	background-color: #000f
}
.wp-pagenavi a.current,
.wp-pagenavi span.current {
	pointer-events: none;
}
.wp-pagenavi span.pages {
	border: none;
}
/*gravity forms*/
body .gform_wrapper ul li.gfield{
	margin-top: 10px!important;
}
.gform_wrapper.gf_browser_chrome .gform_body {
	width: 100%;
}
.gform_wrapper .top_label .gfield_label,
.gform_wrapper .left_label .gfield_label {
	font-weight: normal!important;
	font-size: 13px;
}
.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label{
	padding-top: 3px;
}

.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit] {
	margin: 0;
	font-size: 14px!important;
	color:#fff!important;
	padding-left: 30px;
	padding-right: 30px;
}
.gform_wrapper .left_label .gfield_label {
	width: 30%!important;
	margin: 0!important;
}
.gform_wrapper form .gform_body .left_label li.gfield_html_formatted,
.gform_wrapper form .gform_body .right_label li.gfield_html_formatted{
	margin-left: 0%!important;
	width: 100%;
}
.gform_wrapper .ginput_complex label {
	padding: .625em 0 1em;
}
.gform_confirmation_message{
	line-height: 1.6;
    font-size: 16px;
    color: #0a3e52;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]){
	padding: 6px 6px;
	
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper textarea,
.gform_wrapper select{
	background: #fff;
}
body .gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked+label{
	font-weight: normal;
}
body .gform_wrapper .top_label div.ginput_container{
	margin-top: 2px!important;
}
body .gfield_checkbox_grid .gfield_checkbox {
	display: grid;
	gap: 12px 4px;
	grid-template-columns: repeat(2, 1fr);
	padding: 10px 0;
}
/*error message*/
body .gform_wrapper li.gfield_error div.ginput_complex.ginput_container label,
body .gform_wrapper li.gfield_error ul.gfield_checkbox,
body .gform_wrapper li.gfield_error ul.gfield_radio{
	color:#f90;
}
body .gform_wrapper .field_description_below .gfield_description {
	padding-top: 7px;
	padding-bottom: 7px;
}
body .gform_wrapper .validation_message{
	
}
body .gform_wrapper li.gfield.gfield_error,
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background-color: #ffe6b1!important;
	border-top: 1px solid #f90!important;
	border-bottom: 1px solid #f90!important;
}
body .gform_wrapper div.validation_error {
	color: #f90;
	border-top: 0;
	border-bottom: 0;
	line-height: 1.5;
	padding: 0;
	margin: 10px 0;
	display: none;
}
body .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: 100%!important;
    background: transparent!important;
	border: 0!important;
	margin: 0!important;
}
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-top: 0;
    color: #f90;
}
body .gform_wrapper .top_label div.ginput_container{
	margin-top: 2px!important;
}
body .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body .gform_wrapper li.gfield_error textarea,
body .gform_wrapper li.gfield_error select{
	border-color:#f90; 
}
body .gform_wrapper .gform_validation_errors{
	border-radius: 0;
	box-shadow: none;
	display: none;
}
.gform_required_legend{
	display: none;
}
@media only screen and (max-width: 641px){
	body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
		line-height: 1.5;
		min-height: auto;
		width: 100%;
	}
}
@media screen and (min-width: 768px) {
	.gform_wrapper .left_label div.ginput_complex,
	.gform_wrapper .right_label div.ginput_complex {
		width: 35.5%!important;
	}
	body .gfield_checkbox_grid .gfield_checkbox {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (min-width: 1200px) {
	body .gform_wrapper ul.gform_fields li.gfield,
	body .gform_wrapper li.gfield.gfield_error.gfield_contains_required {
		padding-right: 200px;
	}
	body .gform_wrapper ul.gform_fields li.gfield.form-tc {
		padding-right: 0;
	}
}
/*baidu map*/
.iw_poi_title {color:#e83c16;font-size:14px;font-weight:bold;overflow:hidden;padding-right:13px;white-space:nowrap}
.iw_poi_content {font:12px arial,sans-serif;overflow:visible;padding-top:4px;white-space:-moz-pre-wrap;word-wrap:break-word}


/* =Media queries
-------------------------------------------------------------- */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}
/* Minimum width of 768 pixels. */
@media screen and (min-width: 768px) {
	.site {
		margin: 0 auto;
		max-width: 1200px;
		/*max-width: 71.4285rem;
		overflow: hidden;*/
	}
	.site-narrow{
		max-width: 880px;
	}
	hgroup{
		overflow: visible;
	}
	.site-content {
		float: left;
		/*width: 65.104166667%;*/
		width: 76%;
	}
	body.template-front-page .site-content,
	body.attachment .site-content,
	body.full-width .site-content,
	div.full-width,
	section.full-width {
		width: 100%;
	}
	.widget-area {
		float: right;
		/*width: 26.041666667%;*/
		width: 20%;
	}
	.site-header {
		z-index: 1;
		position: absolute;
		background-color: transparent;
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
		float:left;
		width: 80%;
		width:-webkit-calc(100% - 95px);
		width:calc(100% - 95px);
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.546153846;
		margin-bottom: 0;
	}
	
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
}

/* Minimum width of 1024 pixels. */
@media screen and (min-width: 1024px) {
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
	.site-logo{
		display: block;
		float:left;
		margin:24px 0;
		margin-left:0;
	}
	.main-navigation ul.nav-menu{
		overflow: visible;
	}
	.main-navigation ul.nav-menu.toggled-on {
		margin-top: 0;
		margin-bottom: 0
	}
	.main-navigation ul.nav-menu li {
		border-top:none;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		height:auto!important;
		display: inline-block !important;
		text-align: center;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li {
		padding:0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
		padding:0 21px;
		padding:0 1.5rem;
		display: block;
		color: #fff;
		line-height: 3;
		/*text-transform: uppercase;*/
		white-space: nowrap;
		-webkit-transition:0.2s all;
		transition:0.2s all;
	}

	.main-navigation .current-menu-item a:hover,
	.main-navigation .current-menu-ancestor a:hover,
	.main-navigation .current_page_item a:hover,
	.main-navigation .current_page_ancestor a:hover,
	.main-navigation a:hover,
	.main-navigation a:focus{
		/*color: #d6b361;*/
		color: #fff;
		font-weight: 800;
		/*background-color: #fff;*/
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a  {
		/*color: #d6b361;*/
		color: #fff;
		/*background-color: #fff;
		/*font-weight: bolder;*/
		/*background-image: url(images/bg_nav_current.png);
		background-repeat: repeat-x;*/
	}
	.main-navigation .nav-menu > li > a:hover{
		font-weight: 500;
	}
	.main-navigation .nav-menu > .current-menu-item,
	.main-navigation .nav-menu > .current-menu-ancestor,
	.main-navigation .nav-menu > .current_page_item,
	.main-navigation .nav-menu > .current_page_ancestor{
		position: relative;
	}
	.main-navigation .nav-menu > li:hover > a:after{
		content:"";
		display: block;
		position: absolute;
		width:-webkit-calc(100% - 70px);
		width:calc(100% - 70px);
		height:1px;
		bottom:0;
		background:#fff;
	}
	.main-navigation li {
		position: relative;
	}
	.main-navigation li ul {
		margin: 0;
		padding: 14px 0;
		position: absolute;
		top: 100%;
		z-index: 50;
		height: 1px;
		width: 1px;
		overflow: hidden;
		clip: rect(1px, 1px, 1px, 1px);
		left:0;
		opacity: 0;
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover > ul,
	.main-navigation ul li:focus > ul,
	.main-navigation .focus > ul {
		border-left: 0;
		clip: inherit;
		overflow: inherit;
		height: inherit;
		width: inherit;
		padding: 28px 0;
		opacity: 1;
	}
	.main-navigation li ul li a {
		background: transparent;
		text-align: left;
		border-top: 0;
		display: block;
		line-height: 3;
		width: 250px;
		white-space: normal;
		font-weight: 300;
	}
	.main-navigation li ul li a:hover,
	.main-navigation li ul li a:focus {
		color: #fff;
		font-weight: 800;
	}

	.main-navigation {
		/*float: left;*/
		clear: none;
		width: 100%;
		margin-top: 0;
		display: inline-block;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		text-align: center;
	}
	.main-navigation li a{
		padding: 0 35px;
		padding: 0 2.5rem;
	}
	.site-blocks{
		padding: 0 28px;
		padding: 0 2rem;
	}

}
/* Minimum width of 1200 pixels. */
@media screen and (min-width: 1200px) {
	.site-header{
		z-index: 10;
		top:0;
	}
	.site-logo{
		margin: 48px 0 20px 0;
		width:251px;
		height:44px;
	}
	.admin-bar .site-header{
		top:32px;
	}
	.main-navigation li {
		padding: 0 0;
		padding: 0 0;
	}
	.main-navigation li a {
		background-color: transparent;
		padding: 0 35px;
		padding: 0 2.5rem;
		line-height: 3.8;
	}

	/* dynamic floating nav bar */
	.site-header.scroll {
		min-height: 0;
		box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
		/*position: fixed;
		z-index: 10;
		top: 0;*/
		background-color: #0a3e52;
		text-shadow: none;
	}
	.site-header.scroll .main-navigation {
		margin-top:8px;
	}
	.site-header.scroll .main-navigation li a {
		line-height: 3;
		/*color: #333;*/
	}
	.site-header.scroll .main-navigation li ul a {
		background: #0a3e52;
	}	
	.site-header.scroll .main-navigation .current-menu-item > a,
	.site-header.scroll .main-navigation .current-menu-ancestor > a,
	.site-header.scroll .main-navigation .current_page_item > a,
	.site-header.scroll .main-navigation .current_page_ancestor > a,
	.site-header.scroll .main-navigation a:hover,
	.site-header.scroll .main-navigation a:focus{
		/*color: #0a3e52;*/
		/*background-color: #000;*/
	}
	.site-header.scroll .main-navigation .nav-menu > .current-menu-item:after,
	.site-header.scroll .main-navigation .nav-menu > .current-menu-ancestor:after,
	.site-header.scroll .main-navigation .nav-menu > .current_page_item:after,
	.site-header.scroll .main-navigation .nav-menu > .current_page_ancestor:after {
		top: 46px;
	}
	.site-header.scroll .site-logo {
		margin-top:5px;
		margin-bottom:5px;
		width: 209px;
		height: 45px;
	}
}

/*return Top button*/
#returnTop {
    background-color:#222;
    width:40px;
    height:40px;
    display:block;
    right:20px;
    bottom:20px;
    position:fixed;
    line-height:50px;
    color:#fff;
    -webkit-opacity:1;
    -moz-opacity:1;
    opacity:1;
    -webkit-transition: background 0.2s, -webkit-opacity 0.2s; 
	-moz-transition: background 0.2s, -moz-opacity 0.2s; 
	transition: background 0.2s, opacity 0.2s;
	z-index: 6;
	border-radius: 5px;
}
#returnTop_a{
	position: absolute;
	top: -2px;
	left: 8px;
	width: 0;
	height: 0;
	border-width: 10px 12px;
	border-style: dashed dashed solid;
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #FFF;
	-webkit-transition: top 0.2s; 
	-moz-transition: top 0.2s; 
	transition: top 0.2s;
}
#returnTop_b{
	position: absolute;
	top: 18px;
	left: 14px;
	width: 12px;
	height: 12px;
	background: #FFF;
	-webkit-transition: top 0.2s; 
	-moz-transition: top 0.2s; 
	transition: top 0.2s;
}
#returnTop.hide{
	-webkit-opacity:0;
	-moz-opacity:0;
	opacity:0;
	background-color:transparent;
	filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#00000000', endColorstr='#00000000');
	pointer-events: none;
}
#returnTop.hide #returnTop_a,
#returnTop.hide #returnTop_b { display: none }
:root #returnTop.hide { filter:none; }
#returnTop:hover {background-color:#0a3e52;}
#returnTop:hover #returnTop_a { top: -4px; }
#returnTop:hover #returnTop_b { top: 16px; }

/*QR Code button*/
#qrCode {
	background:url(images/icon_qrcode.gif) center center no-repeat;
	background-size: 50% 50%;
	background-color:#222;
	width:40px;
	height:40px;
	display:none;
	right:20px;
	bottom:20px;
	position:fixed;
	line-height:50px;
	color:#fff;
	-webkit-opacity:1;
	-moz-opacity:1;
	opacity:1;
	-webkit-transition: background 0.2s, -webkit-opacity 0.2s;
	-moz-transition: background 0.2s, -moz-opacity 0.2s;
	transition: background 0.2s, opacity 0.2s;
	z-index: 6;
	border-radius: 5px;
}

#qrCode:hover {
	background-color:#0a3e52;
}
#qrCode_cont {
	position: absolute;
	bottom: 0;
	right: 50px;
	background:no-repeat #fff;
	overflow: hidden;
	height:0;
	width: 0;
	border:none;
	-webkit-transition: height 0.2s, width 0.2s;
	-moz-transition: height 0.2s, width 0.2s;
	transition: height 0.2s, width 0.2s;
}
#qrCode:hover #qrCode_cont{
	text-align: center;
	height:168px;
	width: 147px;
	padding:5px;
	border:1px solid #f4f4f4;
	line-height: 1;
}
#qrCode #qrCode_cont img {
	display: inline-block;
}
#qrCode #qrCode_cont span {
	display: inline-block;
	color:#333;
	font-size: 12px;
}
/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
	#qrCode{
		display:block;
	}
	#returnTop {
	    bottom:70px;
	}
}

.video-js { max-width:100% }
.vjs-poster { background-color:transparent; }
.video-js .vjs-big-play-button {
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: none;
	width: 60px;
	height: 60px;
	line-height: 56px;
	border:3px solid #fff;
	border-radius: 50%;
	background-color: transparent;
}
.video-js .vjs-control:before {
	line-height: 1.9;
}

/*custome items*/
.txt-white{
	color:#fff!important;
}
.txt-gray{
	color:#999!important;
}
.txt-red{
	color:#f00!important;
}
.txt-black{
	color:#000!important;
}
.txt-thin{
	font-weight: 300!important;
}
.txt-thinner{
	font-weight: 100!important;
}
.txt-regular{
	font-weight: 400!important;
}
.txt-thinner .txt-regular{
	font-weight: 500!important;
}
.txt-bold{
	font-weight: 600!important;
}
.txt-bolder{
	font-weight: 800!important;
}
.txt-boldest{
	font-weight: 900!important;
}
.txt-smaller{
	font-size: 13px!important;
}
.txt-bigger{
	font-size: 19px!important;
}
.txt-large{
	font-size: 21px!important;
}
.txt-italic{
	font-style: italic!important;
}
a.txt-underline{
	text-decoration: underline;;
}
a.txt-underline:hover{
	text-decoration: none;;
}
.txt-cap{
	text-transform: uppercase!important;
}
.txt-cap-initial {
	text-transform: initial!important;
}
.txttab,
input[type="submit"].txttab{
	box-sizing: border-box;
	vertical-align: middle;
	display: inline-block;
	font-weight: 600;
	text-transform: uppercase;
	color: #000;
	font-size: 12px;
	line-height: 21px;
	text-align: center;
	padding:2px 12px;
	border-radius: 0;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.txttab-yellow,
input[type="submit"].txttab-yellow{
	background-color: #FFD600;
	text-decoration: none;
}
.txttab-blue{
	background-color: #d6b361;
	color:#fff;
	text-decoration: none;
}
a.txttab:hover,
input[type="submit"].txttab:hover{
	text-decoration: none;
	background-color: #000;
	color:#fff!important;
}
.tag-title{
	background:#d6b361;
	border-radius: 15px;
	color: #fff;
	font-size: 13px;
	font-size: 0.925714rem;
	vertical-align: middle;
	display: inline-block;
	width: auto;
	text-align: center;
	line-height: 16px;
	height: 16px;
	font-weight: 600;
	text-transform: uppercase;
	padding:2px 15px;
	margin-bottom: 21px;
}
ol.list-numbers{
	padding-left:18px;
	list-style: decimal;
}
.content-narrow{
	margin-left: auto;
	margin-right: auto;
	max-width: 610px;
}
/*custome header*/
#hgroup-top{
	overflow-x: hidden;
	/*border-bottom: 1px solid #fff;*/
}
#hgroup-search{
	width: 350px;
	color: #fff;
	float: right;
	text-align: right;
}
#hgroup-search form{
	display: inline-block;
	display: none;
	vertical-align: middle;
	border-bottom: 1px solid #fff;
}
#hgroup-search form input{
	vertical-align: middle;
	box-sizing: border-box;
	width:174px;
	border:0;
	background: transparent;
	color: #fff;
}
#hgroup-search #s:focus{
	width: 220px;
}
#hgroup-search form input:focus{
	outline: 0;
}
#hgroup-search form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: transparent;
	opacity: 1; /* Firefox */
}
#hgroup-search form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: transparent;
}
#hgroup-search form input::-ms-input-placeholder { /* Microsoft Edge */
	color: transparent;
}

#hgroup-search form input:focus::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #fff;
}
#hgroup-search form input:focus:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #fff;
}
#hgroup-search form input:focus::-ms-input-placeholder { /* Microsoft Edge */
	color: #fff;
}


.light-nav #hgroup-search form{
	border-bottom-color: #000;
}
.light-nav #hgroup-search form input{
	color: #000;
}
.light-nav #hgroup-search form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: transparent;
}
.light-nav #hgroup-search form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: transparent;
}
.light-nav #hgroup-search form input::-ms-input-placeholder { /* Microsoft Edge */
	color: transparent;
}
.light-nav .main-navigation .nav-menu > li:hover > a:after{
	background:#000;
}
#hgroup-search #searchsubmit{
	vertical-align: middle;
	width: 31px;
	height: 31px;
	background:url(images/icon-search.png) no-repeat center center;
	background-size: 18px 18px;
}
#hgroup-language{
	color: #fff;
	width: 135px;
	text-align: right;
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
}
.wpml-ls-legacy-list-horizontal{
	padding:0;
	margin-top: 10px;
}
.wpml-ls-legacy-list-horizontal a{
	padding:2px 10px;
}
.wpml-ls-item-legacy-list-horizontal{
	border-left: 1px solid rgba(255,255,255,0.5);
}
.wpml-ls-item-legacy-list-horizontal:first-child{
	border-left: none;
}
#hgroup-language a{
	color: #eee;
	opacity: 0.5;
}
#hgroup-language a:hover{
	text-decoration: none;
	color: #fff;
	opacity: 1;
}
#hgroup-language .wpml-ls-current-language a{
	color: #fff;
	font-weight: 600;
	opacity: 1;
}
.light-nav #hgroup-search #searchsubmit{
	background-image:url(images/icon-search-black.png);
}
.light-nav #hgroup-language{
	color:#000;
}
.light-nav #hgroup-language a{
	color: #000;
}
.light-nav #hgroup-language a.current{
	color: #000;
}
.light-nav .main-navigation li a {
	color: #000;
}
.light-nav .main-navigation .current-menu-item a:hover,
.light-nav .main-navigation .current-menu-ancestor a:hover,
.light-nav .main-navigation .current_page_item a:hover,
.light-nav .main-navigation .current_page_ancestor a:hover,
.light-nav .main-navigation a:hover,
.light-nav .main-navigation a:focus{
	color: #000;
}
.light-nav #site-navigation-bg {
	background: rgba(0,0,0,0.04);
}
.light-nav .site-logo img{
	opacity: 0;
}
.light-nav .site-logo{
	background:url(images/logo-en.png) no-repeat center center;
	background-size: 100% auto;
}
@media screen and (min-width:1024px){
	.main-navigation{
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}
	.light-nav .main-navigation {
		border-bottom: 1px solid rgba(0,0,0,0.3);
	}
	#hgroup-search{
		margin-top: 24px;
	}
}
/*custome footer*/
#block-more{
	background-color: #f3f3f3;
	min-height:50px;
}
#block-more h2{
	font-weight: 600;
	margin-bottom: 12px;
}
#block-more .col-n{
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
}
#block-more .site{
	margin: 21px auto 42px auto;
    margin: 1.5rem auto 3rem auto;
}
#block-more .post-thumbnail,
#block-more .post-thumbnail img{
	width: 100%;
	height: auto;
	font-size: 0;
}
#block-more .post-txt{
	background-color: #fff;
	padding:20px 14px;
	box-sizing: border-box;
	min-height: 230px;
}
@media screen and (min-width: 768px){
	#block-more .post-txt{
		min-height: auto;
		padding:30px 20px;
	}
}
#block-more .post-title{
	display: block;
	font-weight: 600;
	font-size: 15px;
	text-transform: uppercase;
	margin-bottom: 14px;
	margin-bottom: 1rem;
	line-height: 1.3;
}
#block-more .post-title:hover{
	text-decoration: none;
	color:#d6b361;
}
#block-more .post-sub {
	line-height: 1.6;
	min-height: 80px;
	font-size: 13px;
}
#block-more .post-sub p{
	font-size: 13px;
	margin-bottom: 0;
	line-height: 1.4;
}
#block-more .post-more-link{
	font-size: 13px;
	font-weight: 500;
}
#block-more hr{
	margin:10px 0;
	background-color: #666;
}
#block-more .post-more-link:hover{
	text-decoration: none;
	color:#d6b361;
}
.footer-menu{
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	text-align: left;
	line-height: 1.95;
	width: 49%;
}
@media screen and (min-width: 768px){
	.footer-menu{
		width: 19%;
	}
}
@media screen and (min-width: 1200px){
	.footer-menu{
		width: 17%;
	}
}
.footer-menu a{
	display: block;
	color:#666;
	text-transform: uppercase;
	padding-bottom: 5px;
}
.footer-menu a.main{
	margin-top: 21px;
	font-weight: 600;
	color:#000;
}
.footer-media{
	clear: both;
	padding-top: 21px!important
}
.footer-media .icn-social{
	vertical-align: middle;
	display: inline-block;
	font-size: 26px;
	margin-right: 15px;
}
.icn-social-wechat{
	position: relative;
}
.icn-social-wechat .qr{
	position: absolute;
	bottom:26px;
	right: 26px;
	width: 150px;
	height: 150px;
	max-width: inherit;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
	transform: scale(0,0);
	transform-origin: 100% 100%;
}
.icn-social-wechat:hover .qr{
	transform: scale(1,1);
}
.footer-bottom{
	border-top: 1px solid #ddd;
}
.logo-footer{
	display: none;
	width: 140px;
	height: auto;
	margin-top: 10px;
	float: right;
}
footer .site-info {
	margin:0 auto;
	padding-top: 28px;
	padding-bottom: 5px;
	max-width: 1500px;
}
/*homepage*/
.site-blocks{
	background-position: center center;
}
.site-blocks p,
.site-blocks ul,
.site-blocks ol{
	margin: 14px 0 21px 0;
	margin: 1rem 0 1.5rem 0;
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.65;
}
.site-blocks p:last-child,
.site-blocks ul:last-child,
.site-blocks ol:last-child{
	margin-bottom: 0;
}
.site-blocks h1 {
	font-size:21px;
	font-size:1.5rem;
	font-weight: 300;
	margin:21px 0 21px 0;
	margin:1.5rem 0 1.5rem 0;
	line-height: 1.5;
}
.site-blocks h2 {
	line-height: 1.6;
	font-size: 28px;
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 9px;
	color: #000;
}
.site-blocks .entry-content h2 {
    margin: 24px 0;
    margin: 1.714285714rem 0;
}
.site-blocks .entry-content h2:first-child,
.site-blocks .entry-content h3:first-child{
	margin-top: 0;
}
.site-blocks .site{
	overflow: hidden;
	margin:70px auto;
	margin:5rem auto;
}
.site-blocks .sub-title{
	display: block;
	color: #999;
	font-size: 10px;
	text-transform: uppercase;
	margin-bottom: 21px;
	margin-top: 0;
}
.site-blocks .sub-title:hover{
	/*text-decoration: none;
	color:#111;*/
}
#home-video-pop{
	display: none;
	position: fixed;
	left:0;
	top:0;
	z-index: 999;
	width: 100%;
	height: 100%;
}
#home-video-pop video{
	width: 100%;
	height: 100%;
	object-fit:cover;
}
#homeVidepClose{
	position: absolute;
	width: 27px;
	height: 27px;
	right:40px;
	top:40px;
	z-index: 2;
	background:url(images/close.png);
	cursor: pointer;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
#homeVidepClose:hover{
	-webkit-transform:rotate(-90deg);
	transform:rotate(-90deg);
}
.header-vedio-bg{
	position: absolute;
	z-index: 0;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center
}
.header-vedio-bg-mask{
	position: absolute;
	z-index: 1;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
	background:rgba(0,0,0,0.35);
}
#top-home .swiper-slide{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
#top-home{
	max-height: 55vw;
}
#mySwiperHomeTop{
	width: 100%;
	height: 100%;
}
#top-home,
#mySwiperHomeTop .swiper-slide,
#homeVideo{
	height: 100vh;
	max-height: 1200px;
}
#homeVideo{
	max-width: initial;
}
#top-home .entry-title-sub{
	font-size: 14px;
}
.spec-capsule.small{
	font-size: 14px;
	font-size: 1rem;
	padding:7px 21px;
}
.spec-capsule.tiny{
	font-size: 14px;
	font-size: 1rem;
	padding:2px 16px;;
}
.spec-capsule.black{
	background-color: #000;
}
.spec-capsule.yellow{
	background-color: #f6b900;
	color: #000;
}
.spec-capsule.red{
	background-color: #C11500;
	color: #fff;
}
.spec-capsule.green{
	background-color: #61b235;
	color: #fff;
}
#top-home .entry-title:after{
	display: none;
}
#top-home a.btn-video{
	background-color: #C11500;
	display: inline-block;
	margin-top: 14px;
	margin-top: 1rem;
	padding:8px 28px;
}
#top-home a.btn-video:hover{
	color:#fff;
	background-color: #000;
	text-decoration: none;
}
#mySwiperHomeTop .swiper-slide{
	width: 100%;
	height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#top-home time{
	color: rgba(255,255,255,0.7);
	letter-spacing: 4px;
	font-size: 13px;
	display: block;
	margin:14px 0;
}
#top-home .title-news{
	position: relative;
	font-size: 25px;
	max-width: 560px;
	margin-bottom: 40px;
	line-height: 1.2;
	font-weight: 700;
    letter-spacing: 0;
}
#top-home .title-news:after{
	display: block;
	margin:0;
	position: absolute;
	content:"";
	width: 400px;
	max-width: 80%;
	height: 1px;
	background:#fff;
	bottom: -20px;
	left: 0;
}
#top-home .logo{
	width: 280px;
	margin-top: 7px;
	margin-bottom: 7px;
	max-width: 80%;
	height: auto;
}
#top-home .top-inner-anchor-list{
	border-top: 0;
}
.anchor-link.current{
	color: #d6b361;
	opacity: 1;
}
#herolist a{
	position: relative;
	display: inline-block;
}
#herolist a:after{
	position: absolute;
	content:"";
	background:#fff;
	width: 100%;
	height: 2px;
	left: 0;
	top: 25px;
	z-index: 0;
}
#herolist a .timebar{
	position: absolute;
	content:"";
	background:#d6b361;
	width: 0%;
	height: 2px;
	left: 0;
	top: 25px;
	z-index: 1;
	-webkit-transition:width 0.1s;
	transition:width 0.1s;
}
#anchor-link-2.current .timebar,
#anchor-link-3.current .timebar,
#anchor-link-4.current .timebar,
#anchor-link-5.current .timebar,
#anchor-link-6.current .timebar{
	-webkit-animation: 6s sliderTimebar 1 linear;
	animation: 6s sliderTimebar 1 linear;
}
	@-webkit-keyframes sliderTimebar {
		0%{ width:0; }
		100% { width:100%; }
	}
	@keyframes sliderTimebar {
		0%{ width:0; }
		100% { width:100%; }
	}
@media screen and (min-width: 1500px){
	#homeVideo{
		width: 100%;
		height: auto;
		/*max-height:initial;*/
		height: 100%;
		object-fit: cover;
	}
}
@media screen and (max-width: 1200px){
	#top-home,
	#mySwiperHomeTop .swiper-slide,
	#homeVideo{
		height: 72vw;
		max-height: 72vw
	}
}
@media screen and (max-width: 1023px){
	#top-home .title-news{
		position: relative;
		font-size: 18px;
	}
	#herolist{
		display: none;
	}
	#homeVideo{
		width: 100%;
		height: 100%;
		object-fit: cover;
		max-height: none;
	}
}
@media screen and (max-width: 767px){
	#top-home .entry-title-sub{
		font-size: 13px;
		font-weight: 300!important;
	}
	#top-home,
	#mySwiperHomeTop .swiper-slide {
		height: 120vw;
		max-height: 120vw
	}
}
body .site-blocks .site-big-width{
	max-width: 1500px;
	overflow: visible;
}
#block-home-2 .site-big-width{
	margin-top: 0;
	margin-bottom: 0;
}
#block-home-taihao .site-big-width,
#block-home-marketing .site-big-width{
	margin-bottom: 0;
}
.block-home-item{
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	box-sizing: border-box;
	color:#fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.block-home-item p{
	margin-top: 0;
	margin-bottom: 14px;
}
.txt-home-style-1{
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 13px;
	font-weight: 300;
	display: block;
	margin-bottom: 14px;
}
.txt-home-style-2{
	text-transform: uppercase;
	letter-spacing: 0;
	font-weight: 700;
	font-size: 21px;
	font-size: 1.5rem;
	display: block;
	line-height: 1.2;
	margin-bottom: 14px;
}
.txt-home-style-3{
	text-transform: uppercase;
	letter-spacing: 0;
	font-weight: 800;
	font-size: 28px;
	font-size: 2rem;
	display: block;
	margin-bottom: 14px;
}
#block-home-2-1{
	background-image:url(images/home-about@2x.jpg);
	height: 500px;
	text-align: center;
	justify-content: flex-start;
	padding-top: 80px;
}
#block-home-2-1 .logo{
	width: 200px;
	height: auto;
	margin-bottom: 20px;
}
#block-home-2-2{
	background-image:url(images/home-thailand-mb.webp);
	height: 500px;
	text-align: center;
	justify-content: center;
	padding:0 50px;
}
#block-home-8-1{
	background-image:url(images/home-marketing.webp);
	height: 500px;
	text-align: center;
	justify-content: center;
	padding:0 50px;
}

html[lang="en-US"] #block-home-2-1 .logo{
	transform: translate(20px, 0);
}
.site-big-width .dot{
	width:24px;
	height: 24px;
	display: inline-block;
	vertical-align: middle;
	background-color: #d6b361;
	border-radius: 50%;
	margin: 10px 5px 10px 0;
}
#block-home-3-1,
#block-home-3-2{
	height: 400px;
	padding: 0 40px;
	text-align: center;
	color:#fff;
}
#block-home-3-1{
	background-image:url(images/home-factory.jpg);
	margin-bottom: 60px;
	margin-bottom: 5rem;
}
#block-home-3-2{
	background-image:url(images/home-process.jpg);
}
#block-home-4-1{
	background-image:url(images/home-quality.jpg);
	height: 500px;
	padding: 0 20px 200px 20px;
	text-align: center;
	color:#fff;
}
#block-home-3 .site,
#block-home-4 .site,
#block-home-5 .site,
#block-home-6 .site,
#block-home-7 .site,
#block-home-8 .site,
#block-home-9 .site,
#block-home-product .site{
	margin-bottom: 0;
}
#block-home-3 .site,
#block-home-4 .site,
#block-home-5 .site,
#block-home-6 .site,
#block-home-7 .site,
#block-home-product .site,
#block-home-taihao .site,
#block-home-marketing .site{
	margin-top: 60px;
}
#block-home-5-1{
	background: #ececec;
	height: 300px;
	color: #000;
	padding:0 40px;
}
#block-home-5-2{
	background-image: url(images/home-rnd.jpg);
	height: 300px;
}
#block-home-6-1{
	color: #fff;
	background-color: #595458;
	background-image: url(images/home-team.jpg);
	background-position: center bottom;
	background-size: 110% auto;
	height: 420px;
	padding:0 28px;
	padding-bottom: 170px;
}
#block-home-bottom hr{
	margin:0;
}
.list-points{
	width: 100%;
	max-width: 600px;
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}
.list-points li{
	text-align: center;
}
.list-points li:before{
	width: 22px;
	height: 22px;
	content: "";
	background:#d6b361;
	border-radius: 50%;
	display: block;
	margin: 0 auto 10px auto;
	vertical-align: middle;
}
#block-home-7-1{
	background: url(images/home-certificates.jpg) no-repeat;
	color: #000;
	align-items: flex-start;
	padding:0 40px;
	height: 300px;
	background-position: 30%;
}
#list-business-partners-title{
	color: #000;
	font-size: 21px;
	text-align: center;
	font-weight: 700;
	width: fit-content;
	display: block;
	margin: 0 auto;
	background: #fff;
	margin-bottom: -15px;
	position: relative;
	z-index: 2;
	padding: 0 15px;
}
#list-business-partners{
	border-top: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	padding: 40px 0;
}
#list-business-partners dd{
	margin-right: 15px;
	width: 164px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 82px;
}
/*#list-business-partners dd:last-child{
	margin-right: 0;
}*/
#list-business-partners dd img{
	max-width: 100%;
	height: auto;
	display: inline-block;
}
#block-home-9 h2{
	color: #000;
	font-size: 21px;
	text-align: center;
	font-weight: 700;
	margin-bottom: 20px;
}
#mySwiperHomeExhibitions .swiper-slide{
	width: 200px;
}
#mySwiperHomeExhibitions .swiper-slide img{
	width: 100%;
	height: auto;
}
#home-product-accordion{
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}
.home-product-accordion-item{
	position: relative;
	background:#d6b361;
	width: 100%;
	height: 80px;
	overflow: hidden;
	transition: 0.5s all;
}
.home-product-accordion-item:not(.current){
	cursor: pointer;
}
.home-product-accordion-item.current{
	cursor: default;
	height: 390px;
}
.home-product-accordion-item-bg{
	position: absolute;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: no-repeat;
	background-position: 75% center;
	background-size: 215% auto;
	transition: 0.5s all;
	opacity: 0.3;
}
.home-product-accordion-item-txt{
	color: #fff;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding:0 40px ;
	transition: 0.5s all;
	opacity: 0;
}
.current .home-product-accordion-item-txt{
	opacity: 1;
}
.home-product-accordion-item-txt h2{
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
}
#home-product-accordion-item-1 .home-product-accordion-item-bg{
	background-image: url(images/product-category-2.webp);
	background-position:50% 20%;
}
#home-product-accordion-item-2 .home-product-accordion-item-bg{
	background-image: url(images/product-category-3.webp);
	background-position:50% 20%;
}
#home-product-accordion-item-3 .home-product-accordion-item-bg{
	background-image: url(images/product-category-1.webp);
	background-position:75% 20%;
}
.home-product-accordion-item.current .home-product-accordion-item-bg{
	opacity: 1;
}
.home-product-accordion-item-title{
	position: absolute;
	left: 20px;
    top: 35px;
	z-index: 2;
	right: 0;
	transition:0s;
	width: 150px;
	height: 660px;
	display: block;
	transition: 0.3s all;
}
.current .home-product-accordion-item-title{
	opacity: 0;
}
.home-product-accordion-item-title h2{
	margin:0;
	line-height: 1;
	color: #fff;
	font-weight: 800;
	font-size: 56px;
	text-transform: uppercase;
	white-space: nowrap;
}
@media screen and (min-width: 768px){
	#home-product-accordion{
		flex-direction: row;
	}
	#block-home-3-1,
	#block-home-3-2{
		margin-bottom: 0;
	}
	#block-home-6-1{
		color: #fff;
		height:720px;
		background-size: cover;
		padding-bottom: 400px;
	}
	.home-product-accordion-item{
		width: 100px;
		height: 660px;
	}
	.home-product-accordion-item.current{
		width: calc(100% - 200px);
		height: 660px;
	}
	.home-product-accordion-item-bg{
		background-position: center;
		background-size: cover;
	}
	#home-product-accordion-item-1 .home-product-accordion-item-bg{
		background-position: -750px 0;
	}
	#home-product-accordion-item-2 .home-product-accordion-item-bg{
		background-position: -550px 0;
	}
	#home-product-accordion-item-3 .home-product-accordion-item-bg{
		background-position: -650px 0;
	}
	.home-product-accordion-item.current .home-product-accordion-item-bg{
		background-position: center 0!important;
	}
	.home-product-accordion-item-txt{
		min-width: 400px;
		padding-left:50px;
	}
	.home-product-accordion-item-title{
		left: auto;
		top:0;
		right: 0;
	}
	.home-product-accordion-item-title h2{
		transform: rotate(-90deg) translate(-540px, 56px);
		font-size: 56px;
		transform-origin: center;
		white-space: nowrap;
	}
	#block-home-2-2{
		height:600px;
		background-image:url(images/home-thailand.webp);
	}
}
@media screen and (min-width: 1024px){
	#block-home-2 .site-big-width{
		display: flex;
		flex-direction: row;
		align-items: stretch;
	}
	#block-home-2-1{
		height: 625px;
		justify-content: center;
		padding-top: 0;
	}
	#block-home-3-1,
	#block-home-3-2{
		height: 500px;
	}
	#block-home-3-1 .txt-smaller,
	#block-home-3-2 .txt-smaller{
		max-width: 490px;
		margin-left: auto;
		margin-right: auto;
	}
	#block-home-4-1{
		height: 620px;
	}
	#block-home-4-1 .txt-smaller{
		max-width: 620px;
	}
	.txt-home-style-2{
		font-size: 28px;
		font-size: 2rem;
	}
	.txt-home-style-3{
		font-size: 35px;
		font-size: 2.5rem;
	}
	#block-home-5-1,
	#block-home-5-2{
		float:left;
		height: 500px;
		width: 50%;
	}
	#block-home-7-1{
		padding-left: 100px;
		height: 566px;
		background-position: center;
	}
	#top-home .top-inner-anchor-list{
		display: flex;
		flex-direction: row;
		/*justify-content: space-between;*/
		justify-content: space-evenly;
	}
	#top-home .top-inner-anchor-list li{
		width:20%;
		box-sizing: border-box;
	}
	#mySwiperHomeExhibitions .swiper-slide{
		width: 360px;
	}
	#block-home-9 h2{
		font-size: 28px;
	}
	.home-product-accordion-item{
		width: 150px;
	}
	.home-product-accordion-item.current{
		width: calc(100% - 300px);
	}
	.home-product-accordion-item-txt{
		padding-left:100px;
	}
}
@media screen and (min-width: 1200px){
	.txt-home-style-3{
		font-size: 52px;
	}
}
/*inner pages*/
.site-content .single-content{
	margin-top: 60px;
	margin-bottom: 100px;
}

div#content {
	min-height: 150px;
}
.top-inner {
	position: relative;
	z-index: 0;
	width: 100%;
	overflow: hidden;
	/*background-image: url(images/bg_top_inner.jpg);*/
	background-position: center top;
	background-repeat: no-repeat;
	background-color: #33373e;
    background-size: auto 100%;
   	height:450px;
	height:70vw;
	text-align: left;
	color: #fff;

	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
	/*text-align: center;*/
}
.top-inner-smaller{
	height:350px;
	height:66vw;
}
.top-inner-container{
	position: relative;
	z-index: 2;
	margin:0 auto;
	max-width: 1500px;
	max-width: 107.1428571rem;
	box-sizing: border-box;
	padding:0 28px;
	padding:0 2rem;
	width: 100%;
}
.top-inner-container .button-more{
	margin-top: 21px;
}
.top-inner .breadcrumb{
	color: #fff;
	font-size: 13px;
	font-size:0.9285714rem;
	display: none;
}
.top-inner.top-inner-pale .breadcrumb{
	color: #000;
}
.top-inner .breadcrumb .fa{
	padding:0 10px;
}
.top-inner a{
	color: #fff;
	-webkit-transition: 0.2s all;
    transition: 0.2s all;
}
.top-inner.top-inner-pale a{
	color: #000;
}
.top-inner.top-inner-pale a:hover,
.top-inner a:hover{
	text-decoration: none;
	color: #d6b361;
}
.top-inner .entry-title{
	margin-top: 10px;
	color: #fff;
	font-size: 30px;
	font-size:2.21428rem;
	letter-spacing: 2px;
	font-weight: 800;
	text-transform: uppercase;
}
html[lang="zh-hans"] .top-inner .entry-title{
	font-weight: 500;
}
.top-inner .entry-title span{
	font-weight: 100;
}
.top-inner .entry-title-sub{
	margin-top: 7px;
	margin-top: 0.5rem;
	color: #fff;
	font-size: 14px;
	font-size: 1rem;
	font-weight: 500;
	max-width: 650px;
    line-height: 1.45;
}
.top-inner-anchor{
	display: none;
	box-sizing: border-box;
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	padding-bottom: 20px;
}
.top-inner-anchor-list{
	border-top: 1px solid rgba(255,255,255,0.3);
	margin:0 auto;
	width: 98%;
	max-width: 1500px;
	white-space: nowrap;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
.top-inner-anchor-list li{
	text-transform: uppercase;
	display: inline-block;
	padding: 18px 10px;
	min-width: 180px;
	box-sizing: border-box;
	line-height: 1.5;
	font-weight: 500;
}
.top-inner-anchor-list li a{
	/*opacity: 0.5;*/
}
.top-inner-anchor-list li a:hover{
	opacity:1;
	color: #fff;
}
a.chevron-down{
	display: block;
	margin:0 auto 5px auto;
	width: 30px;
	height: 15px;
	background: url(images/arrow-down.svg) no-repeat center center;
	background-size: 100% auto;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
div.block-title,
h2.block-title{
	position: relative;
	text-transform: uppercase;
	text-align: left;
	line-height: 1.1;
	font-size: 28px;
	font-size: 2rem;
}
h2.block-title-bold{
	font-weight: 700;
}
h2.block-title-bolder{
	font-weight: 800;
}
div.block-title strong,
h2.block-title strong{
	display: inline-block;
	font-weight: 800;
	font-size: 38px;
}
html[lang="zh-hans"] h2.block-title strong{
	font-weight: 700;
}
h2.block-title.smaller{
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
h2.block-title.smaller:after {
	display: none;
}
.top-inner.top-inner-article{
	height: 300px;
}
.post-side{
	margin-top: 50px;
	line-height: 2;
	font-size: 13px;
}
.icon-article-side{
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	margin-right: 5px;
	height: auto;
}
.post-download-cover{
	display: block;
	max-height: 190px;
	max-width: 260px;
	margin-bottom: 5px;
	border: 1px solid rgba(0,0,0,0.05);
}
.qa-cat-title {
	margin-top: 20px;
	/*counter-reset: qaCounter;*/
}
.qa-item-q-title:before{
	/*counter-increment: qaCounter;
	content: counter(qaCounter)".";*/
	display: inline-block;
	margin-right: 8px;
}
.qa-item{
	margin-bottom: 15px;
	border-bottom: 1px solid #dedede;
}
.qa-item-q{
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
	height:auto;
	padding: 17px 40px 17px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #fff;
	transition: all 0.2s;
}
.qa-item-q:hover{
	background: #f3f3f3;
}
.qa-item-q:after{
	position: absolute;
	right: 16px;
	top: 0;
	content: "\f0dd";
	font: normal normal normal 16px/1 FontAwesome;
	color: #000;
	height: 56px;
	width: 40px;
	text-align: center;
	line-height: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: 0.2s all;
	transform: translate(0,-2px);
	transform-origin: center center;
}
.qa-item.current .qa-item-q:after{
	transform: rotate(180deg) translate(0,-4px);
}
.qa-item-q p{
	margin: 0;
	color: #000;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 600;
}
.qa-item-a{
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/*border-top: 1px solid #dedede;*/
	overflow: hidden;
	transition: 0.2s all;
	padding: 0 15px 0 20px;
	height: 0;
}
.qa-item.current .qa-item-a{
	padding: 15px 15px 15px 20px;
}
.qa-item-a p{
	margin: 0 0 16px 0;
}
@media screen and (min-width: 768px){
	.top-inner-anchor{
		display: block;
	}
	h2.block-title{
		font-size: 35px;
		font-size: 2.5rem;
	}
	h2.block-title.bigger{
		font-size: 42px;
		font-size: 3rem;
	}
	
}
@media screen and (min-width: 1024px){
	.top-inner.top-inner-article{
		height: 300px;
		min-height: 300px;
		padding-top: 100px;
	}
}
@media screen and (min-width: 1200px){
	.top-inner.top-inner-article{
		padding-top: 140px;
	}
}
@media screen and (min-width: 1920px){
	.top-inner.top-inner-article{
		height: 500px;
		min-height: 500px;
		padding-top: 140px;
	}
}
h1.page-title,
h2.page-title {
	position: relative;
	line-height: 1.4;
	padding-bottom: 28px;
	padding-top: 2px;
	color:#000;
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0;
	margin-top: 0;
	text-align: center;
}
h1.page-title{
	font-size: 28px;
	font-size: 2rem;
}
.content-with-sub {
	min-height: 300px;
}
#secondary { text-align:center; }

/*news pages*/
.inner-post-container{
	margin: 21px 0;
	margin: 1.5rem 0;
	overflow: hidden;
	padding: 21px 0;
	padding: 1.5rem 0;
	border-bottom: 1px solid #f5f4f2;
}
.inner-post-container-date{
	float: left;
	width:108px;
	letter-spacing: -2px;
	display: block;
	font-weight: 400;
	line-height: 1.2;
	font-size: 21px;
	font-size: 1.5rem;
	color: #0a3e52;
}
.inner-post-container-txt{
	float: right;
	width:-webkit-calc(100% - 108px);
	width:calc(100% - 108px);
}
.inner-post-container-txt h2.post-title{
	text-align: left;
	font-size: 18px;
	display: block;
	margin-bottom: 7px;
	margin-top: 0;
	color: #333;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}
a:hover h2.post-title{
	color: #d6b361;
}
.inner-post-container-txt p{
	margin: 14px 0;
	margin: 1rem 0;
	color: #999;
}
.inner-post-container-date .d{
	color: #d6b361;
	font-size: 49px;
	font-size: 3.5rem;
	font-weight: 300;
	display: block;
}
.inner-post-container-sub{
	font-size: 12px;
	color: #999;
}
.post-footer{
	margin-top: 28px;
	margin-top: 2rem;
}
.post-footer .button{
	margin:10px;
}
.inner-post-container-thumb{
	float: left;
	width:108px;
	display: block;
}
.inner-post-container-thumb img{
	max-width: 80%;
}
#block-article-1 .site{
	margin-top: 50px;
}
#block-article-1 .page-title{
	text-align: left;
}
#block-article-1 .entry-header p{
	margin-top: 0;
	font-size: 18px;
}
#block-article-1 .content-with-sub a{
	color: #3366ff;
}
@media screen and (min-width: 768px){
	.inner-post-container-txt{
		width:-webkit-calc(100% - 130px);
		width:calc(100% - 130px);
	}
	#block-article-1 .col-raw{
		margin-left: -42px;
		margin-right: -42px;
	}
	#block-article-1 .col-n{
		padding-left: 42px;
		padding-right: 42px;
	}
	#block-article-1 .post-side .col-raw{
		margin-left: -14px;
		margin-right: -14px;
	}
	#block-article-1 .post-side .col-n{
		padding-left: 14px;
		padding-right: 14px;
	}

}

/*about page*/
#top-about{
	background-image:url(images/top-about.jpg);
}
#block-about-1 h2{
	margin-bottom: 48px;
}
#block-about-1 h2.block-title:after{
	display:none;
}
.about-txt-item{
	text-align: center;
	margin-top: 28px;
}
.about-txt-item .num{
	font-weight: 700;
	font-size: 35px;
	font-size: 2.5rem;
}
.about-txt-item .txt-smaller{
	line-height: 1.3;
	min-height: 40px;
}
@media screen and (max-width:767px){
	.about-txt-item .num{
		font-size: 28px;
		font-size: 2rem;
	}
}
#block-about-2 .site{
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}
#block-about-2{
	padding:0;
	background-color: #f4f4f4;
}
#mySwiperGallery img{
	width: 100%;
	height: auto;
}
#mySwiperGallery-next{
	right: 0;
	left: auto;
}
#block-about-2 p {
	max-width: 850px;
	margin: 5px auto 50px auto;
	padding: 0 21px;
}
.galleryItem{
	width: 1200px;
	max-width: 100%;
}
.galleryItem img{
	width: 100%;
	height: auto;
}
.capsul{
	text-align: center;
	text-transform: uppercase;
	font-weight: 800;
	color: #fff;
	display: inline-block;
	padding: 0 15px;
	background-color: #d6b361;
	border-radius: 30px;
	box-sizing: border-box;
	font-size: 35px;
	font-size: 2.5rem;
}
#block-about-3{
	padding-left: 0;
	padding-right: 0;
}
#block-about-3 .capsul{
	margin-left: 10px;
	font-size: 35px;
	font-size: 2.5rem;
}
#block-about-3 .logo{
	margin: 7px auto;
	margin: .5rem auto;
	width: 250px;
	max-width: 60%;
	height: auto;
	display: block;
	transform: translate(27px, 0);
}
ul#tab-why{
	overflow-x: hidden;
	margin-top: 70px;
	margin-top: 5rem;
}
#tab-why li{
	margin:0;
	float: left;
	width: 50%;
	box-sizing: border-box;
	text-align: center;
	padding:5px;
	font-size: 13px;
	cursor: pointer;
	line-height: 1.2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 60px;
}
#tab-why li.current{
	color: #d6b361;
}
.about-why-item{
	width: 100%;
	background-color: #fff;
}
#block-about-3 .site{
	margin-bottom: 0;
	max-width: 1000px;
}
#block-about-3 .about-why-item .site{
	margin-top: 28px;
	margin-bottom: 0;
}
.about-why-img{
	position: relative;
	width:100%;
	height: 400px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.about-why-item-front{
	padding:0 28px;
	padding:0 2rem;
	position: absolute;
	top: 120px;
	color: #fff;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
}
.about-why-item-front p{
	letter-spacing: 2px;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.about-why-item-front h3{
	font-size: 35px;
	font-size: 2.5rem;
	font-weight: 600;
	text-transform: uppercase;	
}
#block-about-4{
	text-align: center;
}
#block-about-4 .site{
	margin-top: 0;
}
#block-about-4 .sub-title{
	letter-spacing: 5px;
	color: #000;
	margin-bottom: 10px;
}
#block-about-4 .block-title{
	letter-spacing: 2px;
	position: relative;
	margin-bottom: 100px;
}
#block-about-4 .block-title:after{
	content: "";
	width:50px;
	height: 1px;
	background:#000;
	left: calc(50% - 25px);
	top: 70px;
	position: absolute;
}
#block-about-4 .col-n{
	margin-bottom: 21px;
	margin-bottom: 1.5rem;	
}
.presp-item{
	width: 100%;
	position: relative;
	background: url(images/about/presp-1.jpg) no-repeat center center;
	background-size: 100% auto;
	font-size: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.presp-item-1{ background-image: url(images/about/presp-1.jpg); }
.presp-item-2{ background-image: url(images/about/presp-2.jpg); }
.presp-item-3{ background-image: url(images/about/presp-3.jpg); }
.presp-item img{
	width: 100%;
	height: auto;
}
.presp-mask{
	display: block;
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height: 100%;
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.presp-item:hover{
	background-size: 105% auto;
}

.presp-mask:hover{
	color:#fff;
	text-decoration: none;
}
.presp-mask h3{
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
}
.presp-mask:hover .button-small{
	text-decoration: none;
	background:#d6b361;
	border-color:#d6b361;
	color:#fff;
}
#block-about-5 .sub-title{
	letter-spacing: 5px;
	color: #000;
	margin-bottom: 10px;
}
#block-about-5 .block-title {
	letter-spacing: 2px;
	position: relative;
}
#block-about-5 .block-title:after{
	display: none;
}
#block-about-5 hr{
	margin:50px 0;
}
.milestones{
	margin: 50px auto 0 auto;
	max-width: 600px;
}
.milestones ul li{
	position: relative;
	padding: 0 0 35px 0 ;
	padding: 0 0 3rem 0;
	z-index: 1;
}
.milestones ul{
	position: relative;
}
.milestones ul:after{
	position: absolute;
	content:"";
	background:#ddd;
	height:-webkit-calc(100% - 65px);
	height:calc(100% - 65px);
	width: 1px;
	left:97px;
	top:11px;
	z-index: 0;
}
.milestones ul li:after{
	content:"";
	position: absolute;
	width: 5px;
	height: 5px;
	background:#000;
	left:95px;
	top:10px;
	border-radius: 50%;
}
.bookclub-txt time,
.milestones ul li time{
	width: 65px;
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
	font-weight: 600;
	color: #fff;
	padding: 0;
	background-color: #d6b361;
	border-radius: 0;
	box-sizing: border-box;
	font-size: 15px;
	text-align: center;
	line-height: 1.2;
	margin-top: 3px;
}
.milestones .milestones-txt{
	display: inline-block;
	vertical-align: top;
	font-size:13px;
	width: -webkit-calc(100% - 130px);
	width: calc(100% - 130px);
	margin-left: 60px;
}
#block-about-6 .site{
	max-width: 1400px;
}
#block-oem{
	background:url(images/bg-oem.jpg) center center no-repeat;
	background-size: cover;
	height: 410px;
	text-align: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#block-oem h2{
	margin-bottom: 28px;
}
/*newsroom*/
#top-newsroom{
	background-image:url(images/newsroom-top.jpg);
}
#block-newsroom-1-txt,
#block-newsroom-1-img{
	min-height: 100px;
	box-sizing: border-box;
}
#block-newsroom-1-txt{
	position: relative;
	padding:28px 56px;
}
#block-newsroom-1-img{
	font-size: 0;
}
#mySwiperNews-prev{
	left:0px;
}
#mySwiperNews-next{
	right:0;
}
#news-highlight-img{
	font-size: 0;
	width:100%;
	height: auto;
	max-width: 100%;
	background:#ddd;
	background-size:cover;
	background-position: center center;
	background-image: url(images/highlight-transparent.gif);
	-webkit-transition:0.3s all;
	transition:0.3s all;
}
#block-newsroom-1 .sub-title,
#block-newsroom-2 .sub-title,
#block-newsroom-3 .sub-title,
#block-newsroom-4 .sub-title{
	text-align: left;
	letter-spacing: 4px;
	color:#000;
	margin-bottom: 1rem;
	margin-bottom: 14px;
	font-weight: 400;
}
#block-newsroom-1 h2.block-title:after,
#block-newsroom-2 h2.block-title:after,
#block-newsroom-3 h2.block-title:after,
#block-newsroom-4 h2.block-title:after{
	display: none;
}
#block-newsroom-2 .site,
#block-newsroom-3 .site,
#block-newsroom-4 .site,
#block-article-2 .site{
	max-width: 1500px;
}
#block-newsroom-1 .site,
#block-newsroom-2 .site{
	margin-bottom: 20px;
}
#block-newsroom-2 .col-raw,
#block-newsroom-3 .col-raw{
	font-size: 0;
}
@media screen and (max-width: 767px){
	#block-newsroom-2 .site,
	#block-newsroom-3 .site,
	#block-newsroom-4 .site{
		margin-top: 20px;
	}
}
.post-list{
	display: grid;
	gap: 40px;
}
#block-newsroom-1 .news-container{
	box-sizing: border-box;
	padding:0;
	max-width: 1560px;
	background-color: #f4f4f4;
}
#block-newsroom-2 .news-container,
#block-newsroom-3 .news-container{
	box-sizing: border-box;
	padding:28px;
	max-width: 1560px;
	background-color: #f9f9f9;
}
.site-blocks .site.news-container{
	margin-top: 40px;
}
.list-tag{
	font-weight: 600;
	text-transform: uppercase;
	margin: 10px 0 90px 0;
	padding: 0;
}
.news-item {
	margin-bottom: 84px;
}
.news-item-thumb,
.news-item .wp-post-image{
	width: 100%;
	height: auto;
	max-height: 280px;
}
#block-newsroom-1 .news-item {
	margin-bottom: 0;
}
.news-item a:hover{
	text-decoration: none;
	color: #d6b361;
}
.news-txt{
	margin-bottom: 28px;
}
.news-txt .news-title{
	line-height: 1.5;
	overflow: hidden;
	font-weight: 400;
}
.news-txt time{
	display: block;
	text-transform: uppercase;
	margin-bottom: 21px;
	font-size: 13px;
	color: #666;
}
.news-txt hr{
	margin:21px 0;
	margin:1.5rem 0;
}
.news-expert{
	font-size: 13px;
	overflow: hidden;
}
.news-expert p{
	font-size: 13px;
	margin:0;
	color:#666;
}
.news-tag{
	margin:28px 0 7px 0;
	margin:2rem 0 0.5rem 0;
}
.list-tag a,
.news-tag a{
	display: inline-block;
	background:#000;
	color: #fff;
	pointer-events: none;
	margin: 3px 6px 3px 0;
	font-size: 13px;
	padding: 3px 6px;
	font-weight: 600;
	-webkit-transition:0.2s all;
	transition:0.2s all;
}
.list-tag a:before,
.news-tag a:before{
	display: inline;
	content: "#";
}
.list-tag a:hover,
.news-tag a:hover{
	text-decoration: none;
	background:#d6b361;
	color: #fff;
}
.news-item-txtonly{
	margin-bottom: 48px;
	line-height: 1.6;
}
.news-item-txtonly time{
	display: inline-block;
	vertical-align: top;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
}
.news-item-txtonly h3{
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	font-size: 1rem;
	font-weight: 300;
}
.news-item-txtonly a:hover{
	text-decoration: none;
	color: #d6b361;
}
@media screen and (min-width:768px){
	#block-about-1 h2.block-title:before{
		width: 26px;
		height: 26px;
	}
	#tab-why li{
		font-size: 15px;
		font-weight: 500;
		width: 25%;
	}
	.about-why-img{
		height: 450px;
	}
	.about-why-item-front{
		top:200px;
	}
	.about-why-item-front h3{
		font-size: 42px;
		font-size: 3rem;
	}
	.milestones ul li time{
		width:75px;
	}
	.milestones .milestones-txt{
		width: -webkit-calc(100% - 210px);
		width: calc(100% - 210px);
		margin-left: 130px;
		font-size: 14px;
	}
	.milestones ul:after{
		left:142px;
		height:calc(100% - 70px);
	}
	.milestones ul li{
		padding: 0 0 49px 0 ;
		padding: 0 0 3.5rem 0;
	}
	.milestones ul li:after{
		left:140px;
	}
	.news-txt .news-title{
		height:86px;
	}
	.news-expert{
		height: 198px;
	}
	#block-newsroom-1 .news-expert{
		height: auto;
	}
	.news-item-txtonly{
		height:50px;
		overflow: hidden;
		margin-bottom: 21px;
	}
	.news-item-txtonly time{
		width: 150px;
	}
	.news-item-txtonly h3{
		width: calc(100% - 155px);
	}
	.post-list{
		grid-template-columns: repeat(3, 1fr);
		gap: 60px;
	}
}
@media screen and (min-width:1024px){
	.facilities-txt{
		float:left;
		width: 40%;
	}
	.facilities-pic{
		float:left;
		width: 60%;
	}
	.news-txt time{
		letter-spacing: 3px;
	}
	#pagenation1,
	#pagenation2{
		margin-bottom: 80px;
	}
}
@media screen and (min-width:1200px){
	#block-about-2 .site{
		margin-top: 60px;
		margin-bottom: 60px;
	}
	#mySwiperGallery-prev{
		left:-webkit-calc(50% - 530px);
		left:calc(50% - 530px);
	}
	#mySwiperGallery-next{
		right:-webkit-calc(50% - 530px);
		right:calc(50% - 530px);
	}
	.about-why-item-front{
		padding:0;
		max-width: 1200px;
		left:-webkit-calc(50% - 500px);
		left:calc(50% - 500px);
	}
	.facilities-txt{
		padding:100px 50px 0 50px;
	}
	#block-newsroom-2 .news-container,
	#block-newsroom-3 .news-container{
		padding:80px 100px;
	}
	#block-newsroom-2 .col-raw,
	#block-newsroom-3 .col-raw{
		margin:0 -42px 0 -42px;
	}
	#block-newsroom-1-txt{
		padding:80px 100px;
	}
	#block-newsroom-1 .site,
	#block-newsroom-2 .site{
		margin-bottom: 20px;
	}
	#mySwiperNews-prev{
		left:28px;
	}
	#mySwiperNews-next{
		right:28px;
	}
	#block-newsroom-1-txt,
	#block-newsroom-1-img{
		float: left;
	}
	#block-newsroom-1-txt{
		width: 40%;
	}
	#block-newsroom-1-img{
		width: 60%;
	}
	#block-about-1 .site{
		margin: 11rem auto 8rem auto;
	}
	#block-about-1 .block-title{
		letter-spacing: 2px;
	}
	#block-about-3 .capsul{
		margin-top: 80px;
	}
	#block-about-4 .block-title,
	#block-about-5 .block-title{
		letter-spacing: 3px;
	}
}
@media screen and (min-width:1600px){
	#block-newsroom-1 .sub-title{
		margin-top: 80px;
	}
	#block-about-1 .site{
		margin: 13rem auto 9rem auto;
	}
	#block-about-3 .site{
		margin-top: 12rem;
	}
	#block-about-6 .site{
		margin-bottom: 12rem;
	}
	.facilities-txt{
		padding:140px 80px 0 80px;
	}
	#block-newsroom-1-txt{
		padding-top:130px;
	}
}
/*culture page*/
#block-culure-1,
#block-culure-2,
#block-culure-3,
#block-culure-4,
#block-culure-5{
	padding-left: 0;
	padding-right: 0;
}
#block-culure-3,
#block-culure-4,
#block-culure-5{
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}
#block-culure-3 .site,
#block-culure-4 .site,
#block-culure-5 .site{
	margin-bottom: 50px;
}
#block-culure-2{
	background: #f8f8fa;
	overflow: hidden;
}
#culture-reading-1{
	display: flex;
	flex-direction: column;
	gap: 40px;
}
#bookclub-swiper{
	position: relative;
}
#bookclub-swiper-line{
	position: absolute;
	left: 0;
	top:calc(50% - 1px);
	width: 100%;
	height: 2px;
	background-color: #000;
	z-index: 0;
}
#bookclub-swiper .swiper-slide{
	width: 260px;
}
#bookclub-swiper .swiper-slide:last-child{
	width: 360px;
}
.bookclub-item{
	width: 360px;
	position: relative;
	height: 550px;
	box-sizing: border-box;
	padding-left: 9px;
	transition: 0.2s all;
}
.bookclub-txt{
	min-height: 150px;
	position: absolute;
	height: auto;
	border-left: 1px solid #000;
	box-sizing: border-box;
	padding-left:30px;
	padding-bottom: 40px;
	bottom:calc(50% - 0px);
	transition: 0.2s all;
}
.swiper-slide:nth-child(even) .bookclub-txt{
	bottom: auto;
	padding-bottom: 0;
	padding-top: 40px;
	top:calc(50% - 0px);
}
.bookclub-txt h3{
	color: #000;
	font-size: 21px;
}
.bookclub-dot {
	position: absolute;
	left: 0;
	top:calc(50% - 9px);
	width: 9px;
	height: 9px;
	border: 5px solid #d6b361;
	border-radius: 50%;
	background-color: #fff;
	transition: 0.2s all;
	transform-origin: center center;
}
#bookclub-scrollbar{
	background-color: #fff;
}
#bookclub-scrollbar .swiper-scrollbar-drag{
	background: rgba(0,0,0,.05);
}
#culture-image-area-1{
	display: flex;
	flex-direction: column;
}
.culture-image-area-1-item{
	font-size: 0;
	position: relative;
}
.image-captain{
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 14px;
	box-sizing: border-box;
	padding: 20px;
	background: linear-gradient(to top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	transition: 0.2s all;
}
#culture-image-area-2{
	display: flex;
	flex-direction: column;
}
.culture-image-area-2-item{
	font-size: 0;
	position: relative;
}
.culture-image-area-1-item img,
.culture-image-area-2-item img{
	object-fit: cover;
	min-height: 350px;
	width: 100%;
}
#mySwiperHomeLife .swiper-slide{
	width: 200px;
}
#mySwiperHomeLife .swiper-slide img{
	width: 100%;
	height: auto;
}
@media screen and (min-width:768px){
	#culture-reading-1{
		display: flex;
		gap: 60px;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	#culture-reading-txt,
	#culture-reading-img{
		width: calc(50% - 30px);
	}
	#culture-reading-img img{
		width: calc(50vw - 30px);
		max-width: none;
	}
	.bookclub-dot {
		background-color: #000;
		border: 5px solid #fff;
	}
	.bookclub-txt:hover + .bookclub-dot {
		border-color: #d6b361;
		background-color: #fff;
		transition-delay: 0s;
	}
	.bookclub-txt:hover time,
	.bookclub-txt:hover p{
		transition: 0.3s all;
	}
	.bookclub-txt:hover time,
	.bookclub-txt:hover p{
		transform: translate(0,5px);
	}
	#culture-image-area-1{
		flex-direction: row;
	}
	.culture-image-area-1-item{
		width: 50%;
	}
}
@media screen and (min-width:1024px){
	#mySwiperHomeLife .swiper-slide{
		width: 360px;
	}
}
@media screen and (min-width:1921px){
	#bookclub-swiper .swiper-slide{
		width: 400px;
	}
	.bookclub-item{
		width: 700px;
	}
}
/*contact us page*/
#top-contact{
	background-image:url(images/contact-top.jpg);
}
#top-cooperation{
	background-image:url(images/cooperation-top.jpg);
}
#cooperation-process-p1{
	width: 100%;
	margin: 50px auto 30px auto;
	max-width: 1300px;
	height: auto;
}
#block-contact-form *{
	font-size: 13px;
	/*color: #000;*/
}
#block-contact-form .gfield_required {
	color: #790000;
}
#block-contact-form .form-tc p{
	margin:15px 0 0 0;
}
#block-contact-form .form-tc a{
	color:red;
}
#block-contact-1,
#block-contact-bottom{
	background:#f6f6f6;
}
.itemName {
	display: inline-block;
	width:90px;
	color:#999;
}
.plant h3{
	padding: 6px 20px;
	background: #ccc;
	border-radius: 15px;
	font-size: 15px;
	color: #fff;
	width: 70%;
    box-sizing: border-box;
}
.plant.current h3{
	background: #d6b361;
}
.plant p{
	overflow: hidden;
	/*display: none;*/
	font-size: 13px;
	transition: 0.2s all;
	padding:0;
}
.plant.current p{
	/*display: block;*/
	padding:0 20px;
	height: 168px;
}
#plant1{
	margin-top: 40px;
	margin-bottom: 40px;
}
.dituContainer{
	position: relative;
	min-height: 560px;
}
.dituContent {
	position: absolute;
	opacity: 0;
	margin-bottom:0;
	width:-webkit-calc(100% - 56px);
	width:calc(100% - 56px);
	height:480px;
	border:0;
	-webkit-transition: 0.4s all;
	transition: 0.4s all;
	top: 50px;
	z-index: 0;
}
.dituContent.stay{
	opacity: 1;
	top:0;
	z-index: 1;
}
.BMap_bubble_title{
	font-weight: 500;
	color: #d6b361;
}
.BMap_bubble_content{
	color: gray;
	font-size: 13px;
	line-height: 1.3;
}
#block-supplier-1{
	background-color: #eaeaea;
}
#block-supplier-1 p{
	max-width: 600px;
	font-weight: 600;
}
#block-supplier-2{
	position: relative;
	background:url(images/bg-supplier-1.jpg) center top no-repeat #fff;
	background-size: inherit;
}
#block-supplier-2 h2{
	padding: 2px 35px;
	background: #d6b361;
	border-radius: 20px;
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
    font-weight: 600;
	width: auto;
	box-sizing: border-box;
	top: -15px;
	position: absolute;
	z-index: 2;
}
#block-supplier-2 p{
	color: #fff;
	font-weight: 600;
	max-width: 600px;
}
#block-supplier-2 p:first-of-type{
	margin-top: 86px;
}
#block-supplier-2 .site{
	margin-top: 0;
	overflow:visible;
}
#block-supplier-2 #line{
	display: none;
	position: absolute;
	left: 0;
	top:170px;
	width: 100%;
	height: 1px;
	z-index: 1;
	background: #fff;
}
#block-supplier-2 hr{
	background-color: #fff;
}
.supplier-chain-container{
	background:#f3f3f3;
	border-radius: 15px;
	padding: 10px 15px;
	margin-top: 50px;
}
.supplier-chain{
	display: table;
	margin:10px 0;
}
.supplier-chain p{
	font-size:14px;
	font-size:1rem;
	box-sizing: border-box;
	padding-right: 5px;
	padding-left: 5px;
	border-radius: 10px;
	background:#fff;
	height: 150px;
	margin: 0!important;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color:#000!important;
	line-height: 1.5;
}
.supplier-resource-container{
	background:#f3f3f3;
	border-radius: 15px;
	padding: 28px 21px;
	height: 820px;
}
.supplier-resource-container .col-n{
	padding-left: 0;
	padding-right: 0;
	position: relative;
	min-height: 330px;
}
.supplier-resource-bar{
	position: relative;
	background-color:#cbcbcb;
	border-radius: 20px;
	text-align: center;
	font-size: 0;
	height:30px;
	width: 100%;
	top: 52px;
	overflow: hidden;
}
.supplier-resource-bar-item{
	position: relative;
	z-index: 1;
	color:#fff;
	font-size:13px;
	font-size:0.925714rem;
	vertical-align: middle;
	display: inline-block;
	width:33.3%;
	text-align: center;
	line-height: 30px;
	height:30px;
	font-weight: 600;
	cursor: pointer;
}
.supplier-resource-bar-item-bg{
	position: absolute;
	left:0;
	top:0;
	z-index: 0;
	height:30px;
	width: 33.3%;
	background-color:#d6b361;
	border-radius: 20px;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
.supplier-resource-cont1{
	line-height: 1.6;
	position: absolute;
	top: 190px;
	opacity: 0;
	z-index: 0;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
.supplier-resource-cont1.stay{
	opacity: 1;
	z-index: 1;
}
.supplier-resource-cont2{
	position: absolute;
	top:0;
	height:362px;
	width: 100%;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-position: 0;
	background-size: auto 100%;
	padding-left: 0;
	opacity: 0;
	z-index: 0;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
.supplier-resource-cont2.stay{
	opacity: 1;
	z-index: 1;
}
.supplier-resource-cont2 > div{
	height: 102px;
	overflow:hidden;
}
.supplier-resource-cont2 h4{
	margin: 0 0 3px 0;
	line-height: 1.5;
}
.supplier-resource-cont2 p{
	margin:0;
	line-height: 1.5;
	font-size:13px;
	font-size:0.925714rem;
}
.supplier-resource-link{
	background:url(images/icon-doc.png) no-repeat;
	background-size:100% auto;
	width: 52px;
	height: 52px;
	margin-right: 15px;
	float: left;
}
.supplier-resource-link.disabled{
	filter: grayscale(0.9);
}
.supplier-resource-txt{
	float: left;
	width: -webkit-calc(100% - 67px);
	width: calc(100% - 67px);
}
#block-supplier-3 h2.block-title{
	margin-top: 28px;
}
@media screen and (min-width:768px){
	#block-supplier-2 #line{
		display: block;
	}
	#block-supplier-2 hr{
		display: none;
	}
	#block-supplier-2 p{
		margin-top: 56px;
	}
	.supplier-chain-container{
		padding: 15px;
	}
	.supplier-chain{
		margin:0;
	}
	.supplier-chain p{
		word-break: break-word;
		hyphens: auto;
	}
	.supplier-resource-container{
		height: 440px;
		padding:28px;
	}
	.supplier-resource-bar{
		top: 82px;
	}
	.supplier-resource-cont1{
		top: 220px;
	}
	.supplier-resource-cont2{
		background-image:url(images/chart-supplier.png);
		padding-left:72px;
	}
	#block-supplier-4-right > div{
		border-left: 1px solid #cbcbcb;
		padding-left: 66px;
		margin-left: 14px
	}
	#block-supplier-3 h2.block-title{
		margin-top: 0;
		height: 75px;
	}
}
@media screen and (min-width:1200px){
	.supplier-resource-container{
		height: 412px;
		padding:48px;
	}
	#block-supplier-1 .site{
		margin-top: 140px;
		margin-top: 10rem;
		margin-bottom: 140px;
		margin-bottom: 10rem;
	}
	.supplier-resource-cont2 h4{
		margin: 0 0 7px 0;
		margin: 0 0 0.5rem 0;
	}

}
@media screen and (min-width:1600px){
	.dituContent {
		height:900px;
	}
	#block-contact-2  .site{
		margin-bottom: 180px;
	}
}
/*sustainbility page*/
#top-environment{
	background-image: url(images/environment-top.jpg);
	background-color: #51851f;
}
@media screen and (min-width: 1024px){
	.top-inner-container{
		padding-top: 46px;
	}
}
@media screen and (min-width: 1440px){
	#top-home .top-inner-container{
		padding-top: 146px;
	}
}
@media screen and (min-width: 1920px){
	#top-home .top-inner-container{
		padding-top: 186px;
	}
}
.environment-title{
	font-size: 28px;
	font-size: 2rem;
	margin-top: 14px;
}
#block-environment-1{
	position: relative;
	background: #2b4d70;
	height:460px;
	color: #fff;
	text-align: center;
	padding:0;
}
@media screen and (min-width:768px){
	#block-environment-1{
		height:723px;
	}
}
#block-environment-1 h2{
	text-align: center;
	color: #fff;
	width: 100%;
	box-sizing: border-box;
	padding:0 28px;
}
#block-environment-1 p{
	width: 100%;
	max-width: 600px;
	margin: 21px auto;
	box-sizing: border-box;
	padding:0 28px;
}
#mySwiperEnvironment{
	width: 100%;
	height: 100%;
	max-width: 1920px;
	margin: 0 auto;
}
.environment-material{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background:url(images/environment-material-1.jpg) no-repeat center center;
	background-size:cover;
}
#environment-material-2 {background-image:url(images/environment-material-2.jpg)}
#environment-material-3 {background-image:url(images/environment-material-3.jpg)}
#environment-material-4 {background-image:url(images/environment-material-4.jpg)}
#environment-material-5 {background-image:url(images/environment-material-5.jpg)}

#block-environment-2{
	background: url(images/environment-reduce.jpg) center top no-repeat;
	height:400px;
	background-size: cover;
}

#block-environment-2 .site{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
}
#block-environment-2 p{
	margin: 0 auto;
	max-width: 800px;
}
#swiper-list-container{
	position: absolute;
	left:60px;
	top:130px;
	color:#fff;
	z-index: 5;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
#swiper-list-container:after{
	content:"";
	position: absolute;
	left:0;
	top:20px;
	height:calc(100% - 40px);
	width: 1px;
	background:rgba(255,255,255,0.3);
}
#swiper-list-container li{
	text-align: left;
	font-size:13px;
	position:relative;
	cursor: pointer;
	color:rgba(255,255,255,0.5);
	line-height: 40px;
	height: 40px;
	white-space: nowrap;
	padding-left: 18px;
	box-sizing: border-box;
}
#swiper-list-container li.current,
#swiper-list-container li:hover{
	color:#fff;
}
#swiper-list-container li.current:after{
	content:"";
	position:absolute;
	width:5px;
	height: 5px;
	border-radius: 50%;
	background:#fff;
	left:-2px;
	top:18px;
}
#block-environment-1 #swiper-list-container{
	display: none;
}
@media screen and (min-width:768px){
	#block-environment-1 #swiper-list-container{
		display: block;
	}
	#block-environment-1 .swiper-nav{
		display: none;
	}
}

.short-line{
	margin:21px auto;
	width: 35px;
	height: 1px;
	background-color: #fff;
}
.short-line-2{
	margin:35px auto;
	width: 120px;
	background-color: #000;
}

#block-environment-10{
	text-align: center;
}
#block-environment-10 h3{
	font-size: 21px;
}
#block-environment-10 .site{
	margin: 200px auto;
}
#block-environment-10 p{
	max-width: 620px;
	margin-left: auto;
	margin-right:auto;
}
img.iso{
	width: 300px;
	height: auto;
	margin-bottom: 50px;
}
#top-employee{
	background-image: url(images/employee-top.jpg);
}
#block-employee-1,
#block-employee-3{
	background-color: #f3f3f3;
}
#block-employee-1-content{
	max-width: 800px;
}
#block-employee-1 .block-title{
	margin-bottom: 35px;
	margin-bottom: 2.5rem;
}
#block-employee-2{
	background-image: url(images/employee-p1.jpg);
	background-position: center top;
	background-size: cover;
	height: 44vw;
}
#block-employee-3 .line{
	width: 200px;
	background:black;
	height: 1px;
	margin:14px 0;
}
#block-employee-4{
	background-image: url(images/employee-p2.jpg);
	background-position: center top;
	background-size: cover;
	height: 44vw;
}
#block-employee-arraw{
	display: none;
	position: relative;
	width: 100%;
	height: 1px;
}
#block-employee-arraw img{
	position:absolute;
	width:100%;
	height: auto;
	left:-30px;
	top:-20px;
}
#top-compliance{
	background-image: url(images/top-43.jpg);
}
#block-compliance-2{
	position: relative;
	background:#f3f3f3;
	background-image: url(images/bg-complaince-1.jpg);
	background-size: cover;
}
#block-compliance-2 .site{
	position: relative;
	z-index: 1;
}
#block-compliance-2 .txt-gray{
	color: #666!important;
	margin-top: 35px;
}
@media screen and (max-width: 1023px){
	#block-compliance-2 .col-n{
		margin-left: auto;
		margin-right: auto;
		float:none;
		width:100%;
		max-width: 536px;
	}
}
#complianceT {
	position: relative;
	border-left: 2px solid #fff;
	margin-top: 35px;
}
#complianceT:before{
	position: absolute;
	content: "";
	width: 2px;
	height: 50px;
	left:-2px;
	top:0;
	background-color: #d6b361;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
#complianceT.stay1:before{ top:0; }
#complianceT.stay2:before{ top:50px; }
#complianceT.stay3:before{ top:100px; }
#complianceT.stay4:before{ top:150px; }
#complianceT.stay5:before{ top:200px; }
#complianceT li{
	color: #999;
	font-weight: 600;
	line-height: 50px;
	height: 50px;
	padding-left: 30px;
	cursor: pointer;
}
#complianceT li.current{
	color: #000;
}
.complianceItem{
	box-sizing: border-box;
	background:rgba(255,255,255,0.8);
	padding:60px;
	height: 390px;
	width:480px;
	max-width: 100%;
}
.complianceItem h3{
	text-transform: uppercase;
	font-size: 21px;
	font-size: 1.5rem;
}
#block-compliance-2 .complianceItem p{
	margin-top: 28px;
}
#mySwiperCompliance{
	margin: 0 auto 100px auto;
	width:600px;
	max-width: 90%;
	position: relative;
}
.swiper-nav{
	text-align: center;
	color:#fff;
	background-color: rgba(0,0,0,0.3);
	border-radius: 0;
	font-size: 26px;
	line-height: 30px;
	height: 36px;
	width: 36px;
	display: block;
	position: absolute;
	/*top: 160px;
	top: -webkit-calc(50% - 15px);
	top: calc(50% - 15px);*/
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
	z-index: 5;
}
.swiper-nav:hover{
	color: #fff;
	background:rgba(0,0,0,0.8);
	text-decoration: none;
}
.swiper-nav:after{
	font-size: 18px;
	display: block;
	line-height: 36px;
}
.swiper-nav.swiper-button-disabled{
	display: none;
}
#mySwiperCompliance-prev{
	left:0;
}
#mySwiperCompliance-next{
	right:0;
}
#block-compliance-3{
	position: relative;
	background-image: url(images/bg-complaince-2.jpg);
	background-position: bottom;
}
#block-compliance-3 .site{
	position: relative;
	z-index: 1;
}
.halfmask{
	position: absolute;
	width: 100%;
	background:rgba(255,255,255,0.8);
	height: 100%;
	z-index: 0;
	left:0;
	top:0;
}
#block-compliance-3 .halfmask{
	background:rgba(217,217,217,0.9);
}
#block-compliance-3 .txt-gray{
	color: #666!important;
    margin-top: 35px;
}
#block-compliance-3 h3{
	margin-top: 84px;
	margin-top: 6rem;
}
#block-compliance-3 .line {
	width: 100%;
	background: black;
	height: 1px;
	margin: 21px 0;
	max-width: 500px;
}
#block-compliance-3 .list-numbers{
	line-height: 1.7;
	max-width: 500px;
}
#block-compliance-3 .list-numbers li{
	margin-bottom: 14px;
	padding-left: 5px;
}
#block-compliance-4 .site{
	margin-top: 150px;
	margin-bottom: 150px;
	border-bottom: 1px solid #000;
}
#block-compliance-4 p{
	font-size: 28px;
	font-size: 2rem;
	line-height: 1.2;
	margin: 28px 0;
}
#block-compliance-4 .txt-right{
	margin-top: 100px;
	font-size: 2.5rem;
	line-height: 1.1;
}
#block-compliance-5 .site{
	background:url(images/bg-complaince-4.jpg) center top;
	background-size: cover;
	color:#fff;
	padding: 52px 28px;
	text-align: center;
	box-sizing: border-box;
	max-width: 1260px;
}
@media screen and (max-width: 767px){
	.complianceItem{
		padding:40px 35px;
	}
	#block-compliance-4 .site{
		margin-top: 50px;
		margin-bottom:0;
	}
	#block-compliance-5 .site{
		margin-top: 0;
		margin-bottom:0;
	}
}
#block-compliance-5 .col-4{
	margin-bottom: 21px;
}
#block-compliance-5 a{
	color: #fff;
}
#block-compliance-5 h2{
	color: #fff;
	font-size: 35px;
}
#block-compliance-5 img{
	width: 100%;
	height: auto;
}
#block-compliance-5 .yellowbt{
	color: #000;
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	background: #ffcb00;
	border-radius: 8px;
	margin: -3px auto 28px auto;
	width: 250px;
	padding: 14px;
	font-size: 16px;
}
#block-compliance-6{
	background-image: url(images/bg-compliance-download.jpg);
	background-size: 230% auto;
	background-position: center top;
	background-repeat: no-repeat;
}
.compliance-rmi-block{
	margin-bottom:40px;
	color: #000;
	background: #f7f7f7;
	box-sizing: border-box;
	padding: 40px 30px;
	line-height: 1.6;
}
.compliance-rmi-block h3{
	font-size: 18px;
}
.compliance-rmi-block a{
	color: #0066CC;
	font-weight: 500;	
}
#block-compliance-rmi-header h1{
	font-size: 35px;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
}
#block-compliance-rmi-header h1 span{
	font-weight: 100;
}
#block-compliance-rmi-header p{
	max-width: 600px;
	font-weight: 400;
	margin-top: 28px;
	margin-bottom: 50px;
}
#rmi-logo{
	display: block;
	margin:0 auto 35px;
	width: 150px;
	height: auto;
}
@media screen and (min-width:768px){
	.environment-title{
		letter-spacing: 5px;
		font-size: 35px;
		font-size: 2.5rem;
		margin-top: 28px;
	}
	#block-employee-2,
	#block-employee-4{
		height: 590px;
	}
	#block-employee-3 .tag-title{
		margin-top: 150px;
	}
	#block-employee-arraw{
		display: block;
	}

	#block-compliance-2 .txt-gray,
	#block-compliance-3 .txt-gray{
		max-width: 500px;
	}
	#block-compliance-3{
		height: 950px;
	}
	#block-compliance-4 .txt-right{
		margin-top: 220px;
	}
	
	#block-compliance-5 h2{
		font-size: 42px;
	}
	#block-compliance-5 .site{
		padding:140px 176px 110px 176px;
	}
	#block-compliance-rmi-header h1{
		font-size: 56px;
	}
	#block-compliance-rmi-header h1:after {
		content: "";
		width: 14px;
		height: 14px;
		background-color: #d6b361;
		border-radius: 50%;
		vertical-align: baseline;
		margin-left: 5px;
		display: inline-block;
	}
	#block-compliance-6{
		background-size: 100% auto;
	}
	.compliance-rmi-block{
		padding: 60px;
	}
	.compliance-rmi-block h3{
		font-size: 25px;
		margin: 0 0 28px 0;
	}
	.compliance-rmi-block p{
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
	}
	.compliance-rmi-block-full{
		text-align: center;
	}
}
@media screen and (min-width: 1024px){
	#block-environment-2{
		height:512px;
	}
	#block-compliance-2{
		background-image: url(images/bg-complaince-1.jpg);
		height: 780px;
	}
	#block-compliance-2 .halfcontainer{
		height: 800px;
	}
	#block-compliance-2 .halfcontainer{
		position: absolute;
		width: 50%;
		left: 50%;
		top: 0;
	}
	#mySwiperCompliance{
		margin: 190px auto;
	}
	.halfmask{
		width: 50%;
	}
}
@media screen and (min-width:1200px){
	#block-compliance-1 .site{
		margin-top: 12rem;
		margin-bottom: 12rem;
	}

	#block-compliance-2 .site,
	#block-compliance-3 .site{
		margin-top: 10rem;
	}
	#block-compliance-rmi-header{
		margin-top: 22vh;
		margin-bottom: 15vh;
	}
}
@media screen and (min-width:1600px){
	#block-compliance-rmi-header{
		margin-top: 40vh;
		margin-bottom: 25vh;
	}
}
@media screen and (min-width:1920px){
	#block-compliance-rmi-header{
		marin-top: 450px;
		margin-bottom: 160px;
	}
}
/*Competence pages*/
#top-partners{
	background-image: url(images/partners-top.jpg);
}
#block-partners-2{
	color: #fff;
	background: url(images/partners-p1.jpg) center center;
	background-size: cover;
	height: 620px;
}
#block-partners-2 .site{
	margin-top: 0;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}
#block-partners-2 p{
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
#top-research{
	background-image: url(images/rd-top.jpg);
}
#block-research-1{
	background-image: url(images/rd-p1.jpg);
	text-align: center;
	color: #fff;
	height: 500px;
}
#block-research-3{
	background-image: url(images/rd-p3.jpg);
	text-align: center;
	color: #fff;
	height: 500px;
}
#block-research-1 .site,
#block-research-2 .site,
#block-research-3 .site{
	height: 100%;
	margin-top: 0;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#block-research-1 h2,
#block-research-2 h2,
#block-research-3 h2{
	font-size: 28px;
	font-weight: 700;
}
#block-research-2{
	padding:0;
	background:#fff;
}
#block-research-2-left{
	box-sizing: border-box;
	padding:40px 28px;
}
#block-research-2-right{
	font-size: 0;
}
#block-research-2-right img{
	width: 100%;
}
#top-production{
	background-image: url(images/production-top.jpg);
}
#block-production-1{
	background:#000;
	color: #fff;
	text-align: center;
}
#block-production-1 .col-n{
	padding:10px;
	text-align: left;
}
#block-production-1 .bigger{
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0;
	white-space: nowrap;
	position: relative;
	line-height: 1.2;
}
.production-bg{
	height: 100vh;
	min-height: 680px;
	background-size: auto 100%;
	background-size: cover;
	/*background-attachment: fixed; for ios fixed bg image's size setting not work*/
}
.production-bg .site{
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
}
#block-production-2{ background-image: url(images/production-process-1.jpg) }
#block-production-3{ background-image: url(images/production-process-2.jpg) }
#block-production-4{ background-image: url(images/production-process-3.jpg) }
#block-production-5{ background-image: url(images/production-process-4.jpg) }
#block-production-6{ background-image: url(images/production-process-5.jpg) }
#block-production-7{ background-image: url(images/production-process-6.jpg) }
#block-production-8{ background-image: url(images/production-process-7.jpg) }
#block-production-9{ background-image: url(images/production-process-8.jpg) }
#block-production-10{ background-image: url(images/production-process-9.jpg) }
#block-production-11{ background-image: url(images/production-process-10.jpg) }
#block-production-12{ background-image: url(images/production-process-11.jpg) }
#block-production-13{ background-image: url(images/production-process-12.jpg) }
#block-production-14{ background-image: url(images/production-process-13.jpg) }
.production-txt{
	color: #fff;
	text-align: left;
	width: 800px;
	max-width: 100%;
}
.production-txt .sub-title{
	color: #fff;
	opacity: 0.8;
	margin-bottom: 7px;
	margin-bottom: .5rem;
}
.production-txt h2{
	color: #fff;
	font-weight: 800;
	margin-bottom: 28px;
	margin-bottom: 2rem;
}
#production-list-container{
	position: fixed;
	left:60px;
	top:130px;
	color:#fff;
	-webkit-opacity: 0;
	opacity: 0;
	z-index: -1;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	display: none;
}
#production-list-container.stay{
	-webkit-opacity: 1;
	opacity: 1;
	z-index: 1;
}
#production-list-container:after{
	content:"";
	position: absolute;
	left:0;
	top:20px;
	height:calc(100% - 40px);
	width: 1px;
	background:#fff;
}
#production-list-container li{
	font-size:13px;
	position:relative;
	cursor: pointer;
	color:rgba(255,255,255,0.5);
	line-height: 40px;
	height: 40px;
	white-space: nowrap;
	padding-left: 18px;
	box-sizing: border-box;
}
#production-list-container li.current,
#production-list-container li:hover{
	color:#fff;
}
#production-list-container li.current:after{
	content:"";
	position:absolute;
	width:5px;
	height: 5px;
	border-radius: 50%;
	background:#fff;
	left:-2px;
	top:18px;
}
#top-qa{
	background-image: url(images/qa-top-2.jpg);
}
#block-qa-1{
	background-image: url(images/qa-b1.jpg);
}
#block-qa-4{
	background: #fafafa;
}
.qa-value-item{
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	padding: 28px;
	border:1px solid rgba(255,255,255,0.5);
	margin:20px 0;
}
.qa-value-item h3{
	text-transform: uppercase;
}
.qa-value-item p{
	line-height: 1.8;
}
#block-qa-2 p{
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
#qa-p1{
	width: 100%;
	margin: 30px auto;
	max-width: 1864px;
	height: auto;
}
@media screen and (max-width:767px){
	#qa-p1{
		width: calc(100% + 42px);
		margin-left:-21px
	}
}
#block-qa-3{
	position: relative;
	padding:0;
}
#mySwiperQa{
	width: 100%;
}
.qa-swiper-item{
	width: 100%;
	height: 600px;
	max-height: 850px;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	text-align: center;
	color: #fff;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.qa-swiper-item-1{ background-image:url(images/qa-swiper-1.jpg); }
.qa-swiper-item-2{ background-image:url(images/qa-swiper-2.jpg); }
.qa-swiper-item-3{ background-image:url(images/qa-swiper-3.jpg); }
.qa-swiper-item-4{ background-image:url(images/qa-swiper-4.jpg); }
#mySwiperQa-prev{
	left:0;
}
#mySwiperQa-next{
	right:0;
}
.qa-swiper-item h3{
	position: relative;
	z-index: 1;
	margin: 0 auto;
	display: inline-block;
	padding: 2px 0;
	font-size: 21px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	text-align: center;
	box-sizing: border-box;
	width: 262px;
	max-width: 100%;
	line-height: 1.3;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	opacity: 0;
}
	.qa-swiper-item.swiper-slide-active h3{
		opacity: 1;
	}
.qa-swiper-item p{
	position: relative;
	z-index: 1;
	max-width: 800px;
	box-sizing: border-box;
	padding:0 28px;
	margin: 14px auto;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	opacity: 0;
}
	.qa-swiper-item.swiper-slide-active p{
		opacity: 1;
	}
#swiperQa-thumb{
	width:100%;
	position: absolute;
	z-index: 2;
	bottom: 30px;
	font-size: 0;
}
#swiperQa-thumb .site{
	margin-top: 0;
	margin-bottom: 0;
}
.swiperQa-thumb{
	position: relative;
	display: inline-block;
	width:25%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.swiperQa-thumb img{
	width:100%;
	height: auto;
}
#swiperQa-thumb-1{ background-image:url(images/qa-swiper-1.jpg); }
#swiperQa-thumb-2{ background-image:url(images/qa-swiper-2.jpg); }
#swiperQa-thumb-3{ background-image:url(images/qa-swiper-3.jpg); }
#swiperQa-thumb-4{ background-image:url(images/qa-swiper-4.jpg); }
.swiperQa-thumb span{
	position: absolute;
	top:0;
	left: 0;
	box-sizing: border-box;
	padding-top: 50px;
	padding-top: -webkit-calc(35% - 12px);
	padding-top: calc(35% - 12px);
	display: block;
	width: 100%;
	height: 100%;
	font-size: 13px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	background:rgba(0,0,0,0.4);
	z-index: 1;
	line-height: 1.3;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	opacity: 0;
}
.swiperQa-thumb:hover span{
	opacity: 1;
}
.swiperQa-mask{
	position: absolute;
	left: 0;
	top:0;
	width: 100%;
	height:100%;
	z-index: 0;
	background: url(images/qa-swiper-mask.png) no-repeat center;
	background-size: cover;
}
#swiperQa-titleline{
	margin: 0 auto;
	max-width: 500px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
}
#swiperQa-titleline-1{
	border-right: 1px solid rgba(255,255,255,0.8);
}
#swiperQa-titleline-1,
#swiperQa-titleline-2{
	width: 50%;
}
#qa-pyramid{
	margin:30px auto;
	max-width: 100%;
	display: block;
}
.certificate-table {
	border-collapse: separate; 
	border-spacing: 2px; 
	width: 100%;
}
.certificate-table td{
	font-size: 14px;
	box-sizing: border-box;
	padding: 4px;
	text-align: center;
	line-height: 1.5;
	background-color: #EAEAEA;
	vertical-align: middle;
}
.certificate-table thead td{
	background: #56586C;
	color: #fff;
}
@media screen and (max-width:767px){
	#qa-pyramid{
		width: 130%;
		max-width: none;
	}
}
@media screen and (min-width:768px){
	#block-research-1,
	#block-research-3{
		height: 684px;
	}
	#top-production .entry-title{
		font-size:42px;
		font-size: 3rem;
	}
	#top-production .entry-title{
		margin:35px auto;
	}
	.production-bg{
		background-attachment: fixed;
	}
	.production-txt{
		max-width: 100%;
	}
	#block-qa-1 .site{
		margin-top:100px;
		margin-bottom: 100px;
	}
	#block-production-1 .col-n{
		text-align: center;
	}
	.certificate-table td{
		font-size: 15px;
		min-width: 200px;
		padding: 6px
	}
	.qa-value-item{
		height: 172px;
	}
}
@media screen and (min-width:1024px){
	#block-research-5-cont{
		box-sizing: border-box;
		border:5px solid #fff;
		padding:75px 50px;
		width: 50%;
		float: left;
	}
	#block-research-7 .col-raw p.txt-bigger{
		font-size: 20px!important;
	}
}
@media screen and (min-width:1200px){
	#block-research-1 h2,
	#block-research-2 h2,
	#block-research-3 h2{
		font-size: 35px;
		line-height: 1.2;
	}
	#block-research-2-left{
		padding-left: 120px ;
	}
	#top-production .entry-title{
		font-size:63px;
		font-size: 4.5rem;
	}
	#top-production .entry-title-sub{
		font-size: 13px;
	}
	#top-production .top-inner-container{
		
	}
	#block-production-1 .site{
		max-width: 1400px;
	}
	#block-production-1 .bigger{
		font-size: 28px;
		height: 68px;
		vertical-align: bottom;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	#block-production-1 .col-n{
		height: 150px;
	}
	#mySwiperQa-prev{
		left:calc(50% - 600px);
	}
	#mySwiperQa-next{
		right:calc(50% - 600px);
	}
	#mySwiperQa-prev,
	#mySwiperQa-next{
		top:-webkit-calc(55% - 15px);
		top:calc(55% - 15px);
	}
	.swiperQa-thumb span{
		font-size: 16px;
	}
	.qa-swiper-item{
		height: 760px;
		padding-bottom: 50px;
		background-position: center 80%;
	}
}
@media screen and (min-width:1600px){
	#production-list-container{
		display: block;
	}
}
@media screen and (min-width:1600px){
	#block-research-2-left{
		padding-left: calc(50% - 750px);
		padding-right: 80px;
	}
}

/*about pages*/
#top-team{
	background-image:url(images/top-team.jpg);
}
#block-leadership-1 .site{
	max-width: 1500px;
}
#block-leadership-1 .swiper-container{
	width: 100%;
}
#block-leadership-1 .swiper-container img{
	max-width: 100%;
	width: 100%;
	height: auto;
	border-radius: 12px;
}
#block-leadership-1 #mySwiperBios-next{
	right: 0;
	left: auto;
}
#block-leadership-1 .swiper-nav{
	background:transparent;
	color: #fff;
}
#block-leadership-1 p.txt-smaller{
	line-height: 1.8;
}
#block-leadership-1 .site{
	margin-bottom: 160px;
}
ul.bios-list{
	margin:0 auto;
}
.bios-list li{
	overflow:hidden;
	padding-bottom: 14px;
	padding-bottom: 1rem;
	line-height: 1.5;
}
.bios-list a{
	display: block;
	text-decoration: none;
}
.bios-list a:hover{
	text-decoration: none;
}
.bios-thumb{
	width: 35%;
	float: left;
	margin-right: 14px;
	border-radius: 8px;
}
.bios-list .bios-txt{
	-webkit-width: calc(60% - 14px);
	width: calc(55% - 14px);
	float: right;
}
.bios-list .name{
	font-weight: 600;
	display: block;
}
.bios-list .title{
	display: block;
	font-size: 13px;
	line-height: 1.5;
}
#mySwiperBiosTxt{
	margin-top: 42px;
	margin-top: 3rem;
}
#mySwiperBiosTxt .col-raw{
	margin:0;
}
#mySwiperBiosTxt .name{
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 600;
	display: block;
	margin-top: 14px;
	margin-bottom: 0;
	line-height: 1.5;
	margin-left: 
}
#mySwiperBiosTxt .swiper-slide{
	background-color: #fff;
}
#mySwiperBiosTxt .title{
	display: block;
	margin-bottom: 21px;
	line-height: 1.5;
}
.btn-bios{
	box-sizing: border-box;
	width: 45%;
	display: block;
	background:#d6b361;
	border-radius: 10px;
	color:#fff;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	padding: 5px 10px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.btn-bios.disable{
	background:gray;
	cursor: default;
}
.btn-bios:hover{
	color: #fff;
	text-decoration: none;
}
#block-team-1,
#block-team-2{
	height: 720px;
	background:url(images/team-1.jpg) #605a5e center bottom no-repeat;
	margin:0 auto;
	color: #fff;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	padding:0 40px;
	padding-bottom: 380px;
}
#block-team-2{
	background-image:url(images/team-2.jpg);
}
@media screen and (max-width:767px){
	#block-team-1,
	#block-team-2{
		background-size: 130%;
		padding-bottom: 180px;
		height: 370px;
	}
}
@media screen and (min-width:1200px){
	#mySwiperBiosTxt .name{
		font-size: 28px;
		font-size: 2rem;
	}
	.bios-list .name{
		margin-top: 10px;
	}
}

/*product pages*/
#top-accessories{
	background-image: url(images/accessories-top.jpg);
}
#top-products{
	background-image: url(images/product-top.jpg);
}
.block-product-item{
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	box-sizing: border-box;
	color:#fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height:400px;
	margin-bottom: 60px;
	color: #fff;
	padding:40px;
	text-align: center;
}

#block-accessories-3-1{
	background-image: url(images/accessories-c1.jpg);
}
#block-accessories-3-2{
	background-image: url(images/accessories-c2.jpg);
}
#block-accessories-3-3{
	background-image: url(images/accessories-c3.jpg);
}
#block-accessories-3-4{
	background-image: url(images/accessories-c4.jpg);
}
#block-products-1-1{
	background-image: url(images/product-cat-1.webp?v=1);
}
#block-products-2-1{
	background-image: url(images/product-cat-2.webp?v=1);
}
#block-products-3-1{
	background-image: url(images/product-cat-3.webp?v=1);
}
#block-products-5-1{
	background-image: url(images/home-marketing.webp);
}
#block-products-4-1{
	background-image: url(images/product-b4.jpg);
}
#block-products-1,
#block-products-2,
#block-products-3,
#block-products-4,
#block-products-5{
	padding: 0;
}
.block-product-category{
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	box-sizing: border-box;
	color:#fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height:400px;
	color: #fff;
	padding:40px;
	text-align: center;
}
.block-product-category .site{
	margin: 0 auto;
	width: 100%;
}
.block-product-category p,
.block-product-item p{
	margin-top: 0;
	margin-bottom: 14px;
}
.block-product-category h2,
.block-product-item h2{
	text-transform: uppercase;
	font-size: 21px;
	font-size: 1.5rem;
	color: #fff;
	line-height: 1.2;
}
#block-accessories-1 .site,
#block-accessories-2 .site,
#block-accessories-3 .site{
	margin-bottom: 0;
}
#block-accessories-2 .site,
#block-accessories-3 .site{
	margin-top: 0;
}
#block-accessories-1-1{
	background-color: #f7f7f7;
	background-image: url(images/accessories-t1.jpg);
	background-position: 50%;
	background-size: auto 100%;
	text-align: left;
	color: #000;
	padding-right: 35%;
}
#block-accessories-2-1{
	background-color: #eceded;
	background-image: url(images/accessories-t2.jpg);
	background-position: 50%;
	background-size: auto 100%;
	text-align: left;
	color: #000;
	padding-left: 40%;
}
#block-accessories-1-1,
#block-accessories-2-1{
	align-items: flex-start;
}
#block-accessories-1-1 h2,
#block-accessories-2-1 h2{
	text-align: left;
	color: #000;
	max-width: 450px;
}
#block-accessories-1-1 p,
#block-accessories-2-1 p{
	max-width: 450px;
}
@media screen and (max-width:767px){
	#block-products-1-1{
		background-position: 80% center;
	}
	#block-products-2-1{
		background-position: 80% center;
	}
	#block-products-3-1{
		background-position: 80% center;
	}
}
@media screen and (min-width:768px){
	.block-product-item{
		height: 500px;
	}
	.block-product-category{
		height: 620px;
	}
	#block-products-1 .site,
	#block-products-2 .site,
	#block-products-3 .site{
		width: 100%;
		text-align: left;
	}
}
@media screen and (min-width:1024px){
	.block-product-item h2{
		font-size: 28px;
		font-size: 2rem;
	}
	.block-product-category h2{
		font-size: 35px;
		font-size: 2.5rem;
	}
	#block-accessories-1-1{
		padding-left:100px;
		background-position: right;
	}
	#block-accessories-2-1{
		padding-left:60%;
		background-position: left;
	}
}

@media screen and (min-width:768px){
	.top-inner {
		
	}
	.top-inner .breadcrumb{
		display: block;
	}
	.top-inner .entry-title{
		font-size: 45px;
	}
	.top-image {
		height: 150px;
		background-size:auto 100%;
	}
	.footer-media,
	.footer-bottom{
		text-align: left;
	}
	.top-inner .entry-title-sub{
		font-size: 14px;
		font-size: 1rem;
	}
	.footer-media .icn-social{
		margin-right: 26px;
	}
}
@media screen and (min-width:1200px){
	.site-blocks .site{
		margin:98px auto;
		margin:7rem auto;
	}
	.logo-footer{
		display: block;
	}
	footer[id="colophon"] .footer-media,
	footer[id="colophon"] .footer-bottom{
		padding-left: 0;
		padding-right: 0;
	}
	#hgroup-search{
		margin-top: 40px;
	}
	#home-headimage {
		margin-top: 0;
	}
	.top-inner {
		height:min(55vw, 50vh);
		/*background-attachment: fixed;*/
		background-size: cover;
		background-position: center;
		min-height: 560px;
	}
	.top-inner-smaller{
		height:600px;
		min-height:600px;
	}
	.top-inner-smaller .top-inner-container{
		margin-top: 320px;
	}
	.top-inner .entry-title{
		margin-top: 28px;
	}
	.top-inner .entry-title-sub{
		margin-top: 12px;
	}
}
@media screen and (min-width:1920px){
	.top-inner,
	.bg-fullwidth {
		background-size:100% auto;
		background-size:cover;
	}
	.top-inner .entry-title{
		font-size: 55px;
		letter-spacing: 0;
	}
}
@media screen and (min-width:2560px){
	.top-inner{
		min-height: 850px;
	}
}

/*product single & list page*/
#block-product-list .site,
#block-product-inner .site{
	margin-top: 0;
	max-width: 1500px;
}
#swiper-product-outer{
	position: relative;
	margin-bottom: 40px;
}
#swiper-product{
	width: 100%;
}
#swiper-product .swiper-slide{
	width: 100%;
	background-color: #fff;
}
#swiper-product .swiper-slide img{
	width: 100%;
}
#swiper-product-thumb{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
#swiper-product-thumb a{
	border:1px solid #eee;
	width: 65px;
	height: 65px;
	margin: 10px 10px 0 0;
}
#swiper-product-thumb a:last-child{
	margin-right: 0;
}
#swiper-product-thumb a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
h2.product-single-name{
	font-size: 18px;
	font-weight: 700;
    line-height: 1.5;
    margin-bottom: 40px;
}
ul.product-spec{
	margin-top: 30px;
	list-style: none;
}
ul.product-spec li{
	list-style: none;
	margin: 0;
	padding-bottom: 14px;
}
ul.product-spec dt{
	display: inline-block;
    vertical-align: top;
    width: 140px;
    color: #aaa;
    font-weight: 300;
}
ul.product-spec dd{
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 145px);
	color: #000;
	margin-bottom: 0;
}
.product-single-aside hr{
	margin:40px 0;
}
.product-list-item{
	box-sizing: border-box;
	background-color: #fff;
	line-height: 1.4;
}
.product-list-item img{
	width: 100%;
	height: auto;
	margin-bottom: 14px;
}
.product-list-item a:hover{
	text-decoration: none;
}
.product-list-item h3{
	font-size: 15px;
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.product-list-txt{
	box-sizing: border-box;
	padding:14px 0;
}
#product-filter{
	min-height: 50px;
	box-sizing: border-box;
	padding: 0;
	margin-bottom: 40px;
}
.product-filter-line.disabled{
	pointer-events: none;
}
.product-filter-line{
	margin-top: 0;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.product-filter-section{
	overflow: hidden;
	transition: 0.2s all;
}
.product-filter-section label{
	display: block;
	font-size: 13px;
	padding: 5px 0;
}
.product-filter-name{
	cursor: pointer;
	position: relative;
}
.product-filter-name:after{
	display: block;
	position: absolute;
	content: "\f107";
	font: normal normal normal 20px/1 FontAwesome;
	right: 0;
	top: 4px;
	transition: 0.2s all;
}
.product-filter-line.toggled-on .product-filter-name:after{
	transform: rotate(180deg);
}
.product-filter-name h3{
	color: #000;
	padding: 7px 0;
	margin: 0;
	text-transform: none;
	font-size: 15px;
	transition: 0.2s all;
}
.product-filter-line.toggled-on .product-filter-name h3{
	padding-bottom: 20px;
}
#filter_submit{
	width: 100%;
	min-width: 0;
}
.product-filter-item:not(.child){
	margin-top: 8px;
}
.product-filter-item.child{
	padding-left: 20px;
}
.product-list {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width:768px){
	#swiper-product-outer{
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
	}
	#swiper-product{
		width: calc(100% - 125px);
	}
	#swiper-product-thumb{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 120px;
	}
	#swiper-product-thumb a{
		width: 110px;
		height: 110px;
		margin: 0 0 10px 0;
	}
	h2.product-single-name{
		font-size: 21px;
	}
	.product-list-item {
		border: 1px solid #eee;
	}
	.product-list-item h3{
		font-size: 17px;
	}
	.product-list-txt{
		padding:14px 20px;
	}
	.product-list{
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (min-width:1200px){
	.product-list{
		grid-template-columns: repeat(4, 1fr);
	}
}
/*interactive ui*/
#fullMask{
	position: fixed;
	width: 100vw;
	height: 100vh;
	left: 0;
	top: 0;
/*	background:transparent;*/
	background-color: rgba(0,0,0,0.5);
	z-index: -1;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
	-webkit-opacity: 0;
	opacity: 0;
	/*pointer-events: none;*/
}
#fullMask.stay{
	z-index: 10;
	pointer-events: auto;
	-webkit-opacity: 1;
	opacity: 1;
}
#fullMask.stay.unclickable{
	pointer-events: none;
}
#toast{
	position: fixed;
	z-index: 100;
	width: 600px;
	height: 300px;
	box-sizing: border-box;
	padding: 30px 48px;
	background-color: #fff;
	color: #000;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	left:calc(50% - 300px);
	top: calc(50% - 150px);
	pointer-events: none;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	-webkit-opacity: 0;
	opacity: 0;
	-webkit-transform:translate(0,30px);
	transform:translate(0,30px);
}
#toast.stay{
	pointer-events: auto;
	-webkit-opacity: 1;
	opacity: 1;
	-webkit-transform:translate(0,0);
	transform:translate(0,0);
}
#toast i{
	display: block;
	width: 50px;
	height: 50px;
	background:url(images/icon-question.png);
}
#toast p{
	line-height: 1.6;
	font-size: 13px;
	margin: 21px auto;
	max-width: 75%;
}
#toast p a{
	text-decoration: underline;
}
#toast.error i{
	background:url(images/icon-question.png);
}
#toast.note i{
	background:url(images/icon-question.png);
}
#toast.success i{
	background:url(images/icon-success.png);
}
.closeLayer{
	cursor: pointer;
	position: absolute;
	right:10px;
	top:10px;
	width: 16px;
	height: 16px;
	background:url(images/icon-close.svg);
	background-position: center center;
	background-size: 100% auto;
	transition: all 0.2s;
}
.closeLayer:hover{
	transform:rotate(90deg);
}
#loading{
	width: 160px;
	height: 160px;
	position: fixed;
	left: calc(50vw - 50px);
	top: calc(50vh - 30px);
	background:url(images/loading-tp.svg) center center no-repeat;
	background-color: rgba(255,255,255,0.8);
	background-size: 100% auto;
	border-radius: 8px;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
	z-index: -1;
	-webkit-opacity: 0;
	opacity: 0;
}
#loading.stay{
	top: calc(50vh - 50px);
	z-index: 99;
	-webkit-opacity: 1;
	opacity: 1;
}
/*topNavBar*/
#topNavBar{
	position: relative;
	height: 60px;
	background-color: #fff;
	top:0;
	left: 0;
	width: 100%;
	z-index: 11;
	color: #000;
	font-size: 0;
	border-bottom:1px solid #f8f8f8;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
#topNavBar-menu{
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	width:60px;
	height:60px;
	line-height: 60px;
	background-color: #f8f8f8;
	font-size: 21px;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
#topNavBar-menu.stay{
	color: #fff;
	background-color: #d6b361;
}
#topNavBar-up{
	opacity: 0;
	pointer-events: none;
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	width:60px;
	height:60px;
	line-height: 60px;
	background-color: #f8f8f8;
	font-size: 21px;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
#topNavBar-logo{
	display: inline-block;
	vertical-align: middle;
	width: 200px;
	height:60px;
	line-height: 60px;
	text-align: center;
}
#logo-topNav{
	width: 156px;
	height: auto;
	vertical-align: middle;
}
#topNavBar-anchor-list{
	display: none;
	width: 65%;
	width: calc(100% - 320px);
	float: right;
	height: 60px;
	white-space: nowrap;
	flex-grow: 1;
	text-align: center;
}
#topNavBar-anchor-list li{
	display: inline-block;
	height: 60px;
	box-sizing: border-box;
	font-size: 14px;
	font-size: 1rem;
	color:#000;
	width: auto;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 60px;
}
#topNavBar-anchor-list a{
	display: block;
	padding: 0 21px;
	width: auto;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
#topNavBar-anchor-list a:hover{
	background-color:#f4f4f4;
	text-decoration: none;
}
#topNavBar-dropdown{
	position: absolute;
	top:60px;
	left:0;
	background: rgba(248,248,248,0.97);
	height: 0;
	width:100%;
	-webkit-transition:0.3s all;
	transition:0.3s all;
	overflow:hidden;
	box-sizing: border-box;
	padding:0 28px;
	line-height: 40px;
	font-size: 13px;
}
#topNavBar-dropdown.stay{
	height:350px;
	padding:56px 28px;
}
.menu-dropdown{
	text-transform: uppercase;
}
.menu-dropdown a{
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
.menu-dropdown a:hover{
	text-decoration: none;
	color: #d6b361;
}
.menu-dropdown > li {
	position: relative;
	text-align: right;
	width: 140px;
	padding-right: 20px;
	box-sizing: border-box;
	font-weight: 500;
	border-right: 1px solid rgba(0,0,0,0.2);
}
.menu-dropdown > li ul.sub-menu{
	position: absolute;
	left: 100%;
	display: none; 
	top: 0;
	text-align: left;
	width: 300px;
	max-width: calc(100vw - 190px);
	font-weight: 400;
	padding-left: 20px;
	line-height: 22px;


}
.menu-dropdown > li ul.sub-menu li{
	padding-top: 7px;
	padding-bottom: 7px;
}
.menu-dropdown > li:hover ul.sub-menu{
	display: block;
	display: -webkit-box;
	display: -ms-box;
	display: box;
	-webkit-box-orient: vertical;
	-ms-box-orient: vertical;
	box-orient: vertical;
	-webkit-box-pack: center;
	-ms-box-pack: center;
	box-pack: center;
	-webkit-box-align: left;
	-ms-box-align: left;
	box-align: left;
	height:200px;
}
.menu-dropdown .menu-item-72 ul.sub-menu{ top: 0; }
.menu-dropdown .menu-item-75 ul.sub-menu{ top: -40px; }
.menu-dropdown .menu-item-73 ul.sub-menu{ top: -80px; }
.menu-dropdown .menu-item-76 ul.sub-menu{ top: -120px; }
.menu-dropdown .menu-item-74 ul.sub-menu{ top: -160px; }

.menu-dropdown .menu-item-1199 ul.sub-menu{ top: 0; }
.menu-dropdown .menu-item-1203 ul.sub-menu{ top: -40px; }
.menu-dropdown .menu-item-1209 ul.sub-menu{ top: -80px; }
.menu-dropdown .menu-item-1214 ul.sub-menu{ top: -120px; }
.menu-dropdown .menu-item-1217 ul.sub-menu{ top: -160px; }

.menu-dropdown .menu-item-2929 ul.sub-menu{ top: 0; }
.menu-dropdown .menu-item-2933 ul.sub-menu{ top: -40px; }
.menu-dropdown .menu-item-2938 ul.sub-menu{ top: -80px; }
.menu-dropdown .menu-item-2943 ul.sub-menu{ top: -120px; }
.menu-dropdown .menu-item-2946 ul.sub-menu{ top: -160px; }

.menu-dropdown .current-menu-item > a,
.menu-dropdown .current-menu-ancestor > a,
.menu-dropdown .current_page_item > a,
.menu-dropdown .current_page_ancestor > a{
	color: #d6b361;
}
@media screen and (min-width: 1024px){
	#topNavBar{
		position: fixed;
		top:-60px;
	}
	#topNavBar.scroll{
		top: 0;
	}
	#topNavBar-up{
		opacity: 1;
		pointer-events: auto;
	}
	.admin-bar #topNavBar.scroll{
		top:48px;
	}
	.admin-bar #topNavBar.scroll{
		top:32px;
	}
	.menu-dropdown > li {
		width: 200px;
		padding-right:50px;
	}
	.menu-dropdown > li ul.sub-menu{
		padding-left: 50px;
	}
	.menu-item-2cols .sub-menu{
		display: grid;
		grid-template-rows: repeat(3, 1fr);
		grid-auto-flow: column;
	}
}
@media screen and (min-width:1200px){
	#topNavBar-anchor-list{
		display: block;
	}
}

.top-inner-pale{
	background-color: #fff;
	color: #000;
	height: 330px;
}
.top-inner-pale .entry-title{
	color: #000;
	font-size: 35px;
	letter-spacing: 0;
}
.top-inner-pale .entry-title:after{
	display: none;
}
.top-inner-pale .entry-title-sub{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.block-pale .site{
	background-color: #F1F1F1;
	max-width: 1300px;
	margin-top: 0;
}
.block-pale .site .single-content{
	padding-top: 50px;
	padding-bottom: 50px;
	max-width: 1000px;
	margin-right: auto;
	margin-left:auto;
}
@media screen and (min-width: 1024px){
	.top-inner-pale{
		height: 500px;
		min-height: 500px;
		padding-top: 100px;
	}
}


/*popup forms*/
.coverThePage{/*页面遮盖层*/
	width:100vw;
	height:100vh;
	background:rgba(0,0,0,0.7);
	/*background:transparent;*/
	position: fixed;
	top:0;
	left:0;
	display: none;
	z-index: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.coverThePage.stay{
	display: block;
	z-index: 98;
}
.popup-form-container{
	box-sizing: border-box;
	position: fixed;
	left: 0;
	top: 60px;
	background:#fff;
	text-align: center;
	z-index: 0;
	width: 500px;
	padding: 35px 0 5px 0;
	font-size: 13px;
    color: #000;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
	max-width: 100%;
	left:-100%;
	pointer-events: none;
}
.popup-form-container.stay{
	left:0;
	opacity: 1;
	z-index: 99;
	pointer-events: initial;
}
.popup-form-container-cont{
	box-sizing: border-box;
	padding: 0 28px;
	width: 100%;
	margin:0 auto;
	max-height: 100vh;
	overflow: auto;
}
.popup-form-container-cont h2{
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 18px;
}
.popup-form-container-cont p{
	margin-bottom: 10px;
	line-height: 1.5;
	color: #666;
}
.popup-form-container-cont .gform_body{
	margin-top: 30px;
	text-align: left;
}
.popup-form-container-cont .gform_button{
	width: 100%;
	display: block;
}
.popup-form-container a {
	color: #bbb;
	text-decoration: underline;
}
.popup-form-container a:hover{
	color: #fff;
	text-decoration: none;
}
.popup-form-container .gform_wrapper ul.gform_fields li.gfield,
.popup-form-container .gform_wrapper li.gfield.gfield_error.gfield_contains_required{
	padding-right:0;
}
.popup-form-container .gform_confirmation_message{
	color: #f90;
	margin-bottom: 40px;
}
.popup-form-container .gform_wrapper.gravity-theme .gform_fields{
	grid-row-gap: 30px;
}

@media screen and (min-width: 768px){
	.popup-form-container-cont h2{
		font-size: 28px;
		font-size: 2rem;
	}
	.popup-form-container{
		left:-webkit-calc(50% - 250px);
		left:calc(50% - 250px);
		top: calc(50vh - 200px);
	}
	.popup-form-container.stay{
		left:-webkit-calc(50% - 250px);
		left:calc(50% - 250px);
		top: calc(50vh - 300px);
	}
	.popup-form-container-cont{
		max-height: -webkit-calc(100vh - 145px);
		max-height: calc(100vh - 145px);
	}
	.closeLayer{
		width: 30px;
		height: 30px;
	}
}

/*extra animations*/
@media screen and (min-width: 1200px){
	.anm-container{
		-webkit-transition: all 0.7s;
		transition: all 0.7s;
		-webkit-transition-delay: 0.5s;
		transition-delay: 0.5s;
		-webkit-opacity: 0;
		opacity: 0;
	}
	.anm-container.stay{
		-webkit-opacity: 1;
		opacity: 1;
		-webkit-transform: none!important;
		transform: none!important;
	}
	#block-compliance-4-left .anm-container{
		-webkit-transform: translate(-100px,0);
		transform: translate(-100px,0);
	}
	#block-compliance-4-right .anm-container{
		-webkit-transform: translate(100px,0);
		transform: translate(100px,0);
	}
	
	.cell-info-left,
	.cell-info-right{
		-webkit-transition: all 0.8s;
		transition: all 0.8s;
		-webkit-transition-delay: 0.2s;
		transition-delay: 0.2s;
		-webkit-opacity: 0;
		opacity: 0;
	}
	.cell-info-left{
		-webkit-transform: translate(100px,0);
		transform: translate(100px,0);
	}
	.cell-info-right{
		-webkit-transform: translate(-100px,0);
		transform: translate(-100px,0);
	}
	.cell-info hr{
		-webkit-opacity: 0;
		opacity: 0;
		-webkit-transition: all 0.8s;
		transition: all 0.8s;
		-webkit-transition-delay: 0.7s;
		transition-delay: 0.7s;
		position: relative;
		/*z-index: -1;*/
	}
	.block-cell.stay .cell-info-left,
	.block-cell.stay .cell-info-right{
		-webkit-opacity: 1;
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
	.block-cell.stay .cell-info hr{
		-webkit-opacity: 1;
		opacity: 1;
	}
}

#float-whatsapp{
	width: 60px;
	height: 60px;
	background: url(images/whatsapp-icon.webp) no-repeat;
	background-size: 100% auto;
	display: block;
	position: fixed;
	bottom: 40px;
	right: 10px;
	z-index: 1;
	border-radius: 50%;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	transition: 0.2s all;
}
#float-whatsapp:hover{
	transform: translate(0,-2px);
}