/*
Theme Name: Edvance HK
Theme URI: http://www.becomingjenny.net
Version: 1.0
Author: Brain@JennyStudio
Author URI: http://www.brain1981.com
Description: This theme is a customized version based on Wordpress theme twentyTwelve. JennyStudio - build your own WordPress theme.
License: 
License URI: http://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: edvance
*/

/* =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
-------------------------------------------------------------- */
/*@import url(fonts/fonts-Montserrat.css);*/

*::-moz-selection {
	background-color: #4D525A;
	color: #FFF;
}
*::selection {
	background-color: #4D525A;
	color: #FFF;
}
.customized-scroller{
	overflow-y: auto;
}
.customized-scroller::-webkit-scrollbar{
	width:6px;
}
.customized-scroller::-webkit-scrollbar-track{
	background:#f2f2f2;
	border-radius:3px
}
.customized-scroller::-webkit-scrollbar-thumb{
	background:#ccc;
	border-radius:3px
}
input[type="button"],
input[type="submit"],
input[type="reset"],
textarea,
select {
	-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 #ddd;
	background-color: #fff;
	/*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;
}
select{
	background:url(images/arraw-select.png) no-repeat #fff;
	background-size: auto 40%;
	background-position: right center;
}
/* 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;
}

/* 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: #005aab;
	border:none;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
	-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: #005aab;
}
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #fff;
	background-color: #005aab;
}
.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: 8px 8px;
	width: 176px;
	text-align: center;
	font-size: 14px;
	font-size: 1rem;
	text-decoration: none;
	border-radius: 4px;
	/*text-transform: capitalize;*/
	line-height: 1;
	font-weight: 400;
	background-color: #005aab;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-text-shadow: none;
	text-shadow: none;
	word-break: keep-all;
}

.button:hover{
	text-decoration: none!important;
}
.button1{
	border:1px solid #005aab;
	color:#005aab!important;
	background:transparent;
}
.button1:hover{
	color:#fff!important;
	border:1px solid #f90;
	background:#f90;
	text-decoration: none!important;
}
.button2 {
	background-color: transparent;
	color: #fff!important;;
	border:1px solid #fff;
}
.button2:hover {
	background-color: #f90;
	border:1px solid #f90;
	color: #fff!important;
	text-decoration: none!important;
}
.button3{
	border:1px solid #f28d31;
	color:#fff!important;;
	background:#f28d31;
}
.button3:hover{
	color:#fff;
	border:1px solid #f90;
	background:#f90;
	text-decoration: none!important;
}
.button-large{
	padding: 12px 28px;
	font-size: 18px;
}
.button-small{
	padding: 7px 14px;
	width:auto;
	font-size: 14px;
	font-size: 1rem;
}
.button-back{
	padding: 7px 35px;
	width:auto;
	font-size: 14px;
	font-size: 1rem;
}

@media screen and (min-width: 760px){
	.button{
		padding: 12px 12px;
		width: 200px;
		font-size: 16px;
		font-size: 1.14285714rem;
	}
	.button-small{
		padding: 7px 14px;
		width:auto;
		font-size: 14px;
		font-size: 1rem;
	}
	.button-large{
		padding: 14px 30px;
		font-size: 21px;
		font-size: 1.5rem;
	}

}

/* Responsive images */
.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 */
}


/*text color*/
.txt-red{color:#ff534e!important}
.txt-blue{color:#5b9bd5!important}
.txt-orange{color:#ffa836!important}

/*grids*/
.col-raw{
	margin:0 -28px 0 -28px;
	overflow: hidden;
}
.col-raw.col-medium{
	margin-left: -16px;
	margin-right: -16px;
}
.col-raw.col-narrow{
	margin-left: -8px;
	margin-right: -8px;
}
.col-n{
	box-sizing: border-box;
	padding-left: 28px;
	padding-right: 28px;
}
.col-medium>.col-n{
	padding-left: 16px;
	padding-right: 16px;
}
.col-narrow>.col-n{
	padding-left: 8px;
	padding-right: 8px;
}
@media screen and (max-width: 767px){
	.col-n-mb{
		float: left;
	}
	.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;
	}
	.col-raw.col-medium{
		margin-left: -12px;
		margin-right: -12px;
	}
	.col-medium>.col-n{
		padding-left: 12px;
		padding-right: 12px;
	}
}
@media screen and (min-width: 768px){
	.col-n{
		float: left;
	}
	.col-2{
		width:16.66%;
	}
	.col-1-5{
		width:20%;
	}
	.col-2-5{
		width:40%;
	}
	.col-3-5{
		width:60%;
	}
	.col-4-5{
		width:80%;
	}
	.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%;
	}
	.hide-pc{
		display: none;
	}
	.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;
	}
}
/*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: 400;
	text-rendering: optimizeLegibility;
	color: #555;
	background-color:#fff;
}

a {
	outline: none;
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #005aab;
	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: 1264px;
	position: relative;
	width: 100%;
	padding: 0 28px;
	box-sizing: border-box;
}
.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 {
	padding: 0;
	width:100%;
	background-color:#fff;
	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;
	/*font-family: 'Roboto', '微软雅黑', serif;*/
}
.main-navigation a:hover,
.main-navigation a:focus {
	/*background: #fafafa;*/
	color:#005aab;
}
.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:#000;*/
	font-weight: 600;
}

/* 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: 14px;
	font-size: 1rem;
}
footer[role="contentinfo"] a {
	color: #000;
}
footer[role="contentinfo"] a:hover {
	color: #005aab;
	text-decoration: none;
}
footer[role="contentinfo"] h3{
	font-size: 16px;
	font-weight: 500;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ccc;
}
footer[role="contentinfo"] strong{
	font-size: 14px;
	font-size: 1rem;
	font-weight: 400;
}
footer[role="contentinfo"] .col-n{
	padding-top: 14px;
	padding-top: 1rem;
	padding-bottom: 14px;
	padding-bottom: 1rem;
}

/* =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 #ddd;
	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: 14px;
	margin-bottom: 1rem;
	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.75;
	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:#005aab;
	font-weight: 500;
	text-align: left;

}
.entry-content h3,
.comment-content h3 {
	font-size: 19px;
	line-height: 1.846153846;
	color:#005aab;
}
.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.75;
	font-size: 15px;
    font-size: 1.07147285rem;
}
.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.75;
	font-size: 15px;
    font-size: 1.07147285rem;
}
.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.75;
}
.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.75;
}
.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;
	color: #757575;
	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-info { text-align: center}
.site-logo {
	width:185px;
	height:52px;
	max-width:98%;
	display:block;
	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;
}
.wp-pagenavi a,
.wp-pagenavi span {
	border:none;
	min-width: 30px;
	height: 30px;
	padding: 0 12px!important;
	display: inline-block;
	line-height: 30px;
	vertical-align: middle;
	box-sizing: border-box;
	font-size: 14px;
	font-size: 1rem;
}
.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 span.current {
	color:#fff;
	background-image:none;
	background-color:#005aab;
	text-decoration: none;
	font-weight: normal;

}
.wp-pagenavi span.pages {
	border: none;
}

/*gravity forms*/
.gform_required_legend{
	display: none;
}
.gform_wrapper.gf_browser_chrome .gform_body {
	width: 100%;
}
.gform_wrapper.gravity-theme input[type=color],
.gform_wrapper.gravity-theme input[type=date],
.gform_wrapper.gravity-theme input[type=datetime-local],
.gform_wrapper.gravity-theme input[type=datetime],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=month],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=search],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=time],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme input[type=week],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea{
	font-size: 14px!important;
}
.gform_wrapper .top_label .gfield_label,
.gform_wrapper .left_label .gfield_label {
	font-weight: normal!important;
}
.gform_wrapper li.gfield.gfield_error,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background-color: #ffe6b1!important;
	border-top: 1px solid #b78123!important;
	border-bottom: 1px solid #b78123!important;
}
.gform_wrapper div.validation_error {
	color: #b78123!important;
}
.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit] {
	margin: 0;
	font-size: 16px!important;
}
.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: #005aab;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]){
	padding: 6px 6px;
}
body .gform_wrapper .top_label div.ginput_container{
	margin-top: 2px!important;
}
body .gform_wrapper .gform_validation_errors{
	border-color: #f28d31;
	color: #f28d31;
	background: transparent;
	border-radius: 0;
}
body .gform_wrapper .gfield_error [aria-invalid=true]{
	border-color: #f28d31;
}
body .gform_wrapper .gfield_validation_message,
body .gform_wrapper .validation_message{
	border-color: transparent;
	color: #f28d31;
	background: transparent;
	padding: 2px 6px!important;
}
@media screen and (min-width: 768px) {
	.gform_wrapper .left_label div.ginput_complex,
	.gform_wrapper .right_label div.ginput_complex {
		width: 35.5%!important;
	}
}
/*contact form*/
#block-partner-2  .gform_fields{
	display: block;
}
.contact-field{
	box-sizing: border-box;
	padding-right: 0;
	padding-bottom: 21px;
}
#block-partner-2 .gform_validation_errors{
	margin-right: 20px;
	width: auto;
}
#block-partner-2 .gform_confirmation_message{
	color: #fff;
	font-weight: 600;
}
.contact-field label{
	display: none!important;
}
.contact-field input,
.contact-field textarea{
	color: #fff;
	border: 1px solid #fff;
	background: transparent;
}
.contact-field input::-webkit-input-placeholder {
 	color: rgba(255,255,255,0.9);
}
.contact-field textarea::-webkit-input-placeholder {
 	color: rgba(255,255,255,0.9);
}

.contact-field-small label,
.contact-field-medium label,
.contact-field-large label{
	display: none;
}

.contact-field-large{
	width: 100%;
}
#block-partner-2 input[type="submit"]{
	background: transparent;
	border: 1px solid #fff;
}
@media screen and (min-width: 960px){
	.contact-field{
		padding-right: 20px;
	}
	.contact-field-small{
		display: inline-block;
		vertical-align: top;
		width: 50%;
	}
	.contact-field-medium{
		float: left;
		width: 66.6%;
	}
	#block-partner-2 .gform_confirmation_message{
		text-align: center;
	}
}

/* =Media queries
-------------------------------------------------------------- */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}
@media screen and (min-width: 600px) {

}
/* Minimum width of 768 pixels. */
@media screen and (min-width: 768px) {
	hgroup{
		overflow: visible;
	}
	.site {
		margin: 0 auto;
		max-width: 1208px;
		/*max-width: 71.4285rem;
		overflow: hidden;*/
	}
	.site-narrow{
		max-width: 880px;
	}
	.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%;
	}
	.site-header {
		/*min-height: 91px;*/
	}
	.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%;
	}

}

/* 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;
	}
	#top-height{
		height: 0;
	}
	.site-header{
		position: fixed;
		z-index: 99;
		top:0;
		background-color: transparent;
	}
	.admin-bar .site-header{
		top:32px;
	}
	.site-logo{
		float:left;
		margin: 23px 0;;
		width:185px;
		height:52px;
		background: url(images/logo-w.png) no-repeat;
		background-size: 100% auto;
	}
	.site-logo img{
		opacity: 0;
	}
	.main-navigation ul.nav-menu{
		overflow: visible;
	}
	.main-navigation ul.nav-menu.toggled-on {
		margin-top: 0;
		margin-bottom: 0
	}
	
	.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: #005aab;
	}

	.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 > .current-menu-item > a:after,
	.main-navigation .nav-menu > .current-menu-ancestor > a:after,
	.main-navigation .nav-menu > .current_page_item > a:after,
	.main-navigation .nav-menu > .current_page_ancestor > a:after  {
		background: rgba(255,255,255,0.6);
		position: absolute;
		left: 28px;
		bottom: 10px;
		content: "";
		width: calc(100% - 56px);
		height: 1px;
	}

	.main-navigation li ul {
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 50;
		height: 1px;
		width: 1px;
		overflow: hidden;
		clip: rect(1px, 1px, 1px, 1px);
		left:-webkit-calc(50% - 80px);
		left:calc(50% - 80px);
	}
	.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;
	}
	.main-navigation li ul li{
		display: block;
		line-height: 2.6;
	}
	.main-navigation li ul li a {
		box-sizing: border-box;
		width: 160px;
		padding:0 10px;
		background: #005aab;
		background: rgba(245,245,245,0.9);
		text-align: center;
		border-top: 1px solid rgba(255,255,255,0.5);
		display: block;
		line-height: 2.6;
		font-size: 14px;
		font-size:1rem;
		color: #000;
		white-space: normal;
	}
	.main-navigation li ul li a:hover,
	.main-navigation li ul li a:focus {
		background: rgba(0,0,0,0.5);
		color: #fff!important;
	}

	.main-navigation {
		margin-top: 20px;
		clear: none;
		float: right;
		width: 50%;
		width: -webkit-calc(100% - 200px);
		width: calc(100% - 200px);
		display: inline-block;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		height:auto!important;
		display: inline-block !important;
		width: 100%;
		text-align: right;
	}

	.main-navigation li {
		display: inline-block;
		padding: 0 0;
		position: relative;
	}
	.main-navigation li a {
		display: block;
		color: #fff;
		background-color: transparent;
		line-height: 3.8;
		padding: 0 35px;
		white-space: nowrap;
		text-decoration: none;
		font-size: 15px;
		font-size: 1.071428571rem;
	}

	/* dynamic floating nav bar */
	.site-header,
	.site-header *{
		-webkit-transition: all 0.2s; 
		-moz-transition: all 0.2s; 
		transition: all 0.2s;
	}
	.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: #fff;
		text-shadow: none;
	}
	.site-header.scroll .main-navigation{
		margin-top: 0;
	}
	.site-header.scroll .main-navigation li a {
		/*line-height: 3;*/
		color: #000;
	}
	.site-header.scroll .main-navigation li a:hover,
	.site-header.scroll .main-navigation li a:focus {
		/*color: #005aab;*/
	}
	.site-header.scroll .main-navigation li ul a {
		/*background: #fff;*/
	}	
	.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: #005aab;*/
		/*background-color: #000;*/
	}
	.site-header.scroll .main-navigation .nav-menu > .current-menu-item > a:after,
	.site-header.scroll .main-navigation .nav-menu > .current-menu-ancestor > a:after,
	.site-header.scroll .main-navigation .nav-menu > .current_page_item > a:after,
	.site-header.scroll .main-navigation .nav-menu > .current_page_ancestor > a:after  {
		background: #000;
	}
	.site-header.scroll .site-logo {
		margin-top: 10px;
		margin-bottom: 10px;
		width: 130px;
		height: 37px;
		background: no-repeat;
	}
	.site-header.scroll .site-logo img{
		opacity: 1;
	}
}
@media screen and (min-width: 1440px){
	.main-navigation li a {
		padding: 0 28px;
		padding: 0 2rem;
	}
}

/*return Top button*/
.btn-float{
	position:fixed;
	line-height:50px;
	z-index: 6;
	border-radius: 5px 0 0 5px;
	background-color:#333;
	background-size: 50% 50%;
	background-position: center center;
	background-repeat: no-repeat;
	color:#fff;
	width:40px;
	height:40px;
	display:block;
	right:0;
	bottom:60px;
	-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;
}
.btn-float:hover{
	background-color:#005aab;
}
#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;
	pointer-events: none;
}
#returnTop.hide #returnTop_a,
#returnTop.hide #returnTop_b { display: none }
:root #returnTop.hide { filter:none; }
#returnTop:hover #returnTop_a { top: -4px; }
#returnTop:hover #returnTop_b { top: 16px; }
/*QR Code button*/
#qrCode {
	background-image:url(images/icon_qrcode.gif);
}
#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 #f2f2f2;
	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:100px;
	}
}

/*arrow on top nav*/
.flaticon-down-arrow:after {
	font-size:12px;
}
@media screen and (max-width: 767px) {
	.main-navigation .flaticon-down-arrow:after,
	#mobileMenu .flaticon-down-arrow:after{
		display: none;
	}
}
/*main menu for mobile side*/
#topFloatBar {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	padding: 0;
	background: url(images/logo.svg) no-repeat center 16px #fff;
	background-size: 93px auto;
	z-index: 10;
}
body.admin-bar #topFloatBar {
	/*top:32px;*/
}
#topFloatBar_l,
#topFloatBar_r {
	height: 56px;
	width: 56px;
	line-height: 56px;
	min-height: 56px;
	font-size: 21px;
	text-align: center;
}
#topFloatBar_m {
	display: block;
	height: 56px;
	width: 30%;
	width: calc(100% - 120px);
	float: left;
}
#topFloatBar_l:hover,
#topFloatBar_r:hover {
	background-color: rgba(255,255,255,0.3);
}
#topFloatBar_l {
	float: left;
	background-position: left
}
#topFloatBar_r {
	float: right;
	background-position: 5px center
}
#topFloatBar #mobileMenu {
	margin-top: 46px;
	display: block;
	top: 46px;
	left: 0;
	width: 100%;
	/*box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);*/
	/*opacity:0;*/
	height: 0;
	overflow: hidden;
	-webkit-transition: top 0.2s, display 0.2s, -webkit-opacity 0.2s, height 0.2s;
	-moz-transition: top 0.2s, display 0.2s, -moz-opacity 0.2s, height 0.2s;
	transition: top 0.2s, display 0.2s, opacity 0.2s, height 0.2s;
}
#topFloatBar.toggled-on {
	height: auto;
	width: 100%;
}
#topFloatBar.toggled-on #mobileMenu {
	top: 56px;
	/*opacity:1;*/
	height: 318px;
	/*many need to chage to fit the mobile menu height*/
	overflow: visible;
}
#topFloatBar #mobileMenu a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 0 15px;
	height: 42px;
	line-height: 42px;
	border-bottom: 1px solid transparent;
	border-top: 1px solid rgba(0,0,0,0.05);
	font-size: 15px;
	font-size: 1.0714285rem;
}
#topFloatBar #mobileMenu ul li.current-page-item>a,
#topFloatBar #mobileMenu ul li.current-menu-item>a,
#topFloatBar #mobileMenu ul li ul li.current-page-ancestor a,
#topFloatBar #mobileMenu ul li a:hover {
	/*color:#000;*/
	background-color: rgba(0,0,0,0.04);
	border-top: 1px solid rgba(0,0,0,0.05);
}
#topFloatBar #mobileMenu li a {
	padding-left: 25px;
}
#topFloatBar #mobileMenu ul li ul.sub-menu > li > a {
	padding-left: 58px;
}
#topFloatBar #mobileMenu ul li ul.sub-menu > li.menu-item-has-children > a {
	padding-left: 40px;
	width: -webkit-calc(100% - 80px);
	width: calc(100% - 80px);
}
#topFloatBar #mobileMenu ul li a {
	/*background: #222a35;*/
	color: #000;
	box-sizing: border-box;
}
#topFloatBar #mobileMenu ul li.menu-item-has-children > a {
	padding-right: 0;
	width: 90%;
	width: -webkit-calc(100% - 40px);
	width: calc(100% - 40px);
	display: inline-block;
	vertical-align: middle;
}
#topFloatBar #mobileMenu li a.menu-item-switch,
#topFloatBar #mobileMenu li a.menu-item-switch:hover {
	background-image: url(images/icons_menu_2.png);
	background-position: 0 0!important;
	width: 40px!important;
	display: inline-block!important;
	padding: 0!important;
	height: 42px;
	line-height: 42px;
	vertical-align: middle;
}
#topFloatBar #mobileMenu li.on>a.menu-item-switch {
	background-position: 0 -40px!important;
}
#topFloatBar #mobileMenu li ul.sub-menu li {
	height: 0;
	overflow: hidden;
}
#topFloatBar #mobileMenu li.on ul.sub-menu li {
	/*height: 36px;*/
	height:auto;
}
#topFloatBar #mobileMenu li.off ul.sub-menu li {
	height: 0!important;
}
#masthead{
	display: none;
}
@media screen and (min-width:1024px){
	#topFloatBar {
		display: none;
	}
	#masthead{
		display: block;
	}
}


.full-padding {
	padding-left:0;
	padding-right:0;
}
.full-padding img {
	max-width: 100%;
}
.category-title {
	margin-bottom: 8px;
	margin-top: 21px;
}

.site-blocks p,
.site-blocks ul {
	margin: 14px 0 21px 0;
	margin: 1rem 0 1.5rem 0;
	font-size: 15px;
	font-size: 1.07147285rem;
	line-height: 1.75;
}
.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.4;
	text-transform: uppercase;
}
.site-blocks h2 {
	line-height: 1.3;
	font-size: 25px;
	font-size: 1.785714rem;
	font-weight: 700;
	margin-bottom: 28px;
	margin-bottom: 2rem;
	color: #000;
	text-transform: uppercase;
}
.site-blocks .entry-content h2 {
    margin: 24px 0;
    margin: 1.714285714rem 0;
}
.site-blocks h3 {
	line-height: 1.5;
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 600;
	/*margin-bottom: 28px;
	margin-bottom: 2rem;*/
	margin-bottom: 0;
	color: #000;
	text-transform: uppercase;
}
.site-blocks .entry-content h2:first-child,
.site-blocks .entry-content h3:first-child,
.site-blocks .entry-content p:first-child,
.site-blocks .entry-content ul:first-child,
.site-blocks .entry-content ol:first-child{
	margin-top: 0;
}
.site-blocks .entry-content h2:last-child,
.site-blocks .entry-content h3:last-child,
.site-blocks .entry-content p:last-child,
.site-blocks .entry-content ul:last-child,
.site-blocks .entry-content ol:last-child{
	margin-bottom: 0;
}
.site-blocks .site{
	overflow: hidden;
	margin:70px auto;
	margin:5rem auto;
}
.site-blocks .sub-title{
	display: block;
	text-align: center;
	color: #999;
	font-size: 10px;
    font-family: Arial;
    text-transform: uppercase;
	margin-bottom: 21px;
	margin-top: 0;
}
.site-blocks .sub-title:hover{
	/*text-decoration: none;
	color:#111;*/
}
.block-sub-menu{
	background:#fff;
	text-align: center;
}
.site-blocks.block-sub-menu .site{
	margin-top: 35px;
	margin-top: 2.5rem;
	margin-bottom: 0;
}
.block-sub-menu ul{
	list-style: none;
	font-size: 0;
	margin: 0;
	white-space: nowrap;
	width: 100%;
}
.block-sub-menu ul li{
	display: inline-block;
	font-size: 15px;
	font-size: 1.071428571rem;
	padding:0 28px;
}
.block-sub-menu ul li a{
	text-decoration: none;
	display: block;
	padding:5px 0 16px;
	border-bottom: 4px solid transparent;
}
.block-sub-menu ul li.current_page_item a{
	pointer-events: none;
	color: #005aaa;
	border-color: #005aaa;
}
.block-sub-menu .swiper-wrapper .swiper-slide{
	box-sizing: border-box;
	width: auto;
}
.block-sub-menu-trigger{
	display: none;
}
@media screen and (max-width: 1023px){
	.block-sub-menu{
		padding-bottom: 28px;
		padding-bottom: 2rem;
	}
	.block-sub-menu ul{
		display: inline-block;
		width: calc(100% - 50px);
		vertical-align: top;
	}
	.block-sub-menu ul li{
		display: block;
		overflow: hidden;
		height: 0;
		padding:0;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	.block-sub-menu ul li.current_page_item{
		height: 42px;
		background-color: #f1f1f1;
	}
	.block-sub-menu ul li a{
		padding:0;
		height: 42px;
		line-height: 42px;
		border-bottom: 0;
		/*border-left: 4px solid transparent;*/
	}
	.block-sub-menu ul li.current_page_item a{
		/*border-left: 4px solid #005aaa;*/
	}
	.block-sub-menu.toggled-on ul li{
		height: 42px;
	}
	.block-sub-menu-trigger{
		background-color: #f1f1f1;
		display: inline-block;
		vertical-align: top;
		width: 42px;
		height: 42px;
		text-align: center;
		line-height: 42px;
		font-size: 21px;
	}
	.block-sub-menu-trigger i{
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	.block-sub-menu.toggled-on .block-sub-menu-trigger i{
		-webkit-transform:rotate(180deg);
		transform:rotate(180deg);
		
	}

}
@media screen and (min-width: 1024px){
	.site-blocks h2 {
		font-size: 28px;
		font-size: 2rem;
	}
	.site-blocks{
		/*padding: 0 28px;
		padding: 0 2rem;*/
	}
	.site-blocks .site{
		margin:112px auto;
		margin:8rem auto;
	}
}
@media screen and (min-width: 1024px){
	.block-sub-menu ul li{
		padding:0 15px;
	}
	html[lang="zh-hans"] .block-sub-menu ul li,
	html[lang="zh-hant"] .block-sub-menu ul li{
		padding:0 30px;
	}
}

.footer-menu {
	/*display: none;*/
	list-style: none;
	text-align: center;
	margin-bottom: 14px;
}
.footer-menu .sub-menu{
	display: none;
}
.footer-menu li{
	display: inline-block;
	font-size: 14px;
	font-size: 1rem;
	padding: 0 15px;
	font-size: 12px;
}
.footer-menu li:first-child{
	padding-left: 0;
}
.footer-menu li:last-child{
	padding-right: 0;
}
footer .site-info {
	margin:0 auto;
	padding-top: 35px;
	padding-bottom: 35px;
}
.footer-media{
	text-transform: uppercase;
	font-weight: 600;
}
.footer-media .icn-social{
	vertical-align: middle;
	display: inline-block;
	font-size: 1.5rem;
	font-size: 21px;
	margin-right: 15px;
	line-height: 1;
}
.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{
	overflow: hidden;
	width: 100%;
	font-size: 12px;
	border-top: 1px solid #ddd;
	padding-top: 14px;
	margin-top: 14px;
}
.footer-bottom p{
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
}
.logo-footer{
	width: 100px;
	height: auto;
	margin-bottom:28px;
}
.footer-menu{
	display: none;
}
@media screen and (min-width: 768px){
	.footer-media{
		width: 30%;
		text-align: left;
		float: left;
	}
	#footer-line-1{
		width: 70%;
		float: right;
	}
	.footer-menu {
		display: block;
		text-align: right;
	}
	.footer-bottom p{
		margin-bottom: 0;
		text-align: right;
		float: left;
	}
	.logo-footer{
		float: right;
		margin-bottom:0;
	}
}
/*homepage*/
#home-headimage{
	box-sizing: border-box;
	position: relative;
	font-size: 0;
	width:100%;
	overflow: hidden;
	padding: 0;
	background-color: #000;
}
#home-headimage-cont{
	position: relative;
	overflow: hidden;
	background-color: #333;
	margin: 0 auto;
	max-width: 2560px;
}
#home-headimage .kv{
	position: relative;
	border-radius: 0;
	width: 100%;
	height: auto;
	min-height: 400px;
	object-fit: cover;
}
#mySwiperHomeTop-pagination .swiper-pagination-bullet{
	border-radius: 0;
	background-color: #fff;
	width:12px;
	height: 2px;
	opacity: 0.5;
	-webkit-transition:0.2s all;
	transition:0.2s all;
}
#mySwiperHomeTop-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	opacity: 1;
}
@media screen and (min-width:768px){
	#home-headimage-cont .kv{
		/*max-height: 36vw;*/
	}
}
#home-headimage-txt{
	position: absolute;
	left: 0;
	top: 0;
	box-sizing: border-box;
	padding: 0 28px;
	z-index: 1;
	color: #fff;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;

	background: -moz-linear-gradient(top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 30%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 30%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#home-headimage-txt .button{
	width: 280px;
	max-width: 100%;
	width: fit-content;
	max-width: 100%;
    line-height: 1.3;
}
@media screen and (max-width: 767px){
	#home-headimage-txt .button{
		font-size: 13px;
		text-align: left;
		background: rgba(0,0,0,0.4);
	}
	#home-headimage-txt .button:hover{
		background: #f90;;
	}
}
#home-headimage a.chevron-down{
	display: none;
	width: 32px;
	height: 18px;
	color: #fff;
	position: absolute;
	z-index: 2;
	left: -webkit-calc(50% - 16px);
	left: calc(50% - 16px);
	bottom: 12px;
	background:url(images/arraw-down.png) no-repeat;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
#home-headimage-txt h2{
	font-weight: 800;
	font-size: 25px;
	font-size: 1.71428rem;
	line-height: 1.3;
	margin:0 0 14px 0;
	margin:0 0 1rem 0;
}
#home-headimage-txt p{
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 500;
	margin:0 0 14px 0;
	margin:0 0 1rem 0;
}
#home-headimage-txt a{
	color: #fff;
}
#home-headimage-txt a:hover{
	color: #005aab;
}
#home-headimage-txt-20-year{
	position: absolute;
	left: 0;
	top: 0;
	box-sizing: border-box;
	padding: 0 28px;
	z-index: 1;
	color: #fff;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#home-headimage-txt img{
	max-width: 100%;
}
#year20-1,
#year20-2,
#year20-3{
	width: 400px;
	max-width: 70%;
	transition: 0.8s all;
	transition-delay: 0.8s;
	transform:translate(0,-30px);
	opacity: 0;
}
#year20-2{
	margin: 30px auto 85px auto;
	transform:translate(0,30px);
}
@media screen and (max-width: 767px){
	#year20-2{
		margin-bottom: 20px!important;
	}
}
#year20-3{
	position: absolute;
	top: 20%;
	width: 200px;
}
#home-headimage-txt-20-year .button{
	width: 400px;
	max-width: 70%;
	transition: 0.8s all;
	transition-delay: 0.8s;
	transition-delay: 0.8s;
	transform:translate(0,30px);
	opacity: 0;
	font-size: 13px;
	/*margin-top: 25%;*/
}
@media screen and (min-width: 768px){
	#home-headimage-txt-20-year .button{
		/*margin-top: 15%;*/
		font-size: 14px;
	}
	#year20-3{
		width: 400px;
	}
}
.swiper-slide-active #year20-1,
.swiper-slide-active #year20-2,
.swiper-slide-active .button{
	transition-delay: 0.4s!important;
	transform: translate(0,0)!important;
	opacity: 1;
}
.swiper-slide-active .button{
	opacity: 1!important;
}
.swiper-slide-active #year20-1,
.swiper-slide-active #year20-2{
	animation: 0.2s sliderKVanm1 1 linear forwards;
	animation-delay: 3s;
}
	@keyframes sliderKVanm1 {
		0%{ opacity:1;}
		100% { opacity:0}
	}

.swiper-slide-active #year20-3{
	animation: 0.4s sliderKVanm3 1 linear forwards;
	animation-delay: 3.2s;
}
	@keyframes sliderKVanm3 {
		0%{ transform:rotateY(90deg); opacity:1}
		100% { transform:rotateY(0deg); opacity:1}
	}

button.more,
a.more {
	font-size: 13px;
	margin:0;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
#home-about{
	background:url(images/bg1.png) center center no-repeat #fafafb;
	background-size: cover;
}
#home-about p{
	max-width: 800px;
}
.solution-item .more{
	margin-top: 40px;
}
.more.more-section{
	display: block;
	margin: 40px auto 0 auto;
}
.solution-item{
	display: block;
	overflow: hidden;
	border-radius: 10px;
	position: relative;
	text-align: left;
	box-sizing: border-box;
	margin-bottom: 21px;
	font-size: 0;
	background-color: #000;
	height: 200px;
}
.solution-item h3{
	color: #fff;
	line-height: 1.3;
	text-transform: none;
}
#block-solutions-list .solution-item h3{
	font-size: 18px;
}
#block-solutions-list .site{
	/*max-width: 1440px;
	margin-top: 0;*/
}
.solution-item p{
	font-size: 13px;
	font-size: 0.92857rem;
	margin: 0;
	line-height: 1.55;
}
.solution-bg{
	position: relative;
	border-radius: 10px;
	z-index: 1;
	transition: 0.3s all;
	width: 100%;
	height: auto;
}
.solution-item-txt{
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	color: #fff;
	box-sizing: border-box;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.solution-item-term{
	font-size: 12px;
	margin-bottom: 14px;
}
.solution-item-term span{
	color: #000;
	display: inline-block;
	background: rgba(255,255,255,0.8);
	padding: 4px 10px;
	border-radius: 2px;
}
span.term-cyber-threat-protection{ background-color:rgba(255,236,0,1);}
span.term-data-security{ background-color:rgba(182,255,255,1);}
span.term-infrastructure-monitoring{ background-color:rgba(172,178,255,1);}

span.term-security-operations{ background-color:rgba(113,155,58,1);color:#fff}
span.term-data-protection{ background-color: rgba(72,155,125,1); color:#fff;}
span.security-operations-orchestration{ background-color:rgba(55,109,155,1); color:#fff;}
span.term-devsecops-cloud-security{ background-color:rgba(155,109,72,1); color:#fff;}
span.term-network-security{ background-color:rgba(72,155,125,1); color:#fff;}
span.term-security-operations-orchestration{ background-color:rgba(155,72,140,1); color:#fff;}
span.term-accessment-training{ background-color:rgba(105,72,90,1); color:#fff;}
span.term-identity-security{ background-color:rgba(155,0,0,1); color:#fff;}
span.term-application-security{ background-color:rgba(155,146,0,1); color:#fff;}

span.term-cybersecurity-awareness{ background-color:rgba(255,146,0,1); color:#fff;}

.solution-item .more{
	margin-top: 30px;
	pointer-events: none;
	max-width: 100%;
}
.solution-item:hover .more{
	background: #f28d31;
	border-color: #f28d31;
}
.solution-item:hover .solution-bg{
	transform: scale(1.05);
	/*filter: blur(5px);*/
	filter: brightness(0.5);
}
#home-vendors{
	background: #f8f8f8;
}
.swiper-container-out{
	position: relative;
	box-sizing: border-box;
	padding: 0 32px;
}
#swiperSolutions .swiper-slide,
#swiperNews .swiper-slide,
#swiperVendors .swiper-slide{
	width: 100%;
}
#swiperNews .panel-post-container{
	margin-bottom: 0;
}
@media screen and (min-width: 600px){
	#swiperSolutions .swiper-slide,
	#swiperNews .swiper-slide,
	#swiperVendors .swiper-slide{
		width: 270px;
	}
}
@media screen and (min-width: 1200px){
	#swiperSolutions .swiper-slide,
	#swiperNews .swiper-slide{
		width: 367px;
	}
	#swiperVendors .swiper-slide{
		width: 270px;
	}
}

.swiper-button-prev{
	left: 0;
}
.swiper-button-next{
	right: 0;
}
.vendor-logo-item{
	border-radius: 8px;
	background: #fff;
	display: block;
	box-sizing: border-box;
	padding: 7px 14px;
	border: solid 1px #f3f3f3;
	transition: 0.2s all;
	margin-bottom: 2px;
}
.vendor-logo-item:hover{
	background: #f90;
	border-color: #f90;
}
.vendor-logo{
	max-width: 100%;
	height: auto;
	transition: 0.2s all;
}
.vendor-logo-item:hover .vendor-logo{
	filter: brightness(0);
}
#block-solution-inner-1{
	background: #fafafb;
}
#list-solution-container{
	width: 100%;
}
#list-solution-container .site{
	margin-top: 10px;
	margin-bottom: 20px;
}
.list-solution-category{
	overflow: hidden;
	height: 40px;
	margin: 0!important;
	transition: 0.2s all;
}
.list-solution-category.triggered{
	height: 340px;
}
.list-solution-category li{
	line-height: 1.35;
	padding:0;
	position: relative;
}
.list-solution-category > li{
	/*border-bottom: 1px solid #eee;*/
	margin-top: 10px;
}
.list-solution-category ul{
	margin: 0 0 0 12px;
}
.list-solution-category li a.cat-select{
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
	max-width: calc(100% - 12px);
}
.list-solution-category li a.cat-select.current{
	color: #005aab;
	font-weight: 600;
	pointer-events: none;
}
.cat-select.disabled{
	pointer-events: none;
}
.list-solution-category li a:hover{
	text-decoration: none;
}
.cat-sub-trigger{
	position: absolute;
	right: 0;
	top: 5px;
	display: block!important;
	width: 24px;
	height: 20px;
	z-index: 1;
	color: #000;
	font-size: 18px;
	text-align: center;
	line-height: 20px;
	transition: 0.2s all;
}
.cat-list-item > ul{
	overflow: hidden;
	height: 0;
}
.cat-list-item.triggered > ul{
	height: auto;
}
.list-solution-category.triggered .cat-sub-trigger{
	transform: rotate(180deg);
}
#list-solution-container,
#list-solution-container *{
	transition: all 0.3s;
}
#list-solution-container.sticky{
	background: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	position: fixed;
	z-index: 100;
	top: 0;
}
#list-solution-container.sticky .site{
	margin-bottom: 7px;
}
/*页面遮盖层*/
.coverThePage{
	width:100vw;
	height:100vh;
	background:transparent;
	background:rgba(0,0,0,0.7);
	position: fixed;
	top:0;
	left:0;
	display: none;
	z-index: 100;
}
.coverThePage.stay{
	display: block;
}
.coverThePage.unclickable{
	pointer-events: none;
}
#solution-layer{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 800px;
	height: 100vh;
	overflow: auto;
	overflow-x: hidden;
	max-width: 100%;
	position: fixed;
	right: -800px;
	top: 0;
	background: #fff;
	box-sizing: border-box;
	padding: 50px 28px;
	z-index: 101;
	transition: 0.2s all;
}
#solution-layer.stay{
	right: 0;
}
#solution-layer-close{
	display: none;
	background: url(images/close.svg) no-repeat center center;
	background-size: 100% auto;
	width: 40px;
	height: 40px;
	position: fixed;
	right: 18px;
	top: 18px;
	transition: all 0.2s;
}
@media screen and (min-width:1024px){
	body.admin-bar #solution-layer-close{
		top: 50px;
	}
}
#solution-layer.stay #solution-layer-close{
	display: block;
}
#solution-layer-close:hover{
	transform: rotate(90deg);
}

#solution-layer h2{
	line-height: 1.3;
	font-size: 25px;
	font-size: 1.785714rem;
	font-weight: 700;
	margin-bottom: 28px;
	margin-bottom: 2rem;
	color: #000;
	text-transform: uppercase;
}
#solution-layer h3{
	line-height: 1.5;
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 14px;
	color: #000;
	text-transform: uppercase;
}
#solution-layer .entry-content{
	margin-bottom: 40px;
}
#solution-layer-footer{
	color: #000;
	margin-bottom: 0!important;
}
#solution-layer-footer i.fa{
	margin-right: 4px;
	width: 18px;
	vertical-align: middle;
	display: inline-block;
	font-size: 1.5rem;
	font-size: 21px;
}
#solution-layer .vendor-logo-item {
	margin-bottom:14px;
}
@media screen and (min-width: 768px){
	#block-solutions-filter{
		padding-top: 7px;
		min-height: 81px;
	}
	#search-solutions{
		float: right;
	}
}
/*@media screen and (min-width: 768px){
	#block-solutions-filter{
		min-height: 240px;
	}
	.list-solution-category{
		height: auto;
	}
	.list-solution-category ul{
		margin-left: 0;
	}
	.cat-list-item{
		width: 33.2%;
		display: inline-block;
		vertical-align: top;
	}
	.cat-list-item > ul{
		overflow: hidden;
		height: auto;
		line-height: 0;
	}
	.cat-sub-trigger{
		display: none!important;
	}
	.list-solution-category li a.cat-select{
		max-width: 100%;
	}
	.cat-list-item.level-1 >a.cat-select,
	.cat-list-item.level-2 >a.cat-select{
		
	}
	.cat-list-item.level-2{
		width: 33.3%;
		display: inline-block;
		vertical-align: top;
	}

	.cat-list-item.level-2:last-child .cat-list-item.level-3{
		width: 50%;
		display: inline-block;
	}
	.list-solution-category li{
		position: relative;
	}
	.list-solution-category li:after{
		content: "\f105";
		font: normal normal normal 14px/1 FontAwesome;
		position: absolute;
		right: 30px;
		top: 2px;
	}
	.list-solution-category li.noafter:after{
		display: none;
	}
	.cat-list-item.level-1:after,
	.cat-list-item.level-2:after{
		display: none;
	}
	#block-solutions-filter{
		padding-top: 50px;
	}
	#list-solution-container.sticky .list-solution-category li a.cat-select{
		padding-bottom: 8px;
	}

	#block-solutions-filter .site{
		margin-bottom: 20px;
	}
}*/
@media screen and (min-width: 1024px){
	#list-solution-container.sticky{
		top: 58px;
	}
	.admin-bar #list-solution-container.sticky{
		top: 90px;
	}
}
.item-file{
	display: block;
}
.item-file a:hover{
	text-decoration: none;
}
a.box-file{
	display: block;
	padding:28px;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	max-width: 390px;
	margin-bottom: 28px;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #f2f2f2;
	border-radius: 10px;
	background: #f2f2f2;
}
.box-file time{
	font-size: 12px;
	text-align: left;
	color:#727272;
	display: block;
}
.box-file h3{
	margin:15px auto 21px auto;
	max-width: 300px;
	color: #000;
	line-height: 1.5;
	font-weight: 600;
	font-size: 15.5px;
}
i.pdf,
i.video{
	display: block;
	margin:30px auto;
	width: 80px;
	height: 80px;
	background:url(images/icon-pdf.png) no-repeat;
	background-size: 100% auto;
}
i.video{
	background-image:url(images/icon-video.png);
}
a.download{
	display: inline-block;
	width: 180px;
	color: #fff;
	background:#000;
	box-sizing: border-box;
	padding:12px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
a.download i{
	margin-left: 10px;
}
a.download:hover{
	text-decoration: none;
	background:#44558a;
}
#swiperFiles .swiper-slide{
	width: 260px;
}
#block-partner-1 h2{
	margin-top: 28px;
	color: #000;
	font-weight: 700;
}
#block-partner-2 {
	color: #fff;
	padding: 0 21px;
}
#block-partner-2 h2{
	color: #fff;
	font-weight: 700;
	text-transform: none;
}

.block-form-bg{
	box-sizing: border-box;
	background: url(images/bg2.jpg) center center no-repeat;
	background-size: cover;
	overflow: hidden;
	border-radius: 10px;
	margin: 0 auto;
	max-width: 1440px;
}
.block-form-bg2{
	background-image: url(images/bg6.jpg);
}
#block-news-inner-1{
	
}
#block-news-inner-1 .site{
	background-color: #fff;
	margin-top: 0;
	margin-bottom: 0;
	box-sizing: border-box;
	padding:21px;
	padding:1.5rem;
	padding-bottom: 50px;
}
.entry-header .page-title{
	border-bottom: 1px solid #dcdcdc;
}
.post-footer{
	margin-top: 42px;
	margin-top: 3rem;
}
@media screen and (min-width: 768px){
	#home-headimage-txt {
		padding: 0 50px;	
	}
	#home-headimage-txt h2{
		font-size: 35px;
		font-size: 2.5rem;
	}
	#home-headimage-txt p{
		font-size: 18px;
		font-size: 1.285714rem;
		margin:0 0 28px 0;
		margin:0 0 2rem 0;
	}
	#block-news-inner-1 .site{
		padding:100px 150px 50px 150px;
	}
	#block-news-inner-1 .site.site-Events{
		max-width: 750px;
		padding: 100px 21px 50px 21px;
		margin-left: auto;
		margin-right: auto;
	}
	#block-news-inner-1 .site.site-Events img{
		width: 100%;
	}
	.vendor-logo-item{
		padding: 14px 28px;
	}
}
@media screen and (min-width: 1024px){
	#home-headimage-txt {
		padding: 0 100px;	
	}
	#home-headimage-txt h2{
		font-size: 42px;
		font-size: 3rem;
	}
	#home-headimage a.chevron-down{
		display: block;
	}
}

@media screen and (min-width: 1440px){
	.home-headimage-txt h2{
		font-size: 70px;
	}
	.headimage-anchor-list li{
		padding:28px 36px;
	}
	#block-news-inner-1 .site{
		margin-bottom: 80px;
	}
}

/*inner pages*/
div#content {
	min-height: 150px;
}
#block-article-1 .site{
	margin-top: 42px;
	margin-top: 3rem;
}
#top-inner{
	box-sizing: border-box;
	position: relative;
	font-size: 0;
	width:100%;
	overflow: hidden;
	padding: 0;
	background-color: #000;
}
#top-inner-cont{
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	max-width: 2560px;
}
#top-inner-cont .top-inner-image{
	position: relative;
	width: 100%;
	height: auto;
	min-height: 220px;
	object-fit: cover;
}
#top-inner-txt{
	position: absolute;
	left: 0;
	top: 0;
	box-sizing: border-box;
	padding: 0 28px;
	z-index: 1;
	color: #fff;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#top-inner-txt h2{
	font-weight: 800;
	font-size: 25px;
	font-size: 1.71428rem;
	text-transform: uppercase;
	margin:0 0 14px 0;
	margin:0 0 1rem 0;
}
#breadcrumbs{
	font-size: 13px;
	color: #fff;
	margin-bottom: 14px;
}
#breadcrumbs a{
	color: #fff;
}
#breadcrumbs a:hover{
	text-decoration: none;
	color: rgba(255,255,255,0.6);
}
h1.page-title,
h2.page-title {
	text-transform: none;
	position: relative;
	line-height: 1.3;
	padding-bottom: 28px;
	padding-top: 2px;
	color:#333;
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 50px;
	margin-top: 0;
	text-align: center;
}
.content-with-sub {
	min-height: 300px;
}
#secondary { text-align:center; }

/*about pages*/
.site-blocks-intentup{
	margin-top: -40px;
	padding-top: 40px;
}
#block-about-1{
	background: url(images/bg1.png) center center no-repeat #fafafb;
	background-size: cover;
}
#block-about-1 p{
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
}
.swiper-nav{
	text-align: center;
	color: #000;
	/*background: rgba(0,0,0,0.1);*/
	/* border-radius: 5px; */
	font-size: 26px;
	line-height: 30px;
	height: 30px;
	width: 30px;
	display: block;
	position: absolute;
	border-radius: 6px;
	top: calc(50% + 5px);
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
	z-index: 5;
}
.swiper-nav.swiper-button-disabled{
	pointer-events: none;
	-webkit-opacity:0.3;
	opacity:0.3;
}
.swiper-nav:hover{
	text-decoration: none;
	color: #fff;
	background:rgba(0,0,0,0.6);
}
.swiper-nav:after{
	font-size: 18px;
	line-height: 30px;
	vertical-align: top;
}

#block-about-2{
	background:#f2f2f2;
}
#block-about-3{
	background:#fafafa;
}
#block-about-3 p{
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
#block-careers-1{
	background: url(images/bg3.png) center center no-repeat #fafafb;
	background-size: cover;
}
.career-feature{
	margin-bottom: 28px;
}
.career-feature p{
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.5;
	margin: 15px auto;
}
.icon-career{
	display: block;
	width: 100px;
	height: 100px;
	background:  url(images/icons-career.png) no-repeat;
	background-size: 100%;
	margin: 0 auto;
}
.icon-career.icon-2{
	background-position: 0 50%;
}
.icon-career.icon-3{
	background-position: 0 100%;
}
#block-careers-2 p{
	max-width: 800px;
}
#block-careers-2 img{
	border-radius: 8px;
	margin-top: 28px;
	margin-bottom: 28px;
}
#block-careers-3{
	background: url(images/bg4.png) center top no-repeat #fafafb;
	background-size: cover;
}
.position-container{
	background-color: #fff;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 8px;
	padding: 14px 28px;
	margin-bottom: 28px;
	cursor: pointer;
}
.position-container-idx:nth-child(2n+1) .position-container{
	background-color: #e3eefa;
}
.position-container h3{
	text-transform: none;
	font-size: 18px;
	color: #000;
}
.position-category{
	font-size: 15px;
	text-transform: uppercase;
	color: #005aab;
	margin: 28px 0 0 0!important;
}
.position-desc{
	overflow: hidden;
	font-size: 14px;
	line-height: 1.4;
	transition: 0.2s all;
	height: 0;
}
@media screen and (min-width: 768px){
	.career-feature p{
		max-width: 90%;
	}
	.position-container-idx:nth-child(4n+1) .position-container,
	.position-container-idx:nth-child(4n+4) .position-container{
		background-color: #fff;
	}
	.position-container-idx:nth-child(4n+2) .position-container,
	.position-container-idx:nth-child(4n+3) .position-container{
		background-color: #e3eefa;
	}
	h1.page-title{
		font-size: 28px;
		font-size: 2rem;
	}
}
@media screen and (min-width: 1200px){
	
}

/*news pages*/
#block-news-list .site{
	margin-top: 0;
}
.inner-menu-sub{
	padding: 50px 0;
	text-align: left;
}
.menu-sub{
	text-align: center;
}
.menu-sub .cat-item{
	font-size: 16px;
	width: auto;
	display: inline-block;
	padding: 4px 21px;
	line-height: 1.5;
}
.menu-sub .cat-item a{
	display: block;
	color: #000;
	font-weight: 500;
	border-bottom: 3px solid transparent;
}
.menu-sub .cat-item.current-cat a{
	pointer-events: none;
	border-bottom: 3px solid #000;
}
.menu-sub .cat-item a:hover{
	text-decoration: none;
}
.panel-post-container{
	position: relative;
	overflow:hidden;
	/*margin:21px 0;*/
	margin-bottom: 35px;
	margin-bottom: 2.5rem;
	padding:0;
	background:#fff;
	color: #666;
	text-align: left;
	/*min-height: 395px;*/
	min-height: 300px;
}
.panel-post-container i{
	color: #777;
	font-size: 14px;
}
.panel-post-container:last-child{
	border-bottom: 0;
}

.panel-post-thumbnail:hover img {
	/*-webkit-transform: scale(1.03,1.03);
	transform: scale(1.03,1.03);*/
}
.panel-post-thumbnail img{
	border-radius: 8px;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	/*width: 100%;*/
	width: calc(100% - 2px);
	border: 1px solid #f2f2f2;
}
.panel-post-thumbnail{
	overflow: hidden;
	vertical-align: top;
	margin:0;
	display: inline-block;
	font-size: 0;
	width: 100%;
}
.panel-post-txt{
	vertical-align: top;
	box-sizing: border-box;
	line-height: 1.5;
	padding:21px 0;
}
a.panel-post-title{
	color:#333;
	text-decoration: none;
	font-size:18px;
	font-size:1.285714rem;
	margin-bottom: 7px;
	margin-top: 4px;
	display: block;
	line-height: 1.5;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}
a.panel-post-title:hover{
	text-decoration: none;
}
.panel-post-sub{
	margin-bottom: 10px;
	margin-top: 20px;
	display: block;
	font-size: 12px;
}
.panel-post-sub a{
	text-decoration: none;
}
.panel-post-tags{
	display: block;
}
a[rel="tag"]{
	display: inline-block;
	margin-right: 6px;
	margin-top: 6px;
	box-sizing: border-box;
	padding: 0px 6px;
	background: transparent;
	color: #005aab;
	font-size: 11px;
	border: 1px solid #005aab;
	border-radius: 3px;
	transition: 0.2s all;
}
a[rel="tag"]:before{
	content: "# ";
}
a[rel="tag"]:hover{
	background: #005aab;
	color: #fff;
	text-decoration: none;
}
.panel-post-content{
	line-height: 1.7;
	font-size: 14px;
	font-size: 1rem;
	padding-bottom: 10px;
	margin-bottom: 0;
}
.list-newsroom{
	font-size: 0;
}
.list-newsroom .col-n{
	float: none;
	vertical-align: top;
	display: inline-block;
}
@media screen and (max-width: 767px){
	#search-post{
		margin: 20px auto;
		max-width: 80%!important;
		text-align: center;
	}
}
@media screen and (min-width: 768px){
	.panel-post-txt{
		min-height: 390px;
	}
	.inner-menu-sub{
		padding: 80px 0;
	}
	.menu-sub{
		text-align: left;
	}
}
@media screen and (min-width: 1024px){
	.panel-post-txt{
		min-height: 350px;
	}
}
@media screen and (min-width: 1200px){
	#block-news-1 .site{
		margin-top: 112px;
		margin-top: 8rem;
	}
	#block-news-1 h2{
		margin-bottom: 42px;
		margin-bottom: 3rem;
	}
	.panel-post-content{
		/*min-height: 103px;*/
	}
	a.panel-post-title{
		height: 81px;
	}
	.panel-post-txt{
		min-height: unset;
	}
}

@media screen and (min-width:768px){
	#top-inner-cont,
	#top-inner-cont .top-inner-image{
		height: 399px;
		max-height: 36vw;
	}
	#top-inner-txt h2{
		font-size: 35px;
		font-size: 2.5rem;
	}

}
@media screen and (min-width:1024px){
	#top-inner-txt h2{
		font-size: 42px;
		font-size: 3rem;
	}
	#top-inner-txt {
		margin-top: 40px;
		padding: 0 100px;
	}
}
@media screen and (min-width:1280px){
	#home-headimage-txt,
	#top-inner-txt {
		width: 100%;
		padding-left: calc(50% - 600px);
		padding-right: calc(50% - 600px);
	}
}
#loading{
	width: 100px;
	height: 100px;
	position: fixed;
	left: calc(50vw - 50px);
	top: calc(50vh - 30px);
	background:url(images/loading-rolling.svg) center center no-repeat;
	background-color: rgba(255,255,255,0.9);
	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: 102;
	-webkit-opacity: 1;
	opacity: 1;
}
/*vendors*/
#block-vendors-1,
#block-vendor-inner-1,
#block-solutions-filter{
	background: url(images/bg5.png) center top no-repeat #fafafb;
	background-size: cover;
}
#block-vendor-inner-1 .logo-vendor{
	display: block;
	margin: 28px auto;
	width: 280px;
}
#block-vendor-inner-1{
	margin-bottom: 60px;
}
#block-vendor-inner-2 h3{
	margin-bottom: 21px;
}
#search-post-kws,
#search-solutions-kws,
#search-vendors-kws{
	background: transparent;
	border: 0;
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 28px);
	box-sizing: border-box;
	padding: 10px 0;
}
#search-post-btn,
#search-solutions-btn,
#search-vendors-btn{
	padding: 0;
	background:url(images/icon-search.png) no-repeat;
	background-size: 100% auto;
	width: 23px;
	height: 23px;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
}
#search-post,
#search-solutions,
#search-vendors{
	width: 450px;
	max-width: 100%;
	border-bottom: 1px solid #000;
}
#search-solutions{
	margin-bottom: 0;
	margin-top: 0;
}
@media screen and (min-width: 768px){
	#search-solutions{
		/*margin-top: 28px;*/
		margin-top: 7px;
		transition: 0.2s all;
	}
	.sticky #search-solutions{
		margin-top: 10px;
		margin-bottom: 10px;
	}
}
#search-post-kws:focus,
#search-solutions-kws:focus,
#search-vendors-kws:focus{
	outline: none;
}
#block-vendors-2 .site{
	margin-top: 0;
}
#block-vendors-2 .vendor-logo-item{
	margin-bottom: 21px;
}

/*WPML language bar*/
.wpml-ls-legacy-list-horizontal{
	border:0;
}
#hgroup-language{
	position: absolute;
	right: 20px;
	top: -25px;
	z-index: 50;
	width: 120px;
	display: inline-block;
	line-height: 3.8;
	margin-top: 17px;
	float: right;
}
#hgroup-language,
#hgroup-language *{
	/*-webkit-transition: all 0.2s;
	transition: all 0.2s;
	transition-delay: 0s;*/
}
#hgroup-language > div{
	padding: 0;
	border: 0;
	text-align: right;
	line-height: 3;
}
#hgroup-language a{
	display: block;
	padding:0;
	font-size: 15px;
	font-size: 1.071428571rem;
	-webkit-opacity:0.4;
	opacity:0.4;
}
#hgroup-language .wpml-ls-current-language a{
	-webkit-opacity: 1;
	opacity: 1;
}
#hgroup-language a span{
	padding: 0 10px;
	display: block;
}
#hgroup-language a,
#hgroup-language a span{
	line-height: 3;
}
#hgroup-language a:hover{
	text-decoration: none;
	color: #005aab;
}
#hgroup-language a:hover span{
	color: #005aab;
}
#hgroup-language li{
	position: relative;
}
#hgroup-language li:after{
	content:"";
	position: absolute;
	height: 11px;
	width: 1px;
	background:#000;
	right: 0;
	top: 18px;
	-webkit-opacity: 0.3;
	opacity: 0.3;
}
#hgroup-language li:last-child:after{
	display: none;
}
#topFloatBar-language{
	text-align: right;
	height: 0;
	overflow: hidden;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
	border-top: 1px solid rgba(0,0,0,0.05);
}
#topFloatBar-language .wpml-ls-current-language a{
	color: #005aab;
}
#topFloatBar-language a:hover{
	text-decoration: none;
}
@media screen and (min-width: 1024px){
	#hgroup-language{
		position: static;
		right: unset;
		top: unset;
		z-index: unset;
	}
}
@media screen and (min-width: 1200px){
	#hgroup-language{
		margin-top: 25px;
	}
	#hgroup-language > div,{
		line-height: 3.8;
	}
	#hgroup-language a,
	#hgroup-language a span{
		line-height: 3.8;
	}
	#hgroup-language a{
		color: #fff;
	}
	#hgroup-language li:after{
		background: #fff;
		top: 23px;
	}
	.site-header.scroll #hgroup-language{
		margin-top: 5px;
	}
	.site-header.scroll #hgroup-language a span{
		color: #000;
	}
	.site-header.scroll #hgroup-language li:after{
		background: #000;
	}

}

/*pupup*/
.popup-layer{
	position: fixed;
	height: 100vh;
	width: 100vw;
	background: rgba(0,0,0,0.7);
	z-index: 100;
	top: 0;
	left: 0;
	transition: 0.3s all;
	opacity: 0;
	pointer-events: none;
}
.popup-layer-close{
	display: block;
	position: absolute;
	right: 40px;
	top: 40px;
	z-index: 2;
	height: 27px;
	width:27px;
	background: url(images/close.svg);
	background-size: 100% 100%;
	transition: 0.2s all;
}
.popup-layer-content{
	position: relative;
	z-index: 1;
	transition: 0.2s all;
	transform: translate(0,40px);
	text-align: center;
}
.popup-layer-content iframe,
.popup-layer-content video{
	display: block;
	margin: auto;
}
.popup-layer.stay .popup-layer-content{
	transform: translate(0,0);
}
.popup-layer-touch{
	position: absolute;
	z-index: 0;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
}
.popup-layer-close:hover{
	transform: rotate(90deg);
}
.popup-layer.stay{
	opacity: 1;
	pointer-events: auto;
}
#popupVideo{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#popupVideo video{
	margin: auto;
	height: auto;
	/*min-width: 480px;*/
	max-width: 98%;
	max-height: 96vh;
}
.home #popupVideo video{
	width: 480px;
}

/*cookie-notice*/
#cookie-notice{
	position:fixed;
	background:black;
	background:rgba(0,0,0,0.8);
	box-sizing: border-box;
	padding:14px;
	width: 100%;
	left: 0;
	text-align: center;
	color: #fff;
	-webkit-transition:0.3s;
	transition:0.3s;
	-webkit-opacity: 0;
	opacity: 0;
	z-index: -1;
	bottom: -100px;
	line-height: 1.5;
}
#cookie-notice .button{
	padding:4px 10px;
	width: unset;
	font-size: 12px;
	border-radius: 3px;
}
#cookie-notice a{
	color: #fff;
}
#cookie-notice.stay{
	bottom: 0;
	z-index: 99;
	-webkit-opacity: 1;
	opacity: 1
}
#cookie-notice-close{
	display: block;
	width: 24px;
	height: 24px;
	line-height: 24px;
	font-size: 24px;
	transform-origin: 50% 50%;
	float: right;
	font-size: 20px;
	-webkit-transition:0.2s;
	transition:0.2s;
	transform:rotate(-45deg);
}
#cookie-notice-close:hover{
	text-decoration: none;
	transform:rotate(45deg);
}


/*slider on homepage*/
#swiper-techforward26 .button{
	margin-bottom: 50px;
	background: transparent;
}
@media screen and (max-width: 767px){
	#swiper-techforward26 .kv{
		object-position: top;
		transform: scale(1.6);
	}
	#swiper-techforward26 .kv-logo{
		object-fit: cover;
		object-position: top;
		width: 350px;
		height: 40px;
	}
}
@media screen and (min-width: 768px){
	#swiper-techforward26 .col-raw{
		display: flex;
		flex-direction: row;
		align-items: flex-end;
	}
	#swiper-techforward26 .button{
		margin-bottom: 100px;
	}
}