@font-face {
  font-family: 'BLUEHIGD';
  src: url('fonts/BLUEHIGD.woff') format("woff"), 
  url('fonts/BLUEHIGD.ttf') format("truetype"),
  url('fonts/BLUEHIGD.eot') format("embedded-opentype");
}

html, body{
	margin:0;
	padding: 0;
	height: 100%;
}
body{
	font-family: Arial, Microsoft JhengHei, sans-serif;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #666;
	background: #fff;
}
a{
	color: #999;
	text-decoration: none;
	-webkit-transition: 1s;
    transition: 1s;
}
a:hover{
	color: #0049dd;
}

form{
	line-height: 0;
}

input.search_text[type=text], input.form-control[type=text], input.form-control[type=email], input.blur[type=text]{
	box-sizing: border-box;
	border: none;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	padding: 0 10px;
	font-size: .9rem;
	line-height: 28px;
	color: #777;
	background: none;
	float: left;
	text-align: left;
	font-family: Arial, Microsoft JhengHei, sans-serif;
	outline: none;
}
input.search_text[type=text]{
	display: inline-block;
	width: 150px;
	color: #777;
	outline: none;
	font-size: 1rem;
	line-height: 32px;
	outline: none;
}
input.search_text[type=text]:focus{
    color: #153a8a;
}

input.form-control[type=text], input.form-control[type=email], input.blur[type=text]{
    width: 100%;
	border: 1px solid #ddd;
	border-radius: 2px;
	padding: 5px 10px;
	font-size: .9rem;
	line-height: 1.5rem;
	color: #777;
	margin-bottom: 10px;
	background: #fff;
	outline: none;
}
input.form-control[type=text]:focus, input.form-control[type=email]:focus, input.blur[type=text]:focus{
    border: 1px solid #153a8a;
    color: #555;
}
input.radio-control[type=radio]{
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 10px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	color: #777;
	background: #fff;
	float: left;
	text-align: left;
	outline: none;
}
input.radio-control[type=radio]:focus{
    border: 1px solid #153a8a;
    color: #153a8a;
}

button.btn_search[type=submit]{
	width: 30px;
	color: #153a8a;
	font-size: 1.3rem;
	line-height: 30px;
	text-decoration: none;
	cursor: pointer;
	border: none;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	background: none;
	text-align: center;
	display: inline-block;
	float: right;
	outline: none;
}
button.btn_search[type=submit]:hover, button.btn_search[type=submit]:focus{
    color: #153a8a;
}

textarea.textarea-control {
    width: 100%;
    box-sizing: border-box;
    border-radius: 2px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: .9rem;
    line-height: 1.5rem;
    color: #777;
    background:#fff;
	padding: 5px 10px;
	border:1px solid #ddd;
	font-family: Arial, Microsoft JhengHei, sans-serif;
	outline: none;
}
textarea.textarea-control:focus{
	border: 1px solid #153a8a;
    color: #555;
}
select.select-control{
	width: 100%;
    box-sizing: border-box;
    border-radius: 2px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: .9rem;
    line-height: 1.5rem;
    background:#fff;
	padding: 5px 10px;
	border:1px solid #ddd;
	display: inline-block;
	color: #777;
	height: 36px;
	font-family: Arial, Microsoft JhengHei, sans-serif;
	outline: none;
}
select.select-control:focus{
	border: 1px solid #153a8a;
    color: #555;
}
.contact_form select.select-control{
	width: 100%;
}

button.btn_send[type=submit], button.btn_reset[type=reset]{
	width: calc(50% - 10px);
    color: #777;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #aaa;
    border-radius: 2px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: #eee;
    display: inline-block;
    vertical-align: top;
    font-family: Arial, Microsoft JhengHei, sans-serif;
	outline: none;
}
button.btn_send[type=submit]:hover, button.btn_send[type=submit]:focus,
button.btn_reset[type=reset]:hover, button.btn_reset[type=reset]:focus{
    border: 1px solid #153a8a;
    background: #0e4a9e;
    color: #fff;
}


/* Page Loading */
.loading{
	width: 100%;
	height: 100%;
	z-index: 99999;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
}
#loader {
	position: absolute;
	left: 50%;
	top: calc(50% - 40px);
	z-index: 2;
	width: 200px;
	margin: -200px 0 0 -100px;
	-webkit-animation: move_logo 1.5s infinite;
	animation: move_logo 1.5s infinite;
	background: url(../img/logo_s.png) 50% 0 no-repeat;
	background-size: 50px auto;
	font-size: .75rem;
	line-height: 1.2rem;
	text-align: center;
	color: #555;
	padding: 40px 0 0 0;
}
#loader i{
	display: block;
	font-size: 1.5rem;
	text-align: center;
	color: #ec6528;
	margin: 5px auto;
}
@-webkit-keyframes move_logo {
	0% { opacity: 0; margin-top:-50px; }
	50% { opacity: 1; margin-top:-30px;}
	100% { opacity: 0; margin-top:-10px;}
}
@keyframes move_logo {
	0% { opacity: 0; margin-top:-50px; }
	50% { opacity: 1; margin-top:-30px;}
	100% { opacity: 0; margin-top:-10px;}
}


/*Mobile, Pad Menu_Btn*/
.btn_mobile_menu{
	display: none;
	position: absolute;
	top: 0;
	width: 60px;
	height: 60px;
	right: 0;
	color: #d1ebf8;
	text-align: center;
	font-size: 20px;
	line-height: 60px;
	cursor: pointer;
	background: #153a8a;
}
.btn_mobile_menu a{
	color: #c1dbff; 
}
.btn_mobile_menu a:hover{
	color: #fff; 
}

/*Mobile, Pad Menu List*/
.mobile_menu_list{
	/*display: none;*/
    height: 100%;
    width: 0;
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	background: rgba(51,51,51,0.95);
	overflow-x: hidden;
	-webkit-transition: 1s;
	transition: 1s;
	box-shadow: 5px 0 10px rgba(0,0,0,0.5);
	margin-left: -5%;
}

.mobile_menu_top{
	background: #fff;
	height: 60px;
	position: relative;
}

.mobile_menu_list .btn_close_menu, .close_modal{
    position: absolute;
	top: 0;
	right: 0;
	font-size: 30px;
	width: 60px;
	height: 60px;
	text-align: center;
	background: #153a8a;
}
.mobile_menu_list .btn_close_menu a{
    width: 60px;
	height: 60px;
	display: block;
	color: #c1dbff;
    -webkit-transition: 1s;
    transition: 1s;
    line-height: 60px;
}
.mobile_menu_list .btn_close_menu a:hover{
    color: #fff;
}

.mobile_menu_list ul, .mobile_menu_list ul ul{
	clear: both;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobile_menu_list li{
	font-size: 1rem;
	line-height: 2rem;
	text-align: left;
	border-bottom: 1px solid #444;
}
.mobile_menu_list li a{
	padding: 10px;
	color: #fff;
	display: block;
}
.mobile_menu_list li a:hover, .mobile_menu_list li.active a{
	color:#fff;
	background: #153a8a;
}
.mobile_menu_list ul ul{
	margin: 0 10px;
	padding: 0;
	background: rgba(34,34,34,.9);
}
.mobile_menu_list ul ul ul{
	margin: 0;
	padding: 0;
	background: none;
	border-bottom: none;
	display: none;	
}
.mobile_menu_list li li{
	padding: 0;
	font-size: .9rem;
	line-height: 1.5rem;
	border-bottom: 1px solid #333;
}
.mobile_menu_list li li a{
	padding: 10px 25px;
	width: calc(100% - 50px);
	color: #999;
	border-bottom: none;
}
.mobile_menu_list li li a:hover, .mobile_menu_list li.active li a:hover{
	color: #fff;
}
.mobile_menu_list li.active li.active a{
	color: #fff;
	background: rgba(30, 30, 30, 1.0);
}
.mobile_menu_list li li li{
	padding: 0 10px;
	font-size: .8rem;
	line-height: 1.2rem;
	border: none;
}
.mobile_menu_list li.active li.active li a,
.mobile_menu_list li li li a{
	padding: 10px 10px 10px 20px;
	width: calc(100% - 20px);
	color: #777;
	font-weight: normal;
	background: none;
}
.mobile_menu_list li.active li.active li.active a,.mobile_menu_list li li li a:hover, .mobile_menu_list li.active li li a:hover{
	color: #ccc;
}
.mobile_menu_list li.active li a{
	color: #999;
	background: none;
}
.mobile_menu_list li.active li li a{
	color: #999;
}
.mobile_menu_list li i.fa,.mobile_menu_list li i.fas{
	padding: 0 5px;
}

.mobile_menu_footer{
	text-align: center;
	padding: 10px 0;
}
.mobile_menu_footer ul{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
.mobile_menu_footer li{
	display: inline-block;
	margin: 0 2px;
	padding: 0;
	border: none;
}



/* Wrapper Main Page */
.wrapper{
	-webkit-transition: 2s;
    transition: 2s;

}
header{
	width: 100%;
	background: #fff;
	position: fixed;
	top:0;
	left: 0;
	z-index: 999;
	height: 130px;
	box-shadow: 0 4px 5px rgba(0,0,0, .3);
	font-size: 0;
    line-height: 0;
}
#topline{
	height: 5px;
	width: 100%;
    background: #1e479c;	
}

/* top */
.top{
	font-size: 0;
	vertical-align: top;
	padding: 0 10% 0 0;
	position: absolute;
    right: 0px;
    width: 90%;
    text-align: right;
}

/* social_btn */
.social_btn{
	display: inline-block;
	margin: 0;
	line-height: 30px;
	vertical-align: top;
}
.social_btn ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.social_btn li{
	display: inline-block;
	margin: 0 2px;
	color: #fff;
	font-size: 1rem;
	line-height: 30px;
	float: left;
}
.social_btn li a,
.mobile_menu_footer li a{
	color: #eee;
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 15px;
	text-align: center;
	border: 1px solid #eee;
}
.social_btn li a:hover,
.mobile_menu_footer li a:hover{
	color: #fff;
}
.social_btn li.fb a,
.mobile_menu_footer li.fb a{
	color: #fff;
	background: #3b5998;
	line-height: 28px;
}
.social_btn li.youtube a,
.mobile_menu_footer li.youtube a{
	color: #fff;
	background: #cc181e;
	line-height: 28px;
}
.social_btn li.fb a:hover{
	color: #fff;
	background: none;
}
.social_btn li.youtube a:hover{
	color: #fff;
	background: none;
}
.mobile_menu_footer li.fb a,
.mobile_menu_footer li.youtube a{
	padding: 0;
}
.mobile_menu_footer li.fb a:hover,
.mobile_menu_footer li.youtube a:hover{
	color: #222;
	background: none;
	border: 1px solid #222;
}


/* search_area */
.search_area{
	display: inline-block;
	vertical-align: middle;
	border: 1px solid #777;
	margin-right: 10px;
	border-radius: 45px;
}

.search_area label, .search_area_m label{
	font-size: 0;
}

/* search_area_m */
.search_area_m{
	display: none;
	border: 1px solid #aaa;
	position: absolute;
	height: 28px;
	top: 15px;
	left: 15px;
	border-radius: 15px;
	width: calc(100% - 90px);
	font-size: 0;
}


/* trans_lang */
.trans_lang{
	line-height: 30px;
	text-align: center;
	font-size: .9rem;
	display: inline-block;
	vertical-align: middle;
	background: url(../img/lan/lan_bg.png) 50% 14px no-repeat;
	background-size: 26px auto;
}
.trans_lang a{
	color: #666;
}
.trans_lang a:hover{
	color: #153a8a;
}
.trans_lang img{
	border:1px solid #ccc;
	height: 28px;
	width: 28px;
	border-radius: 14px;
	vertical-align: middle;
	-webkit-transition: 1s;
	transition: 1s;
}
.trans_lang img:hover{
	border:1px solid #bbb;
}
.dropbtn{
	display: inline-block;
	cursor: pointer;
	font-size: .8rem;
	line-height: 1.8rem;
	position: relative;
	padding: 38px 10px 12px 10px;
	height: 30px;
	width: 60px;
}
.dropbtn.mobile{
	display: none;
}

/* trans_lang > trans_lang_content */
.trans_lang_content {
    display: none;
    position: absolute;
	background: rgba(235, 235, 235, .9);
 	min-width: calc(100% - 40px); 
	box-shadow: 0px 5px 5px rgba(0,0,0,0.25);
	z-index: 999;
	top: 125px;
    right: 0;
	padding: 20px;
}
.trans_lang_content .title{
	font-size: 1rem;
	color: #555;
	line-height: 1.5rem;
	font-weight: bold;
	text-align: left;
}
.trans_lang_content ul{
	list-style: none;
	margin:0;
	padding: 0;
	text-align: left;
	font-size: 0;
}
.trans_lang_content li{
	display: inline-block;
	font-size: .9rem;
	line-height: 40px;
	width: 25%;
	text-align: left;
	vertical-align: top;
}
.trans_lang_content li a {
	width: calc(100% - 30px);
    padding: 5px 15px;
    text-decoration: none;
    display: block;
    text-align: left;
    color: #777;
}
.trans_lang_content li a:hover {
	color: #333;
	text-decoration: none;
}
.show {
	display:block;
}


/* logo */
.logo{
	height: 60px;
    color: #333;
    font-weight: bold;
    font-size: 0rem;
    margin: 10px auto;
    display: inline-block;
    margin: 10px 0 10px 10%;  
    z-index: 2;
	position: absolute;
}
.logo a{
    height: 60px;
    width: 185px;
    display: block;
    background: url(../img/logo.jpg) 0 50% no-repeat;
    background-size: auto 60px;

}
.logo span{
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.8rem;
}
.logo span i{
	display: block;
	font-style: normal;
	font-size: .7rem;
	font-weight: normal;
	line-height: .9rem;
	color: #555;
	text-transform: uppercase;
}
.logo a span{
	color: #333;
}
.logo a span i{
	color: #555;
}


/* key_h1 | PC */
.key_h1_main{
	line-height: 40px;
	height: 40px;
	text-align: center;
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
}
.key_h1{
	text-align: left;
	margin: 0 auto;
	color: #333;
	font-size: 1rem;
	line-height: 2rem;
	border-left: 18px solid #0181ef;
	text-transform: uppercase;
	z-index: 2;
    position: absolute;
    top: calc(50% - 2rem);
    right: 10%;
	padding-left: 20px;
}
.key_h1_main h1, .key_h1 h1{
	color: #fff;
	margin: 0;
	padding: 0;
	font-weight: normal;
}
.key_h1_main h1{
	font-size: .8rem;
}
.key_h1 h1{
	color: #153a8a;
	font-size: 2rem;
	line-height: 2.5rem;
	text-shadow: none;
	font-weight: bold;
}
/* key_h1 | Mobile, Pad */
.key_h1.mobile{
	display: none;
	line-height: 60px;
	height: 60px;
	overflow: hidden;
	padding: 0 20px;
	width: calc(100% - 100px);
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
}
.key_h1.mobile h1{
	font-size: .8rem;
	margin: 0;
	padding: 0;
}
.key_h1.mobile h1 i.fa{
	padding: 0 5px;
	color: #ec6528;
}


/* menu */
.menu {
    vertical-align: top;
    background: #1B4AB0;
    text-align: center;
    position: absolute;
	bottom: 0;
	width: 100%;
}
.menu ul{
	margin: 0;
    padding: 0;
    list-style: none;
}
.menu li{
	display: inline-block;
	overflow: hidden;
	line-height: 45px;
	font-size: 1rem;
	height: 45px;
}
.menu li a{
	color: #c2dbff;
	padding: 0 35px;
	display: inline-block;
    height: 45px;
    line-height: 45px;
    z-index: 3;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.menu li a:after{
    content: "";
    background-color:#c3d7ff;
    opacity: 0;
	width: 100px;
	height:20px;
    position: absolute;
    bottom: 5px;
    left: -100%;
    right: 0;
    z-index: -1;
    transition: 0.3s;
    overflow: hidden;
    transform: rotate(45deg);
}
.menu li a:hover, .menu li.active a{
	color: #fff;
	background: #1a3f8b;
}
.menu li a:hover:after {
	left: 100%;
	opacity: 1;
}
.menu li.active a:after{
	left: -100%;
}
/* menu > dropdown-content */
.menu ul ul {
    text-align: left;
    margin: -10px 0 0 0px;
	padding: 10px 0 0 0;
	width: 200px;
}
.menu ul ul ul{
	background: none;
	display: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 99;
    top: 45px;
}

.dropdown-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-content li, .dropdown-content li ul li{
    display: block;
    vertical-align: top;
    padding: 0;
    height: auto;
    border-bottom: 1px solid #3b63b5;
    background: rgba(51,51,51,0.95);
    background: rgba(26,63,139,0.85);
    background: rgba(35,73,155,0.9);
}

.dropdown-content li a,.menu li.active .dropdown-content li a {
	text-decoration: none;
	display: block;
	text-align: left;
	color: #ddd;
    padding: 10px 15px;
    line-height: 25px;
    background: none;
    height: auto;
}

.dropdown-content li a:hover ,.menu li.active .dropdown-content li a:hover{
    color: #fff;
    text-decoration: none;
    background: rgba(1,62,126,1);
    background: #00168a;
}
.dropdown-content li a:after,.menu li.active .dropdown-content li a:after{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
}
.dropdown-content li a:hover:after{
	left: -100%;
}

.dropdown:hover .dropdown-content {
    display: block;
}
.menu li.active .dropdown-content li a:after{
/* 	background: transparent;
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; */
}
.dropdown-content li ul{
	list-style: none;
    margin: 0;
}
/* {
	width: 100%;
    display: block;
    font-size: .8rem;
    line-height: 1.5rem;
    font-weight: 400;
} */
.dropdown-content li ul li a{
	padding: 2px 14px;
    text-decoration: none;
    display: block;
    text-align: left;
    color: #999;
}
.dropdown-content li ul li a i{
    margin: 0 5px;
}
.dropdown-content li ul li a:hover{
	color:#ddd;
}
.menu li.active .dropdown-content li ul li a{
	color: #999;
}
.menu li.active .dropdown-content li ul li a:hover{
	color:#ddd;
}
.dropdown:hover .dropdown-content {
    display: block;
}

/* contact_us_area */
.contact_us_area{
    /* height: 60px; */
	color: #fff;
	font-size: 0;
	text-align: left;
	background: url(../img/footer_logo.png) 0 0 no-repeat;
    background-size: auto 45px;
    padding: 50px 0 0 0;
}
.contact_us_area span{
	font-size: .9rem;
	line-height: 1.5rem;
	display: block;
}
.contact_us_area ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
	vertical-align: top;
	width: 50%;
}
.contact_us_area li{
	display: inline-block;
	vertical-align: top;
	font-size: .75rem;
	padding: 0 25px 0 0;
	line-height: 1.5rem;
}
.contact_us_area li i.fa{
	padding: 0 5px;
	font-size: 1rem;
	color: #fff;
}
.contact_us_area li img{
	vertical-align: middle;
	line-height: 0;
}

/* xml_area */
.xml_area{
	color: #ddd;
    text-align: center;
    padding-left: 10%;
    display: inline-block;
    float: left;
}
.xml_area ul{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	border-left: none;
	width: 100%;
}
.xml_area li{
	display: inline-block;
	vertical-align: top;
	padding: 0 10px;
	line-height: 2rem;
	font-weight: normal;
	font-size: .75rem;
}
.xml_area li a{
	color: #555;
	line-height: 40px;
}
.xml_area li a:hover{
	color: #153a8a;
}


/* footer */
footer{
	position: relative;
	font-size: 0;
	line-height: 0;
}
.foot_top{
	background: #153a8a;
	padding: 20px 10% 0 10%;
}
/* footer_menu */
.footer_menu{
	font-size: .9rem;
    padding: 10px 0;
}
.footer_menu ul{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	font-size: 0;
}
.footer_menu li{
	display: inline-block;
    width: calc(25% - 10px);
	vertical-align: top;
	font-size: .9rem;
	margin: 0 5px;
}
.footer_menu li a{
	display: block;
	padding:5px 10px;
	color: #6c99f6;
	border: 1px solid #6c99f6;
	height: 1.5rem;
	line-height: 1.5rem;
	overflow: hidden;
}
.footer_menu li a:hover{
	color: #fff;
	border: 1px solid #fff;
}

/* footer_multi_lang */
.footer_multi_lang{
	color: #c8d8f9;
    line-height: 1rem;
    font-size: .7rem;
    text-align: center;
    clear: both;
    padding: 10px 0;

}
.footer_multi_lang a{
	color: #6c99f6;
	padding:0 5px;
}
.footer_multi_lang a:hover{
	color: #c8d8f9;
}

/* footer_social_btn */
.footer_social_btn{
	padding: 5px 0;
	text-align: center;
}
.footer_social_btn ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.footer_social_btn li{
	display: inline-block;
	margin: 0 2px;
	color: #fff;
	text-align: center;
	font-size: 1rem;
	line-height: 34px;
}
.footer_social_btn li a{
	color: #888;
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 17px;
}
.footer_social_btn li a:hover{
	color: #fff;
}
.footer_social_btn li.fb a:hover{
	background: #3b5998;
}
.footer_social_btn li.youtube a:hover{
	background: #cc181e;
}

/* copyright*/
.copyright{
	color: #777;
	font-size: .7rem;
	line-height: 40px;
	text-align: right;
	padding: 0 10% 0 0;
    float: right;	
}


/* btn_top */
.btn_top{
	position: absolute;
	right: calc(10% - 25px);
	z-index: 9998;
	top: -25px;
    box-shadow: 0px 5px 5px -2px rgba(0, 0, 0, .5);	
}
.btn_top a{
	width: 50px;
	height: 50px;
	display: block;
	background:#00168a;
}
.btn_top a:hover{
	color: #fff;
	background: #000;
}
#gototop{
	position: absolute;
	top: 5px;
	width: 50px;
	height: 50px;
	display: block;
	-webkit-animation: move_top 2s infinite;
	animation: move_top 2s infinite;
	text-align: center;
	background:url(../img/btn_top.png) 50% 50% no-repeat;
}
@-webkit-keyframes move_top {
    from {top: 5px; opacity: 0;}
    to {top: -5px;}
}
@keyframes move_top {
    from {top: 5px; opacity: 0;}
    to {top: -5px;}
}



/* address */
.address{
	padding:20px 10%;
	color: #bbb;
	font-size: .8rem;
	line-height: 1.2rem;
	margin: 0 auto;
	text-align: left;
}
.address ul{
	list-style: none;
	margin: 0;
	padding:0;
}
.address li{
	display: inline-block;
}
.address li a{
	color: #888;
}
.address li a:hover, .address li.active a{
	color: #0049dd;
}
.address li i.fa{
	padding:0 10px;
}


/* Slidershow */
.slidershow{
	margin: 130px 0 0 0;
}
#slide{
	width:100%;
	height: 100%;
	background: #fff;
    background: -webkit-linear-gradient(#fff, #aaa);
    background: -o-linear-gradient(#fff, #aaa);
    background: -moz-linear-gradient(#fff, #aaa);
    background: linear-gradient(#fff, #aaa);
    -webkit-transition: 1s;
    transition: 1s;
}
.slidebanner {
	display: none;
	/* height: 100%; */
}
.slidebanner img{
	width: 100%;
}

.slideshow-container {
	width: 100%;
	height: 100%;
	position: relative;
}
.prev, .next {
	display: none;
	/* cursor: pointer;
	position: absolute;
	bottom: calc((100% - 170px) / 2 - 30px);
	width: 40px;
	height: 40px;
	padding: 10px;
	-webkit-transition: 0.6s ease;
	transition: 0.6s ease;
	opacity: 0.7;
	color: #fff;
	font-size: 2.5rem;
	text-align: center;
	line-height: 40px;
	z-index: 2; */
}
.prev {
	left: 10px;
	background: url(../img/btn_prev.png) 50% 50% no-repeat;
}
.next {
	right: 10px;
	background: url(../img/btn_next.png) 50% 50% no-repeat;
}
.prev:hover, .next:hover {
	opacity: 1;
	color: #fff;
}
.prev:hover{
	left: 0;
}
.next:hover {
	right: 0;
}
.dot_list{
	text-align: center;
	position: absolute;
	z-index: 2;
	bottom: 20px;
	width: 100%;
}
.dot {
	cursor: pointer;
	height: 10px;
	width: 10px;
	margin: 0 2px;
	border-radius: 50%;
	display: inline-block;
	border: 1px solid #fff;
	-webkit-transition: 1s;
    transition: 1s;
    opacity: 0.7;
}
.dot_active, .dot:hover {
	background: #333;
}
.fade {
	-webkit-animation: fade 1s;
    animation: fade 1s;
}
@-webkit-keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
}
@keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
}

/* Banner_List */
.slideshow-container{
	background: #fff;
}
.banner_1, .banner_2, .banner_3{
	width: 100%;
	position: relative;	
	overflow: hidden;
}
.banner_title{
	position: absolute;
	top: 50%;
	background-size: auto 180px;
	left: 49%;
	z-index: 3;
}
.banner_title span{
	color: #000;
	font-size: 4rem;
	line-height: 4.5rem;
	text-transform: uppercase;
	text-shadow:none;
	display: block;
	font-family: Noasarck,Arial;
}
.banner_title i{
	font-size: 1rem;
	line-height: 1.5rem;
}
.banner_items{
	background: url(../img/banner_itme.png) 0 0 no-repeat;
	background-size: auto 100%;
	height: 120px;
}
.banner_products{
	position: absolute;
	bottom: 10%;
	left:3%;
	right: 7%;
	z-index: 1;
	width: 90%;
	height: 80%;
	background: url(../img/banner_products.png) 100% 50% no-repeat;
	background-size: auto 100%;
}

/* btn_scroll_down */
.btn_h1{
	margin: 10px 0 0 0;
	padding: 0;
	border: none; 
	outline: none;
	background-color: #014099;
    border-radius: 50px;
	cursor:pointer;
	display: inline-block;
	color: #fff;
    -webkit-transition: 1s ease;
    transition: 1s ease;
}
 h1{
	font-size: 1rem;
	padding: 0 30px;
	display: block;
	font-weight: normal;
}
.btn_h1 a,.btn_h1 a h1{
	color: #fff;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.btn_h1:hover{
	color: #fff;
	background-color: #00168a;
	box-shadow: 0px 3px 5px rgba(0,0,0,0.5);
}

.btn_scroll_down{
    position: absolute;
    width:100%;
    text-align: center;
    color: #fff;
    font-size: .7rem;
    line-height: 1.5rem;
    z-index: 3;
    bottom: 15px;
}
.btn_scroll_down a{
    color: #fff;
    display: block;
    width: 50px;
    margin: 0 auto;
    height: 50px;
    -webkit-animation: move_down 1s infinite;
    animation: move_down 1s infinite;
    background: url(../img/scroll.png) 50% 60% no-repeat;
    padding-bottom: 20px;
}
.btn_scroll_down a h1{
	font-weight: normal;
	color: #fff;
	font-size: .9rem;
	line-height: 1.5rem;
	text-shadow: 0 0 4px #333;
}
.btn_scroll_down a:hover{
    color: #fff;
}
@-webkit-keyframes move_down {
    from {
        background-position: 50% 60%;
    }
    to {
        background-position: 50% 100%;
    }
}
@keyframes move_down {
    from {
        background-position: 50% 60%;
    }
    to {
        background-position: 50% 100%;
    }
}

/* content */
#content, #content.main{
	margin: 0 auto;
	text-align: center;
}
#content.main{
	text-align: left;
	width: 100%;
	padding: 0;
	background: none;
}
#content{
	padding: 0 10% 20px 10%;
}
#content h2{
	margin: 5px auto;
	padding: 0;
	font-size: 1.2rem;
	line-height: 2rem;
	font-weight: bold;
	color: #333;
	text-align: left;
}
.product_title{
	display: inline-block;
    border-bottom: 3px solid #1e479c;
	padding-bottom: 5px;
	margin: 40px;  
}
#content.main h2{
	text-align: center;
	font-size: 2rem;
	line-height: 2rem;
	color: #222;
	font-weight: bold;
	display: inline-block;
	margin: 0 auto;
}

#content h2 a{
	color: #333;
}
#content h2 a:hover{
	color: #014099;
}
/*.desp1, .desp2, .desp3, .desp4*/
.desp1, .desp2, .desp3, .desp4{
	color: #555;
	font-size: .9rem;
	line-height: 1.5rem;
	margin: 15px auto;
	text-align: left;	
}
#content.main .desp1, #content.main .desp2, #content.main .desp3, #content.main .desp4{
	padding: 50px 10%;
	margin: 0;
}

.desp1 strong, .desp2 strong, .desp3 strong, .desp4 strong{
	color: #555;
	font-size: .9rem;
	line-height: 1.5rem;
	font-weight: normal;
}
.desp1 a, .desp2 a, .desp3 a, .desp4 a,
.desp1 a strong, .desp2 a strong, .desp3 a strong, .desp4 a strong{
	color: #153a8a;
}
.desp1 a:hover, .desp2 a:hover, .desp3 a:hover, .desp4 a:hover,
.desp1 a:hover strong, .desp2 a:hover strong, .desp3 a:hover strong, .desp4 a:hover strong{
	color: #1b49ae;
}
.main_desp:first-letter{
	font-size: 3.5rem;
	float: left;
	margin: 12px 5px 0 5px;
	display: inline-block;
	color: #153a8a;
}
#content .desp1 h2, #content .desp3 h3, #content .desp1 em{
	margin: 0;
	padding: 0;
	font-size: .9rem;
	line-height: 1.5rem;
	font-weight: normal;
	display: inline-block;
	color: #777;
}

#content.main .desp3{
	padding: 50px 10% 0 10%;
}

/* left_side, content_detail */
.left_side, .content_detail{
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

/* left_side */
.left_side{
	width: calc(20% - 10px);
	padding: 0 10px 0 0;
}


/* side_title */
.side_title{
	color: #555;
	font-size: 1.2rem;
	line-height: 1.8rem;
	font-weight: bold;
	padding: 5px 10px;
	border-bottom: 1px solid #ddd;
}

/* side_menu */
.side_menu{
	padding: 10px 0;
}
.side_menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.side_menu li{
	color: #153a8a;
	font-size: .9rem;
	line-height: 1.5rem;
	margin: 0 0 5px 0;
	font-weight: bold;
	position: relative;
}
.side_menu li a{
	color: #777;
	padding: 5px 10px;
	display: block;
}
.side_menu li a:hover{
	color: #153a8a;
} 
.side_menu li.select a{
	color: #fff;
	padding: 5px 15px 5px 10px;
	background: #153a8a;
	display: block;
}
.side_menu li.select a:hover{
	color: #fff;
}
.side_menu li ul,
.side_menu li.select ul{
	display: none;
	list-style: square;
	margin: 0 0 10px 0;
	padding: 0 0 0 20px;
}
.side_menu li ul li,
.side_menu li.select ul li{
	font-size: .8rem;
	line-height: 1.2rem;
	margin: 0;
}
.side_menu li ul li a,
.side_menu li.select ul li a{
	padding: 4px;
	color: #999;
	background: none;
	font-weight: normal;
}
.side_menu li ul li a:hover,
.side_menu li.select ul li a:hover{
	color:#153a8a;
}
.side_menu li ul li.select a,
.side_menu li ul li.select a:hover{
	color:#153a8a;
}

.side_menu li.select i{
	color: #fff;
	line-height: 1.5rem;
	clear: both;
	height: 20px;
	position: absolute;
	right: 5px;
	top: 5px;
}


/* content_detail */
.content_detail{
	width: calc(80% - 20px);
	padding: 0 0 0 10px;
}
.content_detail p{
	color: #555;
	font-size: .9rem;
	line-height: 1.5rem;
	font-weight: normal;
}
.content_detail img{
	text-align: center;
	margin: 5px auto;
	display: block;
	width: 100%;
}
.content_detail h2{
	margin: 5px 0;
	padding: 0;
	font-size: 1.2rem;
	line-height: 2rem;
	font-weight: bold;
	color: #222;
	text-align: left;
}
.content_detail a{
	color: #0e4a9e;
}
.content_detail a:hover{
	color: #0e4a9e;
}
.content_detail ul{
	margin: 0 0 0 20px;
	padding: 0;
}
.content_detail li{
	font-size: .9rem;
	line-height: 2rem;
}


/* youtube_area */
.youtube_area{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.youtube_area iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* sitemap_content */
.sitemap_content{
	margin: 10px auto;
}
.sitemap_content ul, .sitemap_content ul ul, .sitemap_content ul ul ul{
	list-style:none;
	margin: 0;
	padding: 0 20px;
}
.sitemap_content ul ul{
	padding: 5px 0 5px 20px;
}
.sitemap_content ul ul ul{
	display: none;
}

.sitemap_content li, .sitemap_content li li, .sitemap_content li li li{
	line-height: 1.5rem;
	font-size: .9rem;
	color: #153a8a;
	margin: 0 0 5px 0;
}
.sitemap_content li li, .sitemap_content li li li{
	color: #153a8a;
}
.sitemap_content li a, .sitemap_content li li a, .sitemap_content li li li a{
	color: #777;
}
.sitemap_content li a:hover{
	color: #153a8a;
}
.sitemap_content li li a:hover, .sitemap_content li li li a:hover{
	color:  #153a8a;
}
.sitemap_content li i, .sitemap_content li li i, .sitemap_content li li li i{
	padding: 0 5px;
}


/* privacy_policy_content */
.privacy_policy_content{
	margin: 10px auto;
	line-height: 1.2rem;
	font-size: .9rem;
	color: #777;
}
.privacy_policy_content b{
	font-weight: bold;
	color: #555;
	display: block;
}
.privacy_policy_content ul, .privacy_policy_content ul ul{
	list-style:none;
	margin: 0;
	padding: 0;
}
.privacy_policy_content ul ul{
	padding: 5px 0 5px 35px;
}
.privacy_policy_content li, .privacy_policy_content li li{
	line-height: 1.5rem;
	font-size: .9rem;
	color: #777;
	margin: 0 0 5px 0;
}


/* contact_form_open for Products_Detail */
#contact_form_open{
	border: 1px solid #ddd;
	padding: 15px 20px;
	box-shadow: 0 5px 5px #ccc;
	margin-top:0;
	background: rgba(255, 255, 255, .4);
}

/* contact_form */
.contact_form{
	color: #777;
	margin: 10px auto 50px auto;
	font-size: .9rem;
	line-height: 1.5rem;
}
.contact_form form{
	line-height: normal;
}
.form-group{
	clear: both;
	padding: 0 0 10px 0;
}
.form-group.title{
	background: #eee;
	color: #555;
	margin:5px 0;
	padding: 5px;
	text-align: center;
}
.form-group label, .form-group.title label{
	font-size: .9rem;
	line-height: 1.5rem;
	color: #777;
	display: block;
}
.form-group.title label{
	color: #555;
}
.form-group label.company_title{
	color: #555;
	font-size: .9rem;
	line-height: 2rem;
	font-weight: bold;
}
.checkbox_area{
	width: 32%;
	display: inline-block;
	vertical-align: top;
}
.provecode_area{
	width: calc(50% - 2px);
	display: inline-block;
	vertical-align: top;
}
.provecode_area img{
	height: 36px;
	margin: 0 5px 0 0;
	cursor: pointer;
	float: left;
	width: auto;
}
.provecode_area_txts{
	font-size: .8rem;
	line-height: 36px;
}
.provecode_area_txts a{
	color: #0049dd;
	cursor: pointer;
}
.provecode_area_txts a:hover{
	color: #153a8a;
}
#tips, .attention, .form-group label i.attention{
	color: #c80000;
	font-size: .9rem;
	line-height: 1.5rem;
	margin:5px 0;
}
.attention{
	text-align: right;
}
.form-group label i.attention{
	text-align: left;
	margin: 0;
	font-weight: bold;
	padding: 0 5px 0 0;
}
.btn_area{
	margin:10px auto;
	text-align: center;
}


/* contact_success */
.contact_success{
	padding: 100px 0;
	text-align: center;
	color:#00168a;
	font-size: 1rem;
	line-height: 2rem;
}
.contact_success p{
	margin: 0;
	padding: 0;
	font-size: 1rem;
	line-height: 2rem;
	color: #00168a;
}


/* desp_products */
#desp_products{
	top: -135px;
	position: absolute;
	z-index: 2;
	height: 1px;
	width: calc(100% - 20px);
}
/* products_area */
.products_area{
	margin: 0px auto;
	font-size: 0;
}
.products_area.main{
	width: 80%;
	text-align: center;
	font-size: 0;
}
.bg_products_area{
	padding: 0 0 50px 0;
	background: #fff url(../img/product_bg_m.jpg) 50% 50%;
	position: relative;
	text-align: center;
}
.bg_products_area:before{
	content: '';
	position: absolute;
	height: 300px;
	width: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(270deg, rgba(255, 255, 255, 1)35%, rgba(255, 255, 255, 0)100%); 
	background: -moz-linear-gradient(270deg, rgba(255, 255, 255, 1)35%, rgba(255, 255, 255, 0)100%); 
	background: -webkit-linear-gradient(270deg, rgba(255, 255, 255, 1)35%, rgba(255, 255, 255, 0)100%); 
	background: -o-linear-gradient(270deg, rgba(255, 255, 255, 1)35%, rgba(255, 255, 255, 0)100%); 
	z-index: -1;
	}
.bg_products_area:after{
	content: '';
	position: absolute;
	height: 300px;
	width: 100%;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 1)35%, rgba(255, 255, 255, 0)100%); 
	background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 1)35%, rgba(255, 255, 255, 0)100%); 
	background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 1)35%, rgba(255, 255, 255, 0)100%); 
	background: -o-linear-gradient(90deg, rgba(255, 255, 255, 1)35%, rgba(255, 255, 255, 0)100%); 
	z-index: -1;
}

.products_area .mid_title{
	line-height: 2rem;
	color: #222;
	font-weight: bold;
	margin: 5px 20px 10px 20px;
	font-size: 1rem;
	text-align: left;
}
/* .products_area .mid_title:first-letter{
	color: #e7a800;
} */
.products_area .mid_title a{
	color: #222;
}
.products_area .mid_title a:hover{
	color: #00168a;
}
/* products_items */
.products_items, .products_items.main{
	width: calc(33% - 30px);
	display: inline-block;
	vertical-align: top;
	position: relative;
	margin: 0 15px 50px 15px;
    background: #fff;

}
.products_items.main{
	width: calc(25% - 60px);
	margin: 0 15px;
	position: relative;
	box-shadow: 0px 3px 3px rgba(117, 117, 117, 0.5);
    padding: 0 15px 10px 15px;	
    transition: all 1s ease;
    z-index: 5;    
}
.products_items.main:hover{
	background: #1e479c;
	cursor: pointer;
}
.products_items.main:hover .products_name {
	color: #fff;
}
.products_items.main:hover .products_model {
	color: #ddd;
}
/* products_photo */
.products_photo, .product_detail_photo{
	width: 100%;
	/*background: #fff;
	background: -webkit-linear-gradient(120deg, #fff, #aaa);
    background: -o-linear-gradient(120deg, #fff, #aaa);
    background: -moz-linear-gradient(120deg, #fff, #aaa);
    background: linear-gradient(120deg, #fff, #aaa);*/
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100% 0 0 0;
    background-color: #fff;
}
.product_detail_photo{
	width: 100%;
	padding: 100% 0 0 0;
	margin: 20px auto;
}
.products_photo a, .product_detail_photo a{
	color: #ccc;
	font-size: .7rem;
	line-height: 1.5rem;
}
.products_photo a:hover, .product_detail_photo a:hover{
	color: #fff;
}
.products_photo img, .product_detail_photo img{
    max-width: 100%; 
    width: 100%;
    height: auto;
    position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
    margin: auto;
}
.products_photo a img, .product_detail_photo a img{
    max-width: 100%;
    -webkit-transition: 1s;
    transition: 1s;
}
.products_photo a:hover img, .product_detail_photo a:hover img{
    max-width: 120%;
    width: 120%;
    height: auto; 
    top: -10%;  
    left: -10%;
    right: -10%;
    bottom: -10%;
}
.products_photo a .mask{
	color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    -webkit-transition: 1s;
    transition: 1s;
    background: rgba(0, 73, 221, 0) 50% calc(40% - 1rem) no-repeat;
    border: 3px solid #153a8a;
	opacity: 0;
	overflow: hidden;
	font-size: .8rem;
	width: calc(100% - 6px);
	height: calc(45% - 6px);
	padding: 55% 0 0 0;
}
.products_photo a .mask:hover{
	color: #fff;
	background: rgba(0,0,0, .5) 50% calc(50% - 1rem) no-repeat;
	border: 3px solid #153a8a;
	opacity: 1;
	height: calc(50% + 24px);
	padding: calc(50% - 30px) 0 0 0;
}
.products_photo a .mask i{
	color: #fff;
	text-align: center;
	display: block;
	font-size: 2rem;
	-webkit-transition: 1s;
    transition: 1s;
    margin-bottom: 10px;
}


/* products_detail_photo_multi */
.products_detail_photo_multi {
	overflow:hidden;
	margin: 20px auto;
}
/* products_photo_change */
#products_photo_change{
	width: 450px;
	height: 450px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
#products_photo_change ul{ 
	list-style:none;
	margin: 0;
	padding: 0;
}
#products_photo_change li {
	position:absolute;
	list-style:none;
	float:left;
}
#products_photo_change li img{
    max-width: 100%; 
    width: 100%;
    height: auto;
    margin: 0;
    -webkit-transition: 1s;
    transition: 1s;
}
/*#products_photo_change:hover li img{
    max-width: 120%;
    width: 120%;
    height: auto; 
    margin: -10% 0 0 -10%;
    cursor: pointer;
}*/
/* products_items_list */
#products_items_list{
	text-align: center;
	margin: 10px 0 0 0;
}
#products_items_list img {
	margin: 0 5px;
	cursor: pointer;
	width: 150px;
	display: inline-block;
	vertical-align: top;
}
#products_items_list img.now {
	border:1px solid #ec6528;
}
#products_items_list img.num {
	border:1px solid #ddd;
}

/* product_cate_title */
.product_cate_title{
	line-height: 1.8rem;
	color: #333;
	font-weight: bold;
	margin: 10px 5px;
	font-size: 1rem;
}
.product_cate_title a{
	color: #333;
}
.product_cate_title a:hover{
	color: #3971bd;
}

/* products_list */
.products_list{
	margin: 10px 0;
}
.products_list ul{
	margin:0;
	padding: 0 20px;
	list-style: square;
}
.products_list li{
	font-size: .9rem;
	line-height: 1.5rem;
	color: #0e4a9e;
	text-align: left;
	margin: 0 0 10px 0;
}
.products_list li a{
	color: #777;
}
.products_list li a:hover{
	color: #e79100;
}

/* products_name */
.products_name{
	font-size: .9rem;
	color: #222;
	line-height: 1.2rem;
	padding: 20px 0 10px 0;
	text-align: left;
}
.products_name a{
	color: #111;
}
/* .products_name a:hover{
	color:#0e4a9e;
} */

/* products_model */
.products_model{
	font-size: .7rem;
	color: #555;
	line-height: 1.2rem;
	padding: 0 0 10px 0;
	text-align: left;
}
.products_model a{
	color: #555;
}
.products_model a:hover{
	color: #333;
}
.products_items.main .products_model{
	padding: 0 15px 10px 0;
}

/* product_read_more */
.product_read_more{
	position: absolute;
	z-index: 1;
	font-size: .7rem;
	color: #ddd;
	bottom: -25px;
	right: 0;
	line-height: 50px;
	text-align: left;
	width: 40%;
	height: 50px;
}
.product_read_more a{
	width: calc(100% - 20px);
	height: 50px;
	padding: 0 10px;
	color: #ddd;
	background: #777 url(../img/btn_shape.png) no-repeat;
	background-position: calc(100% - 10px) 50%;
	display: block;
}
.product_read_more a:hover{
	width: calc(100% - 10px);
	height: 50px;
	padding: 0 5px;
	color: #fff;
	background: #3971bd url(../img/btn_shape_s.png) no-repeat;
	background-position: calc(100% - 5px) 50%;
	display:block;
}


/* products_detail_name、product_list_title */
.products_detail_name, .product_list_title{
	color: #555;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: bold;
	padding: 5px 0;
}
/* products_detail_model */
.products_detail_model{
	color: #777;
	font-size: .75rem;
	line-height: 1rem;
	margin:5px 0 10px 0;
}
/* products_detail_content */
.products_detail_content{
	color: #777;
	font-size: .9rem;
	line-height: 1.5rem;
	margin:20px 0;
}
/* pdfstyle */
.products_detail_content a.pdfstyle{
	font-size: .8rem;
	line-height: 1.5rem;
	background: #fafafa;
	color: #c80000;
	text-align: center;
	border: 1px solid #c80000;
	border-radius: 2px;
	padding: 5px 10px;
	margin: 5px;
	cursor: pointer;
}
.products_detail_content a:hover.pdfstyle{
	background: #c80000;
	color: #fff;
}
.products_detail_content table{
	border:1px solid #aaa;
	border-top:none;
	border-left: none;
}
.products_detail_content table td{
	padding: 0 10px;
	border:1px solid #aaa;
	border-right: none;
	border-bottom: none;
}

/* product_list_title */
.product_list_title{
	color: #0049dd;
	padding: 30px 0 15px 0;
	border-top:1px solid #aaa;
	margin: 20px 0 0 0;
}
/* btn_open_contact */
.btn_open_contact{
	display: block;
	margin: 10px auto 0 auto;
	font-size: 1rem;
	line-height: 2rem;
	text-align: center;
	color:#555;
	background: #eee;
	border: 1px solid #aaa;
	cursor: pointer;
	-webkit-transition: 1s;
    transition: 1s;
}
.btn_open_contact:hover{
	background: #153a8a;
	color: #fff;
}

/* skype_contect */
.skype_contect{
	position: fixed !important;
	z-index: 998 !important;
	
}
.bubble .lwc-chat-button{
	width: 50px !important;
	height: 50px !important;
	border-radius: 25px !important;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25) !important;
	right: 5px !important;
	bottom: 30px !important;
}
.lwc-chat-button{
	background: rgba(0, 175, 240, 0.8) !important;
}
.lwc-chat-button:hover{
	background: rgba(0, 175, 240, 1) !important;
}
.bubble .lwc-button-icon{
	padding: 10px !important;
	width: 30px !important;
}


/* social_share */
.social_share{
	height: 30px;
	overflow: hidden;
	margin: 0 20px;
}
.social_share ul{
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0;
	height: 30px;
	text-align: right;
}
.social_share li{
	display: inline-block;
	text-align: center;
	font-size: .9rem;
	color: #555;
	vertical-align: top;
	line-height: 30px;
}
.social_share li a.social_share_btn{
	width: 30px;
	height: 30px;
	display: block;
	line-height: 30px;
	background: #888;
	color: #eee;
	border-radius: 15px;
	overflow: hidden;
}
.social_share li a.social_share_btn:hover{
	background: #333;
	color: #fff;
}

.social_share li a.social_share_btn.facebook,
.social_share li a.social_share_btn.twitter,
.social_share li a.social_share_btn.google_plus,
.social_share li a.social_share_btn.line_pc,
.social_share li a.social_share_btn.line_mobile
{
	margin: 0 2px;
	font-size: 1rem;
}
.social_share li a.social_share_btn.line_pc,
.social_share li a.social_share_btn.line_mobile{
	background: #888 url(../img/line_logo.png) 50% 50% no-repeat;
	background-size: 50%;
}
.social_share li a.social_share_btn.line_mobile{
	display: none;
}
.social_share li a.social_share_btn.facebook:hover{
	background: #3b5998;
}
.social_share li a.social_share_btn.twitter:hover{
	background: #009eed;
}
.social_share li a.social_share_btn.google_plus:hover{
	background: #df4b37;
}
.social_share li a.social_share_btn.line_pc:hover,
.social_share li a.social_share_btn.line_mobile:hover{
	background: #00b900 url(../img/line_logo.png) 50% 50% no-repeat;
	background-size: 50%;
}

/* banner_content */
.banner_content {
    background: #daeaf6 url('../img/banner_content.png') 100% 100% no-repeat;
    background-size: auto 110%;
    height: 200px;
    position: relative;
    margin: 130px 0 0 0;
}
.banner_content .title {
    font-size: .9rem;
	line-height: 1.5rem;
	position: absolute;
	bottom: calc(50% - 1.5rem);
	left: 10%;
	color: #fff;
	text-shadow: 0 2px 5px #333;
	text-align: left;
	width: 80%;
}
.banner_content .item{
    /* background: url(../img/banner_content_deco1.png) 0 50% no-repeat; */
	background: url(../img/banner_content_deco1.png) 0 50% no-repeat;
    background-size: 100% auto;
	top: 0;
	bottom: 0;
	left: -10%;
    width: 1080px;
	position: absolute;
	z-index: 1;
}

/* about_us */
.about_us{
	padding: 20px;
	background: #f4f4f4 url(../img/banner_itme.png) calc(100% - 10px) 50% no-repeat;
	height: 120px;
}
.about_us span{
	font-size: 1rem;
	line-height: 120px;
	color: #3971bd;
	font-weight: bold;
	vertical-align: middle;
}


/* RWD */
@media (min-width: 1691px){
	.banner_content .item{
		left: 0;
	}
	.banner_products{
		right: 10%;
		width: 80%;
	}
	.key_h1 h1{
		font-size: 2.5rem;
		line-height: 3rem;
	}
}
@media (max-width: 1530px){
	.banner_content .item{
		left: -10%;
	    background: url(../img/banner_content_deco.png) 0 50% no-repeat;
        background-size: auto 170%;
	}
}
@media (max-width: 1371px){
	.banner_content .item{
	    background: url(../img/banner_content_deco.png) 0 50% no-repeat;
    	background-size: auto 130%;
        width: 100%;	
	}
}

@media (max-width: 1236px){
}

@media (max-width: 1196px){
	header{
		height: 60px;
	}
	.menu{
		display: none;
	}
	.btn_mobile_menu{
		display: block;
		z-index: 5;
	}
	.dropbtn{
		/*display: none;*/
		font-size: .75rem;
		line-height: 1.5rem;
		padding: 30px 10px 10px 10px;
		height: 20px;
		background-position: 50% 10px;
		background-size: 20px auto;
		width: auto;
	}
	.dropbtn.mobile{
		display: inline-block;
	}
	
	.logo{
		margin: 5px 0 0 15px;
		overflow: hidden;
		height: 45px;

	}
	.logo a {
	    height: 45px;
	    width: 150px;
	    background: url(../img/logo.jpg) 0 50% no-repeat;
    	background-size: auto 45px;
	}
	.top{
		margin: 0;
		padding: 0 60px 0 0;
		position: absolute;
		top: 2px;
		width: calc(100% - 60px);
	}
	.trans_lang{
		background-position: 50% 9px;
		background-size: 22px auto;
	}
	.social_btn{
		display: none;
	}
	.search_area{
		display: none;
	}
	.search_area_m{
		display: block;
	}
	input.search_text[type="text"]{
		width: calc(100% - 30px);
		color: #777;
	    padding: 0 0 0 10px;
		outline: none;
	}
	input.search_text[type=text]:focus{
	    color: #0049dd;
	}
	button.btn_search[type="submit"]{
		color: #0049dd;
		line-height: 25px;
		padding: 0;
	}
	button.btn_search[type="submit"]:hover, button.btn_search[type="submit"]:focus{
		color: #0049dd;
	}
	button.btn_search[type="submit"] i{
		margin: -8px 0 0 -5px;
	}
	.trans_lang_content{
		top:58px;
	    right: 0;
	    width: calc(50% - 40px);
	}
	.trans_lang_content .title{
		font-size: .9rem;
		line-height: 1.2rem;
		margin-bottom: 10px;
	}
	.slidershow{
		clear: both;
		margin: 60px 0 0 0;
	}

	#desp_products{
		top: -60px;
		height: 1px;
	}
	.product_title{
		margin: 30px;
	}
	.bg_products_area_gray{
		height: 50%;
	}
	.products_items, .products_items.main {
	    width: calc(50% - 60px);
	    margin: 0 10px 30px 10px;
	}
	.products_items{
		padding: 0;
	    width: calc(50% - 20px);
	}
	.banner_content {
		margin: 60px 0 0 0;
	}
	.about_us {
	    padding: 10px;
	    height: 100px;
		background-size: auto 80%;
	}
	.about_us span{
		font-size: 1rem;
		line-height: 100px;
	}

}
@media (max-width: 1096px){
	.banner_title span{
	}
	.banner_products{
		left: 5%;
		right: 5%;
	}
	.banner_products{
		height: 70%;
	}
	.banner_items{
		background-size: 100% auto;
		height: 100px;
	}
	.key_h1{
	    top: calc(50% - 2.5rem);	
	}
	.key_h1 h1{
		font-size: 1.5rem;
	}
	.banner_content{
	    background: #daeaf6 url(../img/banner_content_m.png) 100% 100% no-repeat;
    	background-size: auto 100%;	
	}
}
@media (max-width: 1366px) and (max-height: 1024px){
	.banner_title{
		
	}
	.banner_products{
		height: 70%;
	}
}

@media (max-width: 1024px) and (max-height: 1366px){
	.banner_title span {
	    font-size: 4.8rem;
	    line-height: 5rem;
	}
	.banner_products {
	    height: 40%;
	    bottom: 8%;
	    background-position: 50% 50%;
	}
	.banner_content{
		height: 200px;
	}
}
@media (max-width: 1024px) and (max-height: 768px){
	.banner_title {
   
	}
	.banner_title span {
		    font-size: 3.8rem;
		    line-height: 4rem;
		}	
}

@media (max-width: 959px){
	.banner_title{
	}
	.trans_lang_content li{
		width: 50%;
	}
	.address{
		display: none;
	}
	.left_side{
		display: none;
	}

	.key1{
		display: none;
	}

	.products_area.main {
	    width: 80%;
	}

	.social_share li a.social_share_btn.line_pc{
		display: none;
	}
	.social_share li a.social_share_btn.line_mobile{
		display: block;
	}
	.footer_menu{
		font-size: .8rem;
	}
	.footer_multi_lang{
		font-size: .7rem;
	}

	.banner_content {
	    height: 190px;
	}
	.key_h1{
		font-size: .8rem;
	}
	.banner_content .item {
	    background: url(../img/banner_content_deco.png) 0 50% no-repeat;
	    background-size: auto 100%;
	}

	.content_detail{
		width: 100%;
		display: block;
		padding: 10px 0;
	}
	.about_us span {
	    padding: 0 10px;
	}
	.contact_us_area ul{
		width: 100%;
	}
}
@media (max-width: 875px){
	.key_h1{
		border-left: none;
		padding: 10px;
		/* background: rgba(1, 129, 239, .3); */
		background: rgba(235, 235, 235, .7);
	    width: calc(80% - 20px);
	    text-align: center;
	}
	.banner_content{
	    background: #daeaf6 url(../img/banner_content_m.png) 100% 100% no-repeat;
        background-size: auto 100%;
	    height: 180px;
	}
}
@media (max-width: 768px){
	.banner_title span{
		font-size: 4rem;
	    line-height: 4.2rem;
	}
	.products_items{
		width: calc(50% - 20px);
	}
	.bg_products_area_gray{
		height: 100%;
	}
	#content.main .desp1, #content.main .desp2, #content.main .desp3, #content.main .desp4{
		padding: 50px 5%;
	}
	#content.main .desp4{
		padding: 0 5% 50px 5%;
	}
	#content{
		padding: 0 5% 20px 5%;
	}
	.foot_top{
	    padding: 20px 5% 0 5%;	
	}

	.contact_us_area li{
		line-height: 1rem;
	}
	.xml_area {
	    text-align: left;
	    float: none;
		padding-left: 5%;
	}
	.xml_area li{
		display: inline-block;
		padding: 0 15px 0 0;
		line-height: 20px;
		font-size: .75rem;
	}
	.footer_menu{
		display: block;
	}
	.footer_menu li{
		display: block;
		vertical-align: top;
		width: 80%;
		font-size: .8rem;
		margin: 10px auto;
	}
	.footer_menu li a:hover{
		border: 1px solid #fff;
		text-decoration: none;
	}
	.copyright{
		padding: 0 5% 0 0;
	}
	#content.main{
		margin: 0 auto;
		width: 100%;
	}
	.large_detail{
		width: 100% !important;	
	}
	.banner_content{
	    background: #daeaf6 ;	
	}
	.key_h1{
		right: 5%;
	    width: calc(90% - 20px);
	    line-height: 1.5rem;    		
	}
	.key_h1 h1{
		line-height: 1.8rem;
	}
	.provecode_area_txts{
		display: none;
	}
}
@media (max-width: 615px){
	.xml_area{
	    width: 100%;
    	padding: 0;	
	}
	.copyright{
		width: 100%;
	    padding: 0;
	    float: none;
	    text-align: center;
	}
}
@media (max-aspect-ratio: 1/1){
	
}
@media (max-width: 530px){
	.content_detail img{
		width: 100% !important;
	}
	.banner_content .item{
		left: 0;
	}
}
@media (max-width: 460px){
	.trans_lang_content li a{
		width: calc(100% - 10px);
		padding: 5px;
	}
	.logo, .logo a{
	    width: 150px;	
	}
	.btn_h1 a h1{
	    line-height: 1rem;
	    padding: 0 20px;    
	}
	.mobile_menu_list li{

	}
	.banner_title span {
	    font-size: 2.3rem;
	    line-height: 2.5rem;
	}
	.slidebanner img{
		transform: translate(-22%,0);
	    width: 160%;	
	}
	.prev, .next{
		display: none;
	}
	.banner_title {
    	left: 45%;
	}
	.bg_products_area_gray {
	    height: 100%;
	}
	.products_area.main{
		width: 100%;
	}
	.bg_products_area{
		padding: 0 ;
	}
	.products_items.main {
	    width: calc(90% - 50px);
	}
	.products_area{
		text-align: center;
	}
	.products_items{
		width: calc(90% - 20px);	
	}
	.xml_area{
		text-align: center;
		width: 100%;
		padding: 0;
	}

	.footer_menu li{
		width: 100%;
	}
	.footer_multi_lang{
		padding: 10px 0;
	}
	.contact_us_area{
		padding: 50px 0 0 0;
		text-align: center;
	}
	.contact_us_area li{
		text-align: left;
	    padding: 5px 0;
	    display: block;
	}
	.banner_content {
	}
	.key_h1 {
	    font-size: .8rem;
	    line-height: 1.5rem;
	    /* width: 90%; */
	    left: 5%;
	}
	.key_h1 h1 {
	    font-size: 1.3rem;
    	line-height: 1.5rem;
	    display: block;
	    text-shadow: 0 0 5px #fff;
	}

	.product_detail_photo, #products_photo_change{
		width: 100%;
		height: 450px;
	}

	.about_us{
		background-size: 95% auto;
		background-position: 50% 10px;
	}
	.about_us span{
		font-size: 1rem;
		line-height: 1.2rem;
		display: block;
		text-align: center;
		margin: 85px 0 0 0;
		padding: 0;
	}
	.products_photo a .mask:hover{
		height: calc(60% - 11px);
    	padding: calc(40% + 5px) 0 0 0;
	}
}

@media (max-width: 380px){
	.banner_title{
		
	}

	.xml_area li{
		display: inline-block;
	}
	.product_detail_photo, #products_photo_change{
		width: 100%;
		height: 380px;
	}

	.banner_content{
		height:150px;
	}
	.key_h1{
		font-size: .7rem;
	    top: calc(50% - 1.5rem);
	}
	.banner_items{
		height: 80px;
	}
}

@media (max-width: 347px){
	.top {
	    padding: 0 50px 0 0;
	    width: calc(100% - 50px);
	}
	.dropbtn{
		padding: 30px 5px 10px 5px;
	}
	.trans_lang{
		padding: 0;
	}
	.btn_mobile_menu{
		width: 50px;
	}
	.trans_lang_content{
		padding: 10px;
		width: calc(100% - 20px);
	}
	.trans_lang_content li{
		font-size: .7rem;
		line-height: 30px;
	}
	.banner_title b, .banner_title span {
	    font-size: 2rem;
    	line-height: 2.5rem;
	}
	.btn_h1 a h1{
		font-size: 15px;
	}
	.product_detail_photo, #products_photo_change{
		height: 320px;
	}
	.key_h1{
	    top: calc(50% - 1.5rem - 10px);
		font-size: .7rem;
	}
	.key_h1 h1 {
	    font-size: 1.2rem;
	    line-height: 1.5rem;
	}
	.about_us {
	    height: 85px;
	}
	.about_us span {
	    font-size: .8rem;
	    line-height: 1rem;
	    margin: 65px 0 0 0;
	}
	.banner_items {
	    height: 70px;
	}
}
@media (max-width: 320px){
	.banner_content{
	 height: 130px;	
	}
}
/* Horizontal - iPhone X */
@media (max-width: 812px) and (max-height: 375px){
	header{
		position: relative;
	}
	.wrapper{
	
	}
	.logo {
	
	}
	.trans_lang_content li{
		width: 25%;
	}
	.slidershow, .banner_content{
		margin: 0;
	}
	.banner_content{
			height: 180px;
	}
	.banner_title{

	}
	.btn_h1 h1{
		font-size: 15px;
		line-height: 18px;
	}
	.banner_title span {
	    font-size: 45px;
	    line-height: 45px;
    	text-shadow: 0px 0px 3px #fff;
	}
	.prev, .next{
		display: none;
	}
	#content.main .desp1, #content.main .desp2, #content.main .desp3, #content.main .desp4{
		padding: 50px 5%;
	}
	#content.main .desp4{
		padding: 0 5% 50px 5%;
	}
	#content{
		padding: 0 5% 20px 5%;
	}
	#desp_products{
		top: 0;
	}
	.key_h1 {
	    width: 86%;
	    left: 7%;
	}
	.contact_us_area{
		background-position: 0 50%;
	}
	.contact_us_area li{
		text-align: left;
	}
	.products_area.main{
		width: 90%;
		padding: 10px 0 0 0;
	}
	.about_us{
		height: 90px;
	}
	.about_us span {
		line-height: 90px;
	}
}
/* Horizontal - iPhone 6/7/8 Plus & before version */
@media (max-width: 736px) and (max-height: 414px){
	header{
		position: relative;
	}
	.logo{
	
	}

	.trans_lang_content li{
		width: 25%;
	}
	.trans_lang_content li a{
		font-size: 12px;
		width: calc(100% - 10px);
		padding: 5px;
	}
	.prev, .next{
		display: none;
	}
	.slidershow, .banner_content{
		margin: 0;
	}
	.banner_content{
		height: 170px;
	}
	.btn_scroll_down a{
	    padding-bottom: 5px;
    	height: 30px;
	}
	#desp_products{
		top: 0;
	}
	.product_title{
		margin: 20px;
	}
	.products_area.main{
		width: 90%;
	    padding: 10px 0 0 0;
	}
	#content.main .desp1, #content.main .desp2, #content.main .desp3, #content.main .desp4{
		padding: 50px 5%;
	}
	#content.main .desp4{
		padding: 0 5% 50px 5%;
	}
	#content{
		padding: 0 5% 20px 5%;
	}
	.contact_us_area{
		background-position: 0 50%;
	}
	.contact_us_area li{
		text-align: left;
	}
	.footer_menu li{
		font-size: .8rem;
		margin: 0 2px;
		display: inline-block;
		width: calc(25% - 4px);
	}
	.banner_title {
	}
	.banner_title span {
	   font-size: 45px;
    	line-height: 45px;
    	text-shadow: 0px 0px 3px #fff;
	}
	.key_h1 {
	    width: 86%;
	    left: 7%;
	}
	.btn_h1 h1{
		font-size: .8rem;
		line-height: 1.2rem;
	}
	.products_items, .products_items.main{

	}
	#content.main h2{
		font-size: 30px;
    	line-height: 30px;	
	}
	.about_us{
		height: 80px;
	}
	.about_us span {
		line-height: 80px;
	}
}
/* Horizontal - iPhone 6/7/8 */
@media (max-width: 667px) and (max-height: 375px){
	.trans_lang_content{
		min-width: calc(100% - 20px);
		padding: 10px;
		width: calc(400% - 20px);
	}
	.btn_h1 h1{
		font-size: 15px;
		line-height: 20px;
	}
	.btn_scroll_down a{
	    padding-bottom: 5px;
    	height: 30px;
	}
	#content.main h2{
		font-size: 30px;
    	line-height: 30px;	
	}
	.key_h1 h1{
		line-height: 1.8rem;
		font-size: 1.5rem;
	}
	.about_us{
		height: 60px;
	}
	.about_us span {
		padding: 0 10px;
	    font-size: .9rem;
	    line-height: 60px;
	}
}
/* Horizontal - iPhone 5/SE */
@media (max-width: 568px) and (max-height: 320px){
	.trans_lang_content{
		min-width: calc(100% - 20px);
		padding: 10px;
	    width: calc(400% - 20px);
	}
	.trans_lang_content .title{
		margin-bottom: 5px;
	}
	.trans_lang_content li{
		font-size: .7rem;
	}
	.trans_lang_content li a{
		padding: 0 ;
		width: 100%;
	}
	.banner_title{

	}
	.banner_title span {
	    font-size: 35px;
	    line-height: 35px;
	}
	.btn_h1 h1{
		font-size: 12px;
    	line-height: 18px;
	}
	.btn_scroll_down a{
	    padding-bottom: 5px;
    	height: 30px;
	}
	.xml_area {
	    text-align: left;
	    float: none;
	    padding-left: 20px;
	    width: auto;
	}
	.copyright {
	    padding: 0 20px 0 0;
	    width: auto;
	    float: right;
	    text-align: right;
	}
	.xml_area li{
		padding: 0 10px 0 0;	
	}
	.banner_content {
	    height: 150px;
	}
	#content.main h2{
		font-size: 25px;
    	line-height: 25px;	
	}


}


/* ANIMATION CLASS */
/* fade_Sample */
.fadeIn{
	-webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}
.fadeDown_In{
	-webkit-animation: fadeDown_In 1s;
    animation: fadeDown_In 1s;
}
.fadeUp_In{
	-webkit-animation: fadeUp_In 1s;
    animation: fadeUp_In 1s;
}
.fadeLeft_In{
	-webkit-animation: fadeLeft_In 1s;
    animation: fadeLeft_In 1s;
}
.fadeRight_In{
	-webkit-animation: fadeRight_In 1s;
    animation: fadeRight_In 1s;
}

/* Use_fade_Area*/
.fade_Header{
	-webkit-animation: fadeDown_In 1s;
    animation: fadeDown_In 1s;
}
.fade_Address{
	-webkit-animation: fadeIn 1s .5s forwards;
    animation: fadeIn 1s .5s forwards;
    opacity: 0;
}
.fade_Banner_Area{
	-webkit-animation: fadeIn 1s .5s forwards;
    animation: fadeIn 1s .5s forwards;   
    opacity: 0;
}
.fade_Sidebar{
	-webkit-animation: fadeIn 1s 1s forwards;
    animation: fadeIn 1s 1s forwards;   
    opacity: 0;
}
.fade_Content_Detail{
	-webkit-animation: fadeIn 1s 1.5s forwards;
    animation: fadeIn 1s 1.5s forwards;   
    opacity: 0;
}
.fade_desp1{
	-webkit-animation: fadeIn 1s 1s forwards;
    animation: fadeIn 1s 1s forwards;   
    opacity: 0;
}
.fade_desp2{
	-webkit-animation: fadeIn 1s 1s forwards;
    animation: fadeIn 1s 1s forwards;   
    opacity: 0;
}
.fade_desp3{
	-webkit-animation: fadeIn 1s 2s forwards;
    animation: fadeIn 1s 2s forwards;   
    opacity: 0;
}
.fade_desp4{
	-webkit-animation: fadeIn 1.5s 2s forwards;
    animation: fadeIn 1.5s 2s forwards;   
    opacity: 0;
}
.fade_Product_Area{
	-webkit-animation: fadeIn 1.5s 1.5s forwards;
    animation: fadeIn 1.5s 1.5s forwards;   
    opacity: 0;
}
.fade_Contact_Us_Area{
	-webkit-animation: fadeIn 1.5s 2.5s forwards;
    animation: fadeIn 1.5s 2.5s forwards;   
    opacity: 0;
}
.fade_Footer{
	-webkit-animation: fadeIn 1.5s 2.5s forwards;
    animation: fadeIn 1.5s 2.5s forwards;   
    opacity: 0;
}


/* fade_Animation */
@-webkit-keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-webkit-keyframes fadeDown_In {
    from {margin-top: -25px; opacity: 0;}
    to {margin-top: 0; opacity: 1;}
}
@keyframes fadeDown_In {
    from {margin-top: -25px; opacity: 0;}
    to {margin-top: 0; opacity: 1;}
}
@-webkit-keyframes fadeUp_In {
    from {margin-top: 0; opacity: 0;}
    to {margin-top: 25px; opacity: 1;}
}
@keyframes fadeUp_In {
    from {margin-top: 0; opacity: 0;}
    to {margin-top: 25px; opacity: 1;}
}
@-webkit-keyframes fadeLeft_In {
    from{margin-left: -25px; }
    to{margin-left: 0; opacity: 1;}
}
@keyframes fadeLeft_In {
    from{margin-left: -25px;}
    to{margin-left: 0; opacity: 1;}
}
@-webkit-keyframes fadeRight_In {
    from{margin-right: -25px; }
    to{margin-right: 0; opacity: 1;}
}
@keyframes fadeRight_In {
    from{margin-right: -25px;}
    to{margin-right: 0; opacity: 1;}
}


/* Retina Graphic */
@media all and (-webkit-min-device-pixel-ratio: 1.5),
       all and (-o-min-device-pixel-ratio: 3 / 2),
       all and (min--moz-device-pixel-ratio: 1.5),
       all and (min-device-pixel-ratio: 1.5){
    .logo a{
        background: url(../img/logo@2x.jpg) 0 50% no-repeat;
    	background-size: auto 100%;
    }
	.prev {
	    background: url(../img/btn_prev@2x.png) 50% 50% no-repeat;
	    background-size: 35px 60px;
	}
	.next {
	    background: url(../img/btn_next@2x.png) 50% 50% no-repeat;
	    background-size: 35px 60px;
	}
	#gototop{
		background: url(../img/btn_top@2x.png) 50% 50% no-repeat;
		background-size: 30px 15px;
	}
	.btn_scroll_down a{
		background: url(../img/scroll@2x.png) 50% 60% no-repeat;
		background-size: 27px 15px;
	}
	.product_read_more a{
		background: #777 url(../img/btn_shape@2x.png) no-repeat;
		background-position: calc(100% - 10px) 50%;
		background-size: 15px 20px;
	}
	.product_read_more a:hover{
		background: #3971bd url(../img/btn_shape_s@2x.png) no-repeat;
		background-position: calc(100% - 5px) 50%;
		background-size: 15px 20px;
	}
	.contact_us_area{
	    background: url(../img/footer_logo@2x.png) 0 0 no-repeat;
    	background-size: auto 40px;
	}
}