*, *:before, *:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Roboto', Helvetica, Arial,'微軟正黑體', sans-serif;
	background: #d3e3ee;
}
header {
	position:fixed;
	top:0;
	left:0;
	padding:10px;
	width:100%;
	height:80px;
	background:rgba(255,255,255,0);
	z-index:999;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
header.smaller {
	height:65px;
	background:rgba(255,255,255,1);
}
.head_logo {
	position:relative;
	margin:0 auto;
	width:100%;
	max-width:1280px;
}
.logo {
	width: 150px;
    margin-left: 45px;
    margin-top: 50px;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.logo.smaller {
	width:100px;
	margin-left: 5px;
    margin-top: 0px;
}
.main-container {
	padding: 0px;
	width:100%;
	max-height: 960px;
}
.carousel-indicators {
	bottom: 0;
}
.carousel-control.right,
.carousel-control.left {
	background-image: none;
}
.carousel .item {
	min-height: 350px; 
	width:100%; 
	background: #fff;
}
.carousel .item img {
	max-height: 960px;
    max-width: 2043px;
    margin: 0 auto;
}
.carousel-caption {
    bottom: 50px;
}
.carousel-caption h3 {
	padding: 0;
	font-size: 32px;
	font-weight: bold;
	text-shadow: 0 2px 5px rgba(0,0,0,.8);
}
.carousel .icon-container {
	display: inline-block;
	font-size: 25px;
	line-height: 25px;
	padding: 1em;
	text-align: center;
	border-radius: 50%;
}
.carousel-caption button {
	border-color: #00bfff;
	margin-top: 1em; 
}

/* Animation delays */
.carousel-caption h3 {
	animation-delay: 0.5s;
}
.carousel-caption h4 {
	animation-delay: 0.7s;
}
.carousel-caption button {
	animation-delay: 0.9s;
}
.carousel-caption .btn {
    text-shadow: none;
    background-color: rgba(255, 255, 255, 0.8);
    color: #337ab7;
    border: 0;
    font-weight: bold;
    padding: 10px 50px;
}
.carousel-caption .btn:hover {
    text-shadow: none;
    background-color: rgba(255, 255, 255, 0.4);
    color: #337ab7;
    border: 0;
    font-weight: bold;
    padding: 10px 50px;
}
h1 {
  text-align: center;  
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
}
.p {
  padding-top: 125px;
  text-align: center;
}

.p a {
  text-decoration: underline;
}
.top_desktop {
	display: block !important;
}
.top_mobile {
	display: none !important;
}
.menu_country {
	position: relative;
	margin: 0px auto 20px auto;
	padding: 20px 0 20px 0;
	width: 100%;
	max-width: 1200px;
	text-align: center;
	font-size: 16px;
	color: #a5bbd5;
	border-bottom: 1px dotted #a5bbd5;
}
.menu_country a {
	margin: 0 20px;
	color: #337ab7;
}
.page_title {
	position: relative;
	margin: 0 auto;
	width: 100%;
	font-size: 24px;
	font-weight: bold;
	color: #337ab7;
	text-align: center;
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
 
.clearfix:after {
	clear: both;
}

.codrops-header {
	margin: 0 auto;
	padding: 2em;
	text-align: center;
}

.codrops-header h1 {
	margin: 0;
	font-weight: 300;
	font-size: 2.5em;
	line-height: 1.3;
}

.codrops-header h1 span {
	display: block;
	padding: 0 0 0.6em 0.1em;
	font-size: 60%;
	opacity: 0.7;
}

/* To Navigation Style */
.codrops-top {
	width: 100%;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.69em;
	line-height: 2.2;
}

.codrops-top a {
	display: inline-block;
	padding: 0 1em;
	text-decoration: none;
	letter-spacing: 1px;
}

.codrops-top span.right {
	float: right;
}

.codrops-top span.right a {
	display: block;
	float: left;
}

.codrops-icon:before {
	margin: 0 4px;
	text-transform: none;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	font-family: 'codropsicons';
	line-height: 1;
	speak: none;
	-webkit-font-smoothing: antialiased;
}

.codrops-icon-drop:before {
	content: "\e001";
}

.codrops-icon-prev:before {
	content: "\e004";
}

.related {
	text-align: center;
	font-size: 1.5em;
}

@media screen and (max-width: 25em) {

	.codrops-icon span {
		display: none;
	}

}

.icon-link {
	z-index: 100;
	position: absolute;
	left: 5px;
	bottom: 5px;
	width: 32px;
}
.icon-link img {
	width: 100%;
	vertical-align: top;
}
.icon-link--twitter {
	left: auto;
	right: 5px;
}
.arrow {
	text-align: center;
	margin: 0;
	position: absolute;
	z-index: 10;
	bottom: 20%;
	left: 0;
	right: 0;
}
.bounce {
	-moz-animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* Common style */
.grid {
	margin: 20px auto 50px auto;
	max-width: 1200px;
	width: 100%;
}

.grid a {
	float: left;
	width: 33.3%;
	color: #333;
}

.grid a:nth-child(2) {
	margin: 30px 0 -30px 0;
}
.grid a:nth-child(5) {
	margin: 30px 0 -30px 0;
}
.grid a:nth-child(8) {
	margin: 30px 0 -30px 0;
}
.grid a:nth-child(11) {
	margin: 30px 0 -30px 0;
}

.grid figure {
	position: relative;
	overflow: hidden;
	margin: 10px;
	height: 500px;
	background: #ffffff;
}

.grid figure img {
	position: relative;
	display: block;
	width: 100%;
	opacity: 0.7;
	margin-top: 160px;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.grid figure:hover img {
	position: relative;
	width: 150%;
	opacity: 1;
	margin-top: -28px;
	margin-left: -25%;
}

.grid figcaption {
	position: absolute;
	top: 0;
	z-index: 11;
	padding: 10px;
	width: 100%;
	text-align: center;
	background: #265fa2;
}

.grid figcaption h2 {
	margin: 0 0 20px 0;
	color: #ffffff;
	letter-spacing: 1px;
	font-weight: 700;
	font-size: 130%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.grid figcaption ul, .grid figcaption p {
	padding: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	text-align: left;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}
.grid figcaption ul {
	padding-left: 20px;
	font-size: 12px;
	font-weight: 300;
	color: #d7dfeb;
}

.grid figcaption h2,
.grid figcaption ul,
.grid figcaption p {
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
}

.grid figure button {
	position: absolute;
	bottom: 4%;
    left: 15px;
    right: 15px;
    margin: 0 auto;
    padding: 8px 20px;
    width: 80%;
	border: 0;
	outline: 0;
	background-color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}

.grid figure:hover button {
	color: #fff;
	background-color: #265fa2;
}

.grid figcaption,
.grid figcaption h2,
.grid figcaption ul,
.grid figcaption p,
.grid figure button {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* Style for SVG */
.grid svg {
	position: absolute;
	top: -1px; /* fixes rendering issue in FF */
	z-index: 10;
	width: 100%;
	height: 90%;
}

.grid svg path {
	fill: #265fa2;
}

/* Hover effects */
.grid a:hover figure img {
	opacity: 1;
}

.grid a:hover figcaption h2 {
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
}
.grid a:hover figcaption ul,
.grid a:hover figcaption p {
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
}

.grid a:hover figcaption ul, .grid a:hover figcaption p {
	opacity: 0;
	display: none;
}
.demo-1 .grid figure button {
	bottom: 0;
	left: 50%;
	border: 3px solid #fff;
	background: transparent;
	color: #fff;
	opacity: 1;
	-webkit-transform: translateY(-50%) translateX(-50%) scale(1);
	transform: translateY(-50%) translateX(-50%) scale(1);
}
/* Individual styles */
.demo-1 body {
	background: #3498db;
}

.demo-1 .grid a:hover figure button {
	opacity: 1;
	border: 3px solid #3498db;
	background: #3498db;
	color: #fff;
	-webkit-transform: translateY(-50%) translateX(-50%) scale(1.2);
	transform: translateY(-50%) translateX(-50%) scale(1.2);
}
.products_term {
	position: relative;
    width: 100%;
    background: #fff;
}
.products_term ul {
	padding: 20px 25px 15px 25px;
    font-size: 12px;
    color: #666;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 0px auto;
}
footer {
	position:relative;
	margin:0px auto;
	padding:10px 0;
	width:100%;
	background:#efefef;
	font-size:12px;
	color:#666;
}
footer a {
	color:#666;
}
.footer_info {
	position:relative;
	margin:0 auto;
	width:100%;
	max-width:1000px;
}
.copyright {
	text-align:left;
}
.stock {
	text-align:center;
}
.term {
	text-align:right;
}
.grid a:hover .jp01 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .jp02 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .jp04 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .jp05 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .jp06 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .jp08 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .jp09 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .jp10 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .jp11 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .jp12 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .jp14 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .kr02 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .kr03 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .kr04 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .kr05 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .kr06 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .tw01 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .tw02 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .tw03 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid a:hover .tw04 figcaption h2 {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.grid .oneday figcaption {
	background: #43adbd;
}
.grid .oneday svg path {
	fill: #43adbd;
}

.grid .oneday:hover button {
	background-color: #43adbd !important;
}
.grid .tw01 svg path {
	fill: #c34827;
}
.grid .tw01 figcaption {
	background: #c34827;
}
.grid .tw01:hover button {
	background-color: #c34827 !important;
}
.grid .tw02 svg path {
	fill: #c34827;
}
.grid .tw02 figcaption {
	background: #c34827;
}
.grid .tw02:hover button {
	background-color: #c34827 !important;
}
.grid .tw03 svg path {
	fill: #c34827;
}
.grid .tw03 figcaption {
	background: #c34827;
}
.grid .tw03:hover button {
	background-color: #c34827 !important;
}
.grid .tw04 svg path {
	fill: #c34827;
}
.grid .tw04 figcaption {
	background: #c34827;
}
.grid .tw04:hover button {
	background-color: #c34827 !important;
}
.grid .fit figcaption {
	background: #bd4371;
}
.grid .fit svg path {
	fill: #bd4371;
}
.grid .fit:hover button {
	background-color: #bd4371 !important;
}
/* Media Queries */
/* Let's redefine the width of each anchor and the margins */

@media screen and (max-width: 1024px) {
	.grid a {
		width: 33.333%;
	}

	.copyright {
		text-align:center;
	}
	.stock {
		text-align:center;
	}
	.term {
		text-align:center;
	}
	.carousel .item img {
		width: 120%;
		margin-left: -10%;
	}
	.grid figure {
		height: 530px;
	}
	.grid figure img {
		margin-top: 265px;
	}
	.grid figure:hover img {
		position: relative;
		width: 190%;
		opacity: 1;
		margin-top: 0px;
		margin-left: -45%;
	}
	.grid svg {
		position: absolute;
		top: 0px; /* fixes rendering issue in FF */
		z-index: 10;
		width: 100%;
		height: 100%;
	}
}

@media screen and (max-width: 768px) {
	.menu_country {
		position: fixed;
		bottom: 0;
		margin: 0px auto 0px auto;
		padding: 10px 0px;
		border-bottom: 0px dotted #a5bbd5;
		z-index: 999;
		background: #fff;
	}
	.grid {
		max-width: 700px;
	}

	.grid a {
		width: 50%;
	}

	.grid a:nth-child(3n-1) {
		margin: 0;
	}

	.grid a:nth-child(even) {
		margin: 30px 0 -30px 0;
	}


	.grid figcaption h2 {
		font-size: 130%;
		margin-bottom: 20px;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}

	.grid figcaption p {
		margin: 0;
		padding: 0 10px;
	}
	footer {
		margin-bottom: 42px;
	}
}

@media screen and (max-width: 557px) {
	.logo {
		width: 100px;
		margin-left: 10px;
		margin-top: 10px;
	}
	.carousel-caption {
		bottom: 10px;
		padding-top: 10px;
		padding-bottom: 10px;
		left: 10%;
		right: 10%;
	}
	.carousel .item {
		min-height: 200px;
		width: 100%;
		background: #fff;
	}
	.carousel-caption button {
		margin-top: 0;
	}
	.carousel-caption h3 {
		font-size: 20px;
	}
	.index_top img {
		width: 100% !important;
		margin-left: 0% !important;
	}
	.top_desktop {
		display: none !important;
	}
	.top_mobile {
		display: block !important;
	}
	.carousel .item img {
		width: 140%;
		margin-left: -20%;
	}
	.h4, h4 {
		font-size: 14px;
	}
	.grid {
		max-width: 520px;
	}
	.grid figure {
		height: 95%;
	}
	.grid svg {
		height: 85%;
	}
	.grid figure img {
		opacity: 1;
	}
	.grid a {
		width: 100%;
	}
	.grid a:nth-child(even) {
		margin: 0;
	}
	.grid figcaption p {
		font-size: 14px;
		line-height: 24px;
	}
	.grid figcaption h2 {
		font-size: 18px;
		margin-bottom: 10px;
		-webkit-transform: translateY(15px);
		transform: translateY(15px);
	}
	.content_list {
		font-size: 12px;
		line-height: 22px;
		margin: 15px 0px;
	}
}