/*================================================*/
/*----- GENERAL -----*/
/*================================================*/

* {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;	
}

:root {
	--safe-area-inset-lt: env(safe-area-inset-left);
	--safe-area-inset-rt: env(safe-area-inset-right)
}

html body {
	background-color: var(--white);
	color: var(--dark)
}

body {
	font-size: 16px;
	font-weight: 500;
	font-family: Montserrat, sans-serif;
	line-height: 1.5;
	color: #091e32;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility
}

body:lang(zh-TW) {
	font-family: Montserrat, 'Noto Sans TC', sans-serif	
}

body:lang(zh-TW) {
	letter-spacing: 0.02em
}

@media only screen and (max-width: 767px) {
	body {
		font-size: 14px
	}
}

.container {
	padding: 0 25px;
	padding-left: calc(25px + constant(safe-area-inset-left));
	padding-right: calc(25px + constant(safe-area-inset-right));
}

@supports (padding: calc(max(0px))) {
	.container {
		padding-left: calc(max(20px, env(safe-area-inset-left)));
		padding-right: calc(max(20px, env(safe-area-inset-right)));	
	}	
}

@media only screen and (max-width: 767px) {
	.container {
		padding: 0 15px;
		padding-left: calc(15px + constant(safe-area-inset-left));
		padding-right: calc(15px + constant(safe-area-inset-right));									
	}
}

a {
	color: var(--primary);
	cursor: pointer
}

a:hover {
	text-decoration: none
}

html body {
	min-height: 100vh
}

html.noscroll {
	overflow-y: scroll !important;
	overflow: hidden !important
}

body {
	--white: #fff;
	--black: #000;
	--red: #d82323;
	--orange: #f48f34;
	--yellow: #f2d230;
	--green: #54c677;
	--cyan: #1fbadd;
	--blue: #3683f3;
	--purple: #9191f9;
	--dark: #091e32;
	--dark-gray: #2b3d4f;
	--smoke-gray: #7a859e;
	--blue-gray: #6f8bb8;
	--soft-blue: #daeaf8;
	--cloud: #eef7ff;
	--light: #f2f6fc;
	--primary: #1fbadd;
	--secondary: #6f8bb8;
	--text-main: #2b3d4f;
	--text-info: #2b3d4f;
	--tab: #88a8b1
}

.button {
	background-color: var(--primary);
	color: #fff;
	-webkit-transition: .2s;
	transition: .2s
}

.button:hover {
	background-color: var(--dark);
	color: #fff
}

.icon path {
	-webkit-transition: .2s;
	transition: .2s
}

button {
	border: 0;
	padding: 0;
	background: none;
	color: inherit;
	cursor: pointer	
}

img {
	pointer-events: none
}

svg {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1.0, 1.0)
}

sup {
	font-size: .5em;
	bottom: -.3em;
	position: relative;
	vertical-align: top;
	top: auto
}

.element::-webkit-scrollbar {
	display: none
}


/*================================================*/
/*----- MAIN-NAV -----*/
/*================================================*/

#main-nav.is-fixed {
	position: fixed
}

#main-nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-height: 70px;
	background-color: var(--light);
	z-index: 1000;
	overflow-y: hidden;
	-webkit-transition: background-color .2s;
	transition: background-color .2s
}

@media only screen and (max-width: 767px) {
	#main-nav {
		height: 50px;
		max-height: none
	}
}

#main-nav .navigation-content {
	margin: 0 auto;
	max-width: 980px;
	height: 70px
}

@media only screen and (max-width: 767px) {
	#main-nav .navigation-content {
		padding: 0;
		width: 100%;
		height: 100%;
		position: absolute
	}
}

html.noscroll body {
	height: 100%;
	overflow: hidden
}

#main-nav .main-nav-logo {
	display: inline-block;	
	position: relative;
	height: 70px;	
	float: left;
	z-index: 1
}

#main-nav .main-nav-link-logo {
	top: 0;
	left: 0;
	display: inline-block
}

#main-nav .main-nav-link-logo:hover {
	opacity: .8
}

#main-nav .main-nav-link-logo {
	background-size: 294px 70px;
	background-image: url("/assets/nav-logo-l.svg");
	background-repeat: no-repeat;
	width: 294px;
	height: 70px;
	-webkit-transition: opacity .2s;
	transition: opacity .2s
}

@media only screen and (max-width: 767px) {
	#main-nav .main-nav-link-logo {
		display: none
	}	
}

#main-nav .main-nav-link-logo-name {
	position: absolute;
	height: 1px;
	width: 1px;
	overflow: hidden;	
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(0px 0px 99.9% 99.9%);
	clip-path: inset(0px 0px 99.9% 99.9%);
	padding: 0;
	border: 0
}

/* nav-mobile */
#main-nav .main-nav-mobile {
	display: none;
	position: absolute;
	height: 50px;
	width: 100%;
	top: 0;
	left: 0
}
@media only screen and (max-width: 767px) {
	#main-nav .main-nav-mobile {
		display: block
	}
}

@media only screen and (max-width: 767px) {
	#main-nav .main-nav-logo-m {
		position: absolute;
		left: 50%;
		width: 56px;
		height: 50px;
		margin-left: -28px;
		opacity: 1;
		-webkit-transition: opacity .2s;
		transition: opacity .2s
	}
	
	#main-nav .main-nav-logo-m:hover {
		opacity: .8
	}
}

#main-nav .main-nav-link-logo-m {
	background-size: 56px 50px;
	background-image: url("/assets/nav-logo-small-l.svg");
	background-repeat: no-repeat;
	position: absolute;
	width: 56px;
	height: 50px;
	display: inline-block
}

#main-nav .menuicon {
	display: none
}

#main-nav .menuicon:hover {
	opacity: .8
}

@media only screen and (max-width: 767px) {
	#main-nav .menuicon {
		display: block;
		position: absolute;
		cursor: pointer;
		top: 0;
		left: 10px;
		width: 50px;
		height: 50px
	}	
}

#main-nav .burger-line {
	background-color: var(--dark-gray);
}

#main-nav .burger-line {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 1px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transition: .3s;
	transition: .3s
}

.burger-line:nth-child(1) {
	top: 20px
}

.burger-line:nth-child(2) {
	top: 30px
}

.menuicon.checked .burger-line:nth-child(1) {
	top: 25px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.menuicon.checked .burger-line:nth-child(2) {
	top: 25px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

#main-nav .nav-menu-list {
	display: inline-block;
	margin-top: 14px;
	width: auto
}

@media only screen and (min-width: 768px) {
	#main-nav .nav-menu-list {
		float: right
	}
}

@media only screen and (max-width: 767px) {
	#main-nav .nav-menu-list {
		display: block;
		position: absolute;
		top: 50px;
		left: 0;
		right: 0;
		bottom: 0;
		border: 0;
		height: auto;
		padding: 25px 35px;
		margin: 0 auto;
		text-align: left;
		overflow-y: auto		
	}
}


#main-nav .nav-menu-list li {
	display: inline-block
}

@media only screen and (max-width: 767px) {
	#main-nav .nav-menu-list li {
		display: block
	}
}

@media only screen and (max-width: 767px) {
#main-nav {
		overflow-y: hidden;
		-webkit-transition: height .4s, background-color .4s cubic-bezier(.5, .2, .2, 1);
		transition: height .4s, background-color .4s cubic-bezier(.5, .2, .2, 1)
	}	
}

@media only screen and (max-width: 767px) {
	#main-nav.is-active {
		height: 100%;
		background-color: #f2f6f9;
		-webkit-transition: height .4s, background-color .4s cubic-bezier(.5, .2, .2, 1);
		transition: height .4s, background-color .4s cubic-bezier(.5, .2, .2, 1)		
	}
}

#main-nav .nav-menu-link {
	display: inline-block;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: .04em;
	color: var(--dark-gray);
	padding: 10px 0;
	margin-left: 20px;
	position: relative;
	text-decoration: none;
	-webkit-transition: transform .3s cubic-bezier(.15,.6,0,1.8), color .2s ease-in-out;
	transition: transform .3s cubic-bezier(.15,.6,0,1.8), color .2s ease-in-out
}

#main-nav .nav-menu-link:hover {
	color: var(--primary);
	-webkit-transform: scale(1.05);
	transform: scale(1.05)
}

#main-nav .nav-menu-item:first-child .nav-menu-link {
	margin-left: 0
}

@media only screen and (max-width: 767px) {
	#main-nav .nav-menu-link {
		padding: 8px 10px;
		margin: 0
	}	
}

@media only screen and (max-width: 767px) {
	#main-nav .nav-menu-list{
		opacity: 0;
		transition-delay: .2s;
		-webkit-transition: opacity 1s ease-in-out;
		transition: opacity 1s ease-in-out

	}
	
	#main-nav.is-active .nav-menu-list {
		opacity: 1
	}
	
	#main-nav .nav-menu-item {
		pointer-events: none;
		transform: translateX(-30px);
		opacity: 0;
		-webkit-transition: transform .6s cubic-bezier(.5, .2, .1, 1);
		transition: opacity .6s, transform .6s cubic-bezier(.5, .2, .1, 1)
	}
		
	#main-nav.is-active .nav-menu-item {
		transform: translateX(0);
		opacity: 1;
		pointer-events: auto;
		-webkit-transition: transform 1.2s cubic-bezier(.1, .6, .2, 1);
		transition: opacity .6s, transform 1.2s cubic-bezier(.1, .6, .2, 1)
	}
	
	#main-nav.is-active .nav-menu-item:nth-child(1) {
		-webkit-transition-delay: .2s;
		transition-delay: .2s
	}
	
	#main-nav.is-active .nav-menu-item:nth-child(2) {
		-webkit-transition-delay: .3s;
		transition-delay: .3s
	}
	
	#main-nav.is-active .nav-menu-item:nth-child(3) {
		-webkit-transition-delay:.4s;
		transition-delay: .4s
	}
	
	#main-nav.is-active .nav-menu-item:nth-child(4) {
		-webkit-transition-delay: .5s;
		transition-delay: .5s
	}
	
	#main-nav.is-active .nav-menu-item:nth-child(5) {
		-webkit-transition-delay: .6s;
		transition-delay: .6s
	}
	
	#main-nav .nav-menu-link {
		position: relative;
		padding: 18px 10px;
		line-height: 1.2;
		font-size: 24px;
		font-weight: 700;
		text-decoration: none;
		white-space: nowrap;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		-webkit-transition: transform .3s cubic-bezier(.15,.6,0,1.8), color .2s ease-in-out;
		transition: transform .3s cubic-bezier(.15,.6,0,1.8), color .2s ease-in-out		
	}
	
}

#nav-placeholder {
	height: 70px
}

@media only screen and (max-width: 767px) {
	#nav-placeholder {
		height: 50px
	}
}

/*================================================*/
/*----- SUB-NAV -----*/
/*================================================*/

#sub-nav {
	position: relative;
	width: 100%;
	height: 55px;
	top: 0;
	left: 0;
	z-index: 999
}

@media only screen and (max-width: 767px) {
	#sub-nav {
		height: 84px
	}
}

.sub-nav-wrapper {
	position: relative;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	z-index: 1	
}

.sub-nav-background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0
}

.theme-product .sub-nav-background {
	background-color: #fff
}

.sub-nav-border .sub-nav-background:after {
	content: "";
	display: block;
	position: relative;
	margin: 0 auto;
	top: 100%;
	width: 100%;
	height: 1px;
	z-index: 1
}

.sub-nav-border .sub-nav-background:after {
	background-color: var(--soft-blue)
}

.sub-nav-content {
	margin-left: auto;
	margin-right: auto;
	max-width: 980px;
	position: relative;
	overflow: hidden;
	z-index: 1
}

.sub-nav-content:before,
.sub-nav-content:after {
	content: ' ';
	display: table	
}

.sub-nav-content:after {
	clear: both
}

.sub-nav-title {
	display: block;
	float: left;
	position: relative;
	height: 55px;
	padding: 0;
	top: 14px
}
.sub-nav-title h1 {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-gray)
	
}

@media only screen and (max-width: 767px) {
	.sub-nav-title {
		float: none
	}
}

.sub-nav-title-s {
	font-size: 18px
}

.breadcrumbs {
	font-size: 13px;
	font-weight: 500;
	margin-top: 18px;
	position: relative;
	float: right
}

@media only screen and (max-width: 767px) {
	.breadcrumbs {
		font-size: 12px;
		float: left;
		margin-top: 0;
		margin-bottom: 10px
	}
}

.breadcrumbs-item {
	font-size: 13px;
	float: left;
	overflow: hidden;
	color: var(--dark-gray)
}

.breadcrumbs-item:after {
	content: '/';
	font-weight: 700;
	color: var(--primary);
	padding-left: 8px;
	padding-right: 8px
}

.breadcrumbs-item:last-child:after {
	content: none
}

.breadcrumbs a {
	color: var(--dark-gray);
	-webkit-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out
}

.breadcrumbs a:hover {
	color: var(--primary)
}

/*================================================*/
/*----- TYPOGRAPHY -----*/
/*================================================*/

.section {
	margin-left: auto;
	margin-right: auto;
	position: relative
}
.section-content {
	margin-left: auto;
	margin-right: auto;
	width: 980px;
}

@media only screen and (max-width: 1060px) {
	.section-content {
		margin-left: auto;
		margin-right: auto;
		width: 720px;
	}
}

@media only screen and (max-width: 767px) {
	.section-content {
		margin-left: auto;
		margin-right: auto;
		width: 90%;
	}
}

.headline-container {
	margin: 0 auto;
	max-width: 980px;
	text-align: left
}

@media only screen and (max-width: 1060px) {
	.headline-container {
		width: 720px
	}
}

@media only screen and (max-width: 767px) {
	.headline-container {
		width: 90%
	}
}

.section-hero {
	padding-top: 120px;
	padding-bottom: 120px
}

@media only screen and (max-width: 767px) {
	.section-hero {
		padding: 80px 0
	}
}

.hero-headline {
	position: relative;
	display: inline-block;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
	color: var(--dark-gray);
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.hero-headline {
		font-size: 36px
	}
}

.hero-headline:after {
	content: '';
	position: absolute;
	width: calc(100% + 20px);
	height: 8px;
	left: -10px;
	bottom: 0;
	background-color: var(--soft-blue);
	display: block
}

.typography-headline {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.5;
	max-width: 500px		
}

@media only screen and (max-width: 767px) {
	.typography-headline {
		font-size: 32px
	}	
}

.typography-headline-02 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.5;	
}

.typography-intro {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

@media only screen and (max-width: 767px) {
	.typography-intro {
		font-size: 16px
	}
}

.typography-headline+.typography-intro {
	margin-top: 20px
}

.typography-intro+p {
	margin-top: 30px
}

.text-center {
	text-align: center
}

.section {
	--block-padding: 50px;
	--block-border-radius: 20px	
}


@media only screen and (max-width: 1024px) {
	.section {
		--block-padding: 0px;
		--block-border-radius: 15px	
	}
}

@media only screen and (max-width: 767px) {
	.section {
		--block-padding: 0px;
		--block-border-radius: 0px	
	}
}

.large-25 {
	width: 25%
}
.large-20 {
	width: 20%
}
.large-33 {
	width: 33.333%
}
.large-36 {
	width: 36%
}
.large-50 {
	width: 50%
}
.large-72 {
	width: 72%
}
.large-17 {
	width: 17%
}
.large-4 {
	width: 25%
}
ul+h1,
ul+h2,
ul+h3,
ul+h4,
ul+h5 {
	margin-top: 30px
}
ul+p,
ul+p,
ul+p,
ul+p,
ul+p {
	margin-top: 20px
}

h1+p,
h2+p,
h3+p,
h4+p,
h5+p {
	margin-top: 15px
}

.content-divide:after {
	border-right: 1px solid rgba(210, 210, 210, 0.2);
	content: " ";
	position: absolute;
	right: 20px;
	top: 0;
	height: 100%;	
}

@media only screen and (max-width: 767px) {
	.content-divide:after {
		border-right: 1px solid rgba(210, 210, 210, 0.2);
		content: " ";
		position: absolute;
		right: 20px;
		top: 0;
		height: 100%;
		display: none			
	}
}
.row {
	margin-left: auto;
	margin-right: auto;
	z-index: 1
}

.sub-row {
	display: inline-block
}
@media only screen and (max-width: 1024px) {
	.sub-row {
		display: block
	}	
}
@media only screen and (max-width: 1024px) {
	.medium-72 .sub-row {
		display: inline-block
	}
	.medium-72 .offset-left-2 {
		margin-left: 20px
	}
}
@media only screen and (max-width: 720px) {
	.medium-72 .offset-left-2 {
		margin-left: 0;
		margin-top: 20px
	}	
}
@media only screen and (max-width: 1024px) {
	.medium-72 .offset-top-1 {
		margin-top: 0
	}
}	
.service-content .column:nth-child(2n+1) {
	clear: none
}
.section-brand-value .column:nth-child(2n+1) {
	clear: both
}
.offset-top-0 {
	margin-top: 80px
}
@media only screen and (max-width: 1024px) {
	.offset-top-1 {
		margin-top: 20px
	}			
}
@media only screen and (max-width: 767px) {
	.offset-top-0 {
		margin-top: 0
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.medium-33 {
		width: 33.333%
	}
	.medium-36 {
		width: 36%
	}
	.medium-50 {
		width: 50%
	}
	.medium-72 {
		width: 72%
	}
	.medium-100 {
		width: 100%
	}
	
}
@media only screen and (max-width: 767px) {
	.column-first {
		margin-left: 0
	}
	.small-24 {
		width: 24%
	}
	.small-50 {
		width: 50%
	}
	.small-48 {
		width: 48%
	}
	.small-100 {
		width: 100%
	}	
}
@media only screen and (min-width: 721px) and (max-width: 1024px) {
	.medium-2 {
		width: 50%
	}
}
@media only screen and (max-width: 720px) {
	.small-1 {
		width: 100%
	}
}

/*================================================*/
/*----- HOME -----*/
/*================================================*/

.section-product-slider {
	overflow: hidden
}

.section-ja-series {
	/* background: #fff */
}

.section-mx-series {
	/* background: #111 */
}

.slider-product-wrapper {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	background-color: var(--light);
	border-radius: 22px;
	align-items: center
}

@media only screen and (max-width: 767px) {
	.slider-product-wrapper {
		border-radius: 0
	}
}

.section-mx-series .slider-product-wrapper {
	background-color: #111
}

.product-copy-wrapper {
	position: relative;
	margin: 0;
	padding: 0;
	z-index: 3
}

.slider-product-right .product-copy-wrapper {
	max-width: 33.333%;
	flex-basis: 33.333%;
	margin-left: 5%
}

.slider-product-center .product-copy-wrapper {
	max-width: 100%;
	flex-basis: 100%;
	top: 50px
}

.product-copy-wrapper {
	color: var(--dark-gray)
}

.bg-dark .product-copy-wrapper {
	color: #fff
}

.product-copy-wrapper {
	text-align: center
}

.typography-product-newtag {
	font-weight: 700;
	font-size: 11px;
	letter-spacing: .2em;
	line-height: 1.2;
	text-indent: .2em;
	text-align: center;
	display: inline-block;
	color: #fff;
	background-color: var(--secondary);
	padding: 5px 10px;
	border-radius: 12px
}

@media only screen and (max-width: 1024px) {
	.typography-product-newtag {
		font-size: 9px
	}
}

.typography-product-headline {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-main);
	margin-top: 10px;
	margin-bottom: 10px
}

.bg-dark .typography-product-headline {
	color: #fff
}

.typography-product-headline .typography-product-series {
	display: block;
	margin-bottom: 10px
}

.typography-eyebrow {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px
}

.typography-link {
	display: inline-block;
	position: relative;
	margin-top: 10px
}

.link-button {
	display: -webkit-flex;
	display: flex;
	border-radius: 50px;
	height: 45px;
	width: 170px;
	border: 2px solid var(--primary);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.5;
	color: var(--primary);
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	margin: 0 auto;
	-webkit-transition: transform .3s cubic-bezier(.15,.6,0,1.8), color .2s ease-in-out;
	transition: transform .3s cubic-bezier(.15,.6,0,1.8), color .2s ease-in-out
}

@media only screen and (max-width: 1024px) {
	.link-button {
		font-size: 12px;
		height: 40px;
		width: 150px
	}
}

.link-button:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05)
}

.bg-dark .link-button {
	color: #00eaff;
	border-color: #00eaff
}

.product-image {
	padding: 0;
	margin: 0;
	position: relative
}

.image-center {
	margin-left: auto;
	margin-right: auto
}

.section-product-slider {
	perspective: 1000;
	backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transform:translate3d(0,0,0);	
	-webkit-backface-visibility: hidden;	
	-webkit-transform-style: preserve-3d
}

.slider-product-right .product-image {
	max-width: 56%;
	flex-basis: 56%
}

.slider-product-center .product-image {
	max-width: 50%;
	flex-basis: 50%
}

.slider-product-right .product-image .image {
	position: relative;
	margin: 0;
	width: 100%;
	height: 100%
}

.slider-product-center .product-image .image {
	position: relative;
	margin: 0;
	width: 100%;
	height: 100%
}

.slider-product-wrapper .product-image .image {
	pointer-events: none
}

.image-ja-series-chiller {
	top: 30px;
	left: 20px
}

.image-jw-series-chiller {
	top: 30px;
	left: 20px
}

@media only screen and (max-width: 1024px) {
	.slider-product-right .product-copy-wrapper {
		max-width: 33.333%;
		flex-basis: 33.333%;
	}

	.slider-product-right .product-image {
		max-width: 56%;
		flex-basis: 56%
	}	
	
	.slider-product-center .product-copy-wrapper {
		max-width: 100%;
		flex-basis: 100%
	}

	.slider-product-center .product-image {
		max-width: 100%;
		flex-basis: 100%
	}	
	
	.slider-product-center .product-image .image {
		width: 560px;
		height: 368px;
		left: 50%;
		margin-left: -280px
	}
	
	.image-ja-series-chiller {
		top: 30px;
		left: 40px
	}	
	
	.typography-product-headline {
		font-size: 34px;
		font-weight: 700;
		line-height: 1;
		margin-top: 10px;
		margin-bottom: 10px
	}	
	
	.typography-eyebrow {
		font-size: 16px;
		font-weight: 500;
		margin-bottom: 10px
	}		
}

@media only screen and (max-width: 767px) {
	.slider-product-right .product-copy-wrapper {
		top: 20px;
		left: 0;
		margin-left: 0
	}
	
	.slider-product-right .product-copy-wrapper {
		max-width: 100%;
		flex-basis: 100%	
	}
	
	.slider-product-right .product-image {
		max-width: 100%;
		flex-basis: 100%
	}
	
	.slider-product-right .product-image .image {
		width: 360px;
		height: 236px;
		left: 50%;
		margin-left: -180px
	}
	
	.slider-product-center .product-copy-wrapper {
		max-width: 100%;
		flex-basis: 100%;
		top: 20px;
		left: 0		
	}	
	
	.slider-product-center .product-image .image {
		width: 360px;
		height: 236px;
		left: 50%;
		margin-left: -180px
	}	
	
	.text-center-small {
		text-align: center
	}
	
	.image-ja-series-chiller {
		top: 0
	}
	
	.image-jw-series-chiller {
		top: 0;
		left: 0
	}
	
	.typography-product-headline {
		font-size: 32px;
		font-weight: 700;
		line-height: 1;
		margin-top: 10px;
		margin-bottom: 10px
	}	
	
	.typography-eyebrow {
		font-size: 16px;
		font-weight: 500;
		margin-bottom: 10px
	}	

}

.gl-hero-gallery {
	height: 100%;
	overflow: hidden;
	position: relative;
	left: 0;
	padding-top: 30px;
	z-index: 10
}

.slider-content-container {
	max-width: 1200px;
	width: calc(100vw - 100px);
	height: 100%;
	margin: 0 auto;
	overflow: hidden
}

@media only screen and (max-width: 767px) {
	.slider-content-container {
		width: 100vw
	}
}

.bx-wrapper, .bx-viewport, .bxslider {
	height: 600px !important
}

@media only screen and (max-width: 767px) {
	.bx-wrapper, .bx-viewport, .bxslider {
		height: 450px !important
	}	
}

.gallery-item,
.bg-wrapper {
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}	

.section-promos {
	margin: 0 auto;
	padding-top: 30px;
	overflow: hidden;
	width: calc(100% - var(--safe-area-inset-lt) - var(--safe-area-inset-rt)) ;
	padding-left: env(safe-area-inset-left);
	padding-right: env(safe-area-inset-right)	
}

.section-promos {
	background-color: var(--white)
}

.promos-module-container {
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 1fr 1fr;
	padding: 20px
}

@media only screen and (max-width: 767px) {
	.promos-module-container {
		grid-template-columns: 1fr;
	}
}

.promos-module {
	position: relative;
	height: 580px
}

@media only screen and (max-width: 1024px) {
	.promos-module {
		height: 490px
	}
}

@media only screen and (max-width: 767px) {
	.promos-module {
		height: 500px
	}
}

.module-content {
	display: -webkit-flex;
	display: flex;
	position: relative;
	text-align: center;
	background-color: var(--light);
	border-radius: 18px;
	width: 100%;
	height: 580px;
	flex-direction: column;
	overflow: hidden
}

@media only screen and (max-width: 1024px) {
	.module-content {
		height: 490px
	}
}

@media only screen and (max-width: 767px) {
	.module-content {
		height: 500px
	}
}

.module-title {
	position: relative;
	display: block;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--dark);
	margin-bottom: 8px;
	text-align: center;
}

@media only screen and (max-width: 1024px) {
	.module-title {
		font-size: 28px;
	}
}

.subhead {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 18px;
}

@media only screen and (max-width: 1024px) {
	.subhead {
		font-size: 16px
	}
}

.module-button {
	display: inline-block;
	justify-content: center
}

.module-button-link {
	font-size: 14px;
	font-weight: 700;
	background-color: var(--primary);
	color: #fff;
	padding: 8px 25px;
	border-radius: 50px;
	-webkit-transition: transform .3s cubic-bezier(.15,.6,0,1.8), color .2s ease-in-out;
	transition: transform .3s cubic-bezier(.15,.6,0,1.8), color .2s ease-in-out;
	display: block
}

.module-button-link:hover {
	background-color: var(--dark);
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

@media only screen and (max-width: 1024px) {
	.module-button-link {
		font-size: 12px;
		padding: 6px 20px
	}
}

.module-copy-wrapper {
	position: relative;
	padding-left: 30px;
	padding-right: 30px
}

.module-image {
	position: absolute;
	margin: 0 auto;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.module-image .item_image {
	position: absolute;
	padding: 0;
	margin: 0;
	left: 50%;
	bottom: 0;
	-webkit-transform: translatex(-50%);
	transform: translatex(-50%)	
}

.module-image .item_image {
	width: 640px;
	height: 580px
}

@media only screen and (max-width: 1024px) {
	.module-image .item_image {
		width: 541px;
		height: 490px
	}
}

@media only screen and (max-width: 767px) {
	.module-image .item_image {
		width: 552px;
		height: 500px
	}
}

#mgo-series .item-copy-top {
	margin-top: 60px
}

@media only screen and (max-width: 1024px) {
	#mgo-series .item-copy-top {
		margin-top: 40px
	}
}

#mh-series .item-copy-top {
	margin-top: 60px
}

@media only screen and (max-width: 1024px) {
	#mh-series .item-copy-top {
		margin-top: 40px
	}
}

.new-label {
	display: inline-block;
	padding: 0px 14px;
	font-size: 11px;
	font-weight: 700;
	color: #1fbadd;
	line-height: 28px;
	border: 1px solid currentColor;
	border-radius: 20px;
}

.visually-hidden {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	padding:0 !important;
	border:0 !important;
	height: 1px !important; 
	width: 1px !important; 
	overflow: hidden;
}

.link-icon {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5	
}

/*================================================*/
/*----- ABOUT -----*/
/*================================================*/

.section-about-company {
	padding-bottom: 80px
}

.section-about-service {
	padding-bottom: 80px
}

.section-after-sales-service {
	padding-bottom: 80px
}

.section-about-company .headline {
	font-size: 20px;
	text-align: left
}

.section-about-service .headline {
	font-size: 20px;
	text-align: left
}

.section-after-sales-service .headline {
	font-size: 20px;
	text-align: left
}

/*================================================*/
/*----- PRODUCTS -----*/
/*================================================*/

.product-list-container {
	max-width: 980px;
	width: 100%;
	padding-bottom: 120px;
	margin-left: auto;
	margin-right: auto
}

.product-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 40px 20px;
	margin: 0 auto
}

@media only screen and (max-width: 1060px) {
	.product-list {
		grid-template-columns: 1fr 1fr 1fr
	}
}

@media only screen and (max-width: 767px) {
	.product-list {
		grid-template-columns: 1fr 1fr
	}
}

@media only screen and (max-width: 640px) {
	.product-list {
		grid-template-columns: 1fr
	}
}

.product-grid-tile {
	box-sizing: border-box
}

.product-grid-link {
	display: block;
	z-index: 3
}

.product-image-container {
	text-align: center;
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--soft-blue);
	border-radius: 12px;
	transition: .2s ease-in-out
}

.g-image-place {
	position: absolute;
	left: 0;
	top: 0;
	max-width: 100%;
	width: 100%;
	height: 100%;
	display: block
}

.g-image-place img {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
	margin: 0;
	padding: 0;
	max-width: 100%
}

.g-image-full {
	display: block;
	margin: 0 auto;
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out
}

.product-grid-link:hover .product-image-container img {
	transform: scale(1.05)
}

.product-name {
	text-align: center;
	margin: 0 auto;
	margin-top: 20px;
	
}

.product-name .model {
	color: var(--dark-gray);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5
}

.product-name .name {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: .04em;
	margin-top: 5px;
	color: var(--dark-gray)
}

.newtag {
	font-weight: 700;
	font-size: 9px;
	letter-spacing: .2em;
	line-height: 1.2;
	text-indent: .2em;
	text-align: center;
	display: inline-block;
	color: #fff;
	background-color: #6f8bb8;
	margin-top: 10px;
	padding: 5px 10px;
	border-radius: 12px
}

/*================================================*/
/*----- PRODUCT PAGE-----*/
/*================================================*/

.page-product {
	max-width: 980px;
	padding-top: 50px;
	padding-bottom: 50px				
}

.full-width {
	overflow: hidden;
	width: 100%
}
.section-product {	
	position: relative;
	height: 580px;
	padding-top: 100px;
	overflow: hidden
}

@media only screen and (max-width: 767px) {
	.section-product {	
		height: 520px;
		padding-top: 60px
	}	
}

.section-product-hero {
	position: relative;
	min-height: 720px;
	padding-top: 155px	
}

@media only screen and (max-width: 1024px) {
	.section-product-hero {
		min-height: 560px
	}
}

@media only screen and (max-width: 767px) {
	.section-product-hero {
		min-height: 450px;
		padding-top: 184px
	}
}

.image-wrapper {
	position: absolute;
	border: 0;
	margin: 0;
	padding: 0;
	left: calc(50% + 0px);
	right: auto;
	bottom: 0px;
	top: auto;
	z-index: 3;
	-webkit-transform: translatex(-50%);
	transform: translatex(-50%);	
}

.image-wrapper img {
	width: 720px;
	height: 480px;
	z-index: 1;
	pointer-events: none
}

@media only screen and (max-width: 767px) {
	.image-wrapper img {
		width: 540px;
		height: 360px
	}	
}

.hero-wrapper {
	position: absolute;
	height: 100%;
	width: 100%;
	justify-content: center;
	-webkit-box-pack: center;
	display: flex;
	border: 0;
	margin: 0;
	padding: 0;
	left: calc(50% + 0px);
	right: auto;
	bottom: 0px;
	top: auto;
	z-index: 3;	
	-webkit-transform: translatex(-50%);
	transform: translatex(-50%)	
}

.hero-wrapper .image-hero {
	width: 960px;
	height: 600px;
	top: 160px;
	position: absolute
}

@media only screen and (max-width: 1024px) {
	.hero-wrapper .image-hero {
		width: 720px;
		height: 450px
	}
}

@media only screen and (max-width: 767px) {
	.hero-wrapper .image-hero {
		width: 480px;
		height: 320px
	}
}

.section-hero-content {
	position: relative;
	width: calc(100% - var(--safe-area-inset-lt) - var(--safe-area-inset-rt)) ;
	padding-left: env(safe-area-inset-left);
	padding-right: env(safe-area-inset-right);
	z-index: 1
}

.section-hero-content .hero-content-container {
	margin: var(--block-padding);
	border-radius: var(--block-border-radius);
	overflow: hidden
}

.section-hero-content .hero-content-container {
	margin-top: 0
}

.section-hero-content .hero-content {
	max-height: 800px;
	min-height: 700px;
	position: relative
}

.hero-bg .hero-content {
	background-color: var(--light)	
}

@media only screen and (max-width: 767px) {
	.section-hero-content .hero-content {
		min-height: 550px;
	}
}

.hero-copy-wrapper {
	max-width: 980px;
	margin-left: auto;
	margin-right: auto
}

.hero-copy-block {
	display: block;
	max-width: 66.666%;
	margin: 0 auto;
	padding-top: 100px;
	text-align: center
}

@media only screen and (max-width: 767px) {
	.hero-copy-block {
		max-width: 90%
	}
}

.hero-bg .hero-copy-block {
	padding-top: 60px
}

.typography-hero-headline {
	position: relative;
	margin-top: 18px
}

.typography-hero-headline {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.2
}

@media only screen and (max-width: 767px) {
	.typography-hero-headline {
		font-size: 24px;
		margin-top: 9px
	}
}

.section-hero-content h3 {
	font-size: 32px;
	font-weight: 500
}

.hero-copy-block p {
	font-size: 20px;
	font-weight: 500
}

@media only screen and (max-width: 767px) {
	.hero-copy-block p {
		font-size: 18px
	}
}

.hero-image-wrapper {
	position: absolute;
	border: 0;
	margin: 0;
	padding: 0;
	left: calc(50% + 0px);
	right: auto;
	bottom: 0;
	top: auto;
	z-index: 3;
	-webkit-transform: translatex(-50%);
	transform: translatex(-50%);
}

.hero-image-wrapper {
	width: 720px;
	height: 480px
}

@media only screen and (max-width: 1024px) {
	.hero-image-wrapper {
		width: 640px;
		height: 427px
	}
}

@media only screen and (max-width: 767px) {
	.hero-image-wrapper {
		width: 480px;
		height: 320px
	}
}

.hero-image-wrapper picture {
	display: flex
}

@media only screen and (max-width: 767px) {
	.section-product {	
		height: 478px;
	}	
}

.hero-image-wrapper .hero-image {
	pointer-events: none;
}

.hero-logo {
	display: block;
	margin: 0 auto;
	width: 350px;
	height: 30px;
}

@media only screen and (max-width: 767px) {
	.hero-logo {
		width: 230px;
		height: 20px
	}
}

.gradient-text-la-series {
	background-image: linear-gradient(#8daed0, #232d34);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.product-hero-headline {
	font-size: 42px;
	font-weight: 700;
	z-index: 4	
}
@media only screen and (max-width: 767px) {
	.product-hero-headline {
		font-size: 36px;
		letter-spacing: -0.02em
	}
}
.product-headline {
	font-size: 22px;
	font-weight: 500
}
@media only screen and (max-width: 767px) {
	.product-headline {
		font-size: 20px;
		font-weight: 500
	}	
}

.product-headline {
	font-size: 28px;
	font-weight: 700;
	line-height: 2;
	margin-top: 15px;
	border-bottom: 1px solid;
	color: var(--primary)
}

@media only screen and (max-width: 767px) {
	.product-headline {
		font-size: 28px;
		font-weight: 700;
		line-height: 1.5;
		margin-top: 15px;
	}	
}

.section-main-faeture {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8
}

@media only screen and (max-width: 767px) {
	.section-main-faeture {
		font-size: 16px;
		line-height: 1.8;
	}	
}

.section-product-feature {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8
}

@media only screen and (max-width: 767px) {
	.section-product-feature {
		font-size: 16px;
		line-height: 1.8
	}	
}

.section-features-container {
	padding-top: 50px
}

.features-container {
	margin: 0 auto;
	width: 100%;
	max-width: 980px
}

@media only screen and (max-width: 1060px) {
	.features-container {
		width: 720px
	}
}

@media only screen and (max-width: 767px) {
	.features-container {
		width: 90%
	}
}

.features-subheadline {
	font-size: 28px;
	font-weight: 700;
	line-height: 2;
	color: var(--primary)
}

@media only screen and (max-width: 767px) {
	.features-subheadline  {
		font-size: 24px
	}
}

.features-subheadline:after {
	content: '';
	height: 1px;
	width: 420px;
	background-color: var(--primary);
	position: relative;
	display: block
}

@media only screen and (max-width: 767px) {
	.features-subheadline:after {
		width: 100%
	}
}

.feature-intro {
	margin-top: 10px;
	margin-bottom: 50px
}

.list-row-bullets {
	margin: 0;
}

.list-row-items {
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
	color: var(--dark-gray);
	padding-left: 20px;
	position: relative
}

@media only screen and (max-width: 767px) {
	.list-row-items {
		font-size: 16px
	}
}

.list-row-bullets li:before {
	content: " ";
	position: absolute;
	top: 15px;
	left: 0;
	width: 6px;
	height: 6px;
	background-color: var(--primary);
	line-height: 0;
	vertical-align: middle;
	display: block
}

@media only screen and (max-width: 767px) {
	.list-row-bullets li:before {
		top: 13px
	}
}

.tab-content {
	position: relative;
	display: block
}

.content {
	display: none;
	clear:both;
	opacity: 0;
	transition: opacity 300ms ease
}
.content.active {
	display: block;
	opacity: 1
}

.specs-wrapper {
	position: relative
}

.specs-container {
	margin: 0 auto;
	width: calc(100% - 100px);
	max-width: 1200px	
}

@media only screen and (max-width: 1060px) {
	.specs-container {
		width: 720px
	}
}

@media only screen and (max-width: 767px) {
	.specs-container {
		width: 100vw
	}
}
	
.content-box {
	box-shadow: 0 14px 28px rgba(210, 224, 236, 0.45);
	background-color: #fff;
	padding: 40px 40px 80px
}

@media only screen and (max-width: 1060px) {
	.content-box {
		padding: 40px 40px 80px
	}
}

@media only screen and (max-width: 767px) {
	.content-box {
		padding: 40px 25px 60px
	}
}

.specs-content-block {
	margin: 0 auto;
	max-width: 980px
}

.specs-subheadline {
	font-size: 28px;
	font-weight: 700;
	line-height: 2;
	color: var(--primary);
	margin-bottom: 20px
}

@media only screen and (max-width: 767px) {
	.specs-subheadline {
		font-size: 24px
	}
}

/* tab */
.specs-tab-container {
	padding-bottom: 50px
}

.specs-tab-list {
	display: -webkit-grid;
	display: grid;
	grid-template-columns: repeat(6,1fr); 
	grid-gap: 10px
	
}

@media only screen and (max-width: 1060px) {
	.specs-tab-list {
		grid-template-columns: repeat(3,1fr)
	}
}

.tab {
	font-size: 16px;
	font-weight: 700;
	color: #88a8b1;
	height: 50px;
	display: flex;
	border: 2px solid #88a8b1;
	border-radius: 50px;
	justify-content: center;
	align-items: center;
	-webkit-transition: .2s;
	transition: .2s
}

@media only screen and (max-width: 767px) {
	.tab {
		font-size: 12px;
		height: 40px
	}
}

.tab.active {
	border: 2px solid var(--primary);
	background-color: var(--primary);
	color: #fff;
	pointer-events: none;
	cursor: auto
}

.tab:hover {
	border: 2px solid var(--primary);
	background-color: var(--primary);
	color: #fff
}

/* specs */				
.section-specs-container {
	padding-bottom: 50px
}

.specs-section {
	padding: 50px 0;					
	border-bottom: 1px solid var(--soft-blue);
}

.content .specs-section:nth-child(1) {
	border-top: 1px solid var(--soft-blue)
}

.section-model {
	border-top: unset;
}

.specs-row {
	display: -webkit-flex;
	display: flex;
	padding: 0 30px
}

@media only screen and (max-width: 1060px) {
	.specs-row {
		padding: 0 15px
	}
}

@media only screen and (max-width: 767px) {
	.specs-row {
		flex-wrap: wrap;
		padding: 0 10px
	}
}

.row-headline {
	width: 28%;
	font-size: 18px;
	font-weight: 700;
	line-height: 2;
	color: var(--secondary)
}

@media only screen and (max-width: 767px) {
	.row-headline {
		width: 100%;
		font-size: 16px;
		margin-bottom: 5px
	}
}

.specs-column {
	width: 33%;
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
	margin-left: 3%;
	color: var(--text-info)
}

@media only screen and (max-width: 767px) {
	.specs-column {
		width: 48.5%;
		font-size: 16px
	}
}

.column-3-row .specs-column {
	width: 21%;
}
@media only screen and (max-width: 767px) {
	.column-3-row .specs-column {
		width: 48.5%;
	}
}

@media only screen and (max-width: 767px) {
	.column-3-row .specs-column:nth-child(even) {
		margin-left: 0;
	}
}

@media only screen and (max-width: 767px) {
	.column-3-row .specs-column:first-child(1) {
		margin-top: 0;
	}
}

@media only screen and (max-width: 767px) {
	.section-model .specs-column:nth-of-type(n+4) {
		margin-top: 35px;
	}
}

@media only screen and (max-width: 767px) {
	.section-cooling-capacity .specs-column:nth-of-type(n+4) {
		margin-top: 35px;
	}
}

@media only screen and (max-width: 767px) {
	.section-power-consumption .specs-column:nth-of-type(n+4) {
		margin-top: 35px;
	}
}

@media only screen and (max-width: 767px) {
	.section-size-weight .specs-column:nth-of-type(n+4) {
		margin-top: 35px;
	}
}


@media only screen and (max-width: 767px) {
	.row-headline+.specs-column,
	.row-headline+.specs-column[column="2"] {
		margin-left: 0
	}
}

.specs-column[column="2"] {
	width: 69%
}

@media only screen and (max-width: 767px) {
	.specs-column[column="2"] {
		width: 100%
	}
}

.specs-model {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-main)
}

@media only screen and (max-width: 767px) {
	.specs-model {
		font-size: 20px
	}
}

.specs-section strong {
	font-weight: 700;
	color: var(--text-main)
}

.specs-note {
	padding-top: 50px
}

.specs-note-list {
	max-width: 980px;
	margin: 0 auto	
}

@media only screen and (max-width: 1060px) {
	.specs-note-list {
		width: 720px
	}
}

@media only screen and (max-width: 767px) {
	.specs-note-list {
		width: 90%
	}
}

.specs-note li {
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
	color: var(--smoke-gray)
}

@media only screen and (max-width: 767px) {
	.specs-note li {
		font-size: 12px
	}
}

/*================================================*/
/*----- SERVICE -----*/
/*================================================*/

.section-service-products {
	padding-bottom: 80px		
}

.section-service-custom-design {
	padding-bottom: 80px			
}

.section-service-repair {
	padding-bottom: 80px				
}

.section-service-refurbished {
	padding-bottom: 200px	
}

.section-service-products .headline {
	font-size: 20px;
	text-align: left
}

.section-service-custom-design .headline {
	font-size: 20px;
	text-align: left	
}

.section-service-repair .headline {
	font-size: 20px;
	text-align: left	
}

.section-service-refurbished .headline {
	font-size: 20px;
	text-align: left
}


/*================================================*/
/*----- WARRANTY SERVICE -----*/
/*================================================*/

.warranty-service-container {
	padding-bottom: 80px
}

.warranty-headline {
	max-width: 820px
}

.content-container {
	margin: 0 auto;
	width: calc(100vw - 120px);
	max-width: 1200px
}

@media only screen and (max-width: 767px) {
	.content-container {
		width: calc(100vw - 40px)
	}
}

.warranty-content-box {
	background-color: #fff;
	box-shadow: 0 14px 28px rgba(210, 224, 236, 0.45)
}

.ws-wrapper {
	max-width: 820px;
	padding: 0 80px;
	margin: 0 auto
}

@media only screen and (max-width: 767px) {
	.ws-wrapper {
		padding: 0 30px
	}
}

.ws-wrapper div {
	margin-bottom: 80px
}

.warranty-headline {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--dark)
}

@media only screen and (max-width: 767px) {
	.warranty-headline {
		font-size: 24px
	}
}

.ws-wrapper p {
	font-size: 18px;
	font-weight: 500
}

@media only screen and (max-width: 767px) {
	.ws-wrapper p {
		font-size: 16px
	}
}

.warranty-box-wrapper {
	margin: 0 auto;
	max-width: 820px;
	padding: 60px 80px;
	color: var(--dark-gray)	
}

@media only screen and (max-width: 767px) {
	.warranty-box-wrapper {
		padding: 60px 30px
	}
}

.warranty-info-headline {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--primary)
}

@media only screen and (max-width: 767px) {
	.warranty-info-headline {
		font-size: 24px
	}
}

.warranty-list-headline {
	margin-top: 50px;
	margin-bottom: 5px
}

.warranty-box-wrapper p {
	font-size: 18px;
	font-weight: 500;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--soft-blue)
}

@media only screen and (max-width: 767px) {
	.warranty-box-wrapper p {
		font-size: 16px
	}
}

.warranty-list-headline {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark);
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (max-width: 767px) {
	.warranty-list-headline {
		font-size: 16px
	}
}

.warranty-list {
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--soft-blue)
}

.warranty-list li {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8
}

@media only screen and (max-width: 767px) {
	.warranty-list li {
		font-size: 16px
	}
}

.warranty-note {
	font-size: 14px;
	color: #7a859e;	
	margin-top: 40px
}


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

.section-contact {
	padding-bottom: 120px;
	font-weight: 500
}

.contact-container {
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	position: relative
}

@media only screen and (max-width: 1060px) {
	.contact-container {
		grid-template-columns: 1fr
	}
}

.contact-block {
	width: 450px
}

@media only screen and (max-width: 767px) {
	.contact-block {
		width: 100%
	}
}

.contact-description {
	margin-bottom: 20px
}

.contact-description strong {
	font-weight: 700
}

.contact-description p {
	font-size: 18px;
	font-weight: 500
}

@media only screen and (max-width: 767px) {
	.contact-description p {
		font-size: 16px
	}
}

.contact-subheadline {
	position: relative;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .02em;
	color: var(--primary);
	background-color: #eef7ff;
	line-height: 2;
	padding: 5px 5px 5px 15px;
	border-left: 5px solid var(--primary)
}

@media only screen and (max-width: 767px) {
	.contact-subheadline {
		font-size: 18px;
		line-height: 2
	}
}

.contact-list {
	margin-top: 20px;
	margin-bottom: 50px;
	padding-left: 20px;
	font-size: 16px;
	letter-spacing: .04em;
	color: var(--dark-gray)
}

@media only screen and (max-width: 767px) {
	.contact-list {
		font-size: 14px
	}
}

.contact-list dl {
	display: -webkit-flex;
	display: flex
}

.contact-list dt {
	width: 165px;
	font-weight: 700;
	line-height: 2;
	color: var(--dark-gray)
}

@media only screen and (max-width: 767px) {
	.contact-list dt {
		width: 40%
	}
}

.contact-list dd {
	font-weight: 500;
	line-height: 2
}

#map {
	height: 400px;
	width: 100%;
}


/*================================================*/
/*----- ICONS -----*/
/*================================================*/

svg:not(:root).icon {
	overflow: visible
}

.local-nav {
	display: inline-block;
	font-size: 14px
}
.local-nav li {
	display: inline-block;
	margin-left: 10px
}

/*================================================*/
/*----- SITEMAP -----*/
/*================================================*/

.sitemap-page {
	padding-top: 50px;
	padding-bottom: 50px
}

.category-section {
	margin-bottom: 50px;
	width: 420px
}

@media only screen and (max-width: 767px) {
	.category-section {
		width: 100%
	}
}

.sitemap-headline {
	font-size: 24px;
	font-weight: 700;
	line-height: 2;
	color: var(--dark-gray);
	text-transform: uppercase;
	padding: 5px 5px 5px 15px;
	background-color: var(--light);
	border-left: 5px solid var(--blue-gray)
}

.sitemap-list {
	padding-left: 30px;
	margin-top: 20px
}

.sitemap-list li {
	margin-bottom: 10px	
}

.sitemap-list li:last-child {
	margin-bottom: 0	
}

.sitemap-list li a {
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
	color: var(--blue-gray);
	-webkit-transition: .2s;
	transition: .2s
}

.sitemap-list li a:hover {
	color: var(--dark-gray)
}

/*================================================*/
/*----- ERROR -----*/
/*================================================*/

.error-wrapper {
	padding: 230px 0 150px 0
}

.error-page {
	text-align: center
}

.error-headline h1 {
	font-size: 66px
}

.error-container {
	margin: 0 auto;
	max-width: 980px;
	width: 90%
}

.error-title {
	font-size: 42px;
	font-weight: 700
}

.error-description {
	margin-bottom: 30px
}

.button-home {
	display: -webkit-flex;
	display: flex;
	border-radius: 50px;
	color: #fff;
	background-color: var(--primary);
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: .04em;	
	width: 200px;
	height: 50px;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	margin: 0 auto;
	-webkit-transition: .2s;
	transition: .2s	
}

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

.main-footer {
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	background-color: var(--light);
	z-index: 1;
	color: var(--smoke-gray)
} 

.main-footer a {
	opacity: 1
}

.footer-wrapper {
	max-width: 980px;
	width: auto;
	margin: 0 auto
}
.footer-column-wrapper {
	display: flex;
	width: 100%;
	padding-top: 60px;
	padding-bottom: 60px						
}

@media only screen and (max-width: 767px) {
	.footer-column-wrapper {
		display: block;
		text-align: center;
	}
}

.footer-column-wrapper:before,
.footer-column-wrapper:after {
	content: '';
	display: table;
	
}

.footer-column-wrapper:after {
	clear: both
}

.directory-wrapper {
	flex: 0 0 50%
}

@media only screen and (max-width: 1024px) {
	.directory-wrapper {
		flex: 0 0 40%
	}
}

@media only screen and (max-width: 767px) {
	.directory-wrapper {
		flex: none;
		margin-bottom: 50px
	}
}

@media only screen and (min-width: 768px) {
	.directory-wrapper {
		float: left
	}
}

.directory-contact .company-title {
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: .08em;
	margin-top: 20px;
	color: var(--primary)
}

.directory-contact .company-title-zh {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.14em;
	margin-bottom: 10px;
	color: var(--dark-gray)
}

.directory-contact p {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .02em;
	margin: 0;
	color: var(--smoke-gray)
}

.footer-column {
	width: 33.333%;
	float: left;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.footer-column {
		width: 100%;
		margin-bottom: 30px
	}
}

.footer-column-section ul {
	margin-bottom: 40px
}

.footer-column-title {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .02em;
	color: var(--primary)
}

.footer-column-list {
	list-style: none;
	margin-right: 20px
}

@media only screen and (max-width: 767px) {
	.footer-column-list {
		margin-right: 0
	}
}

.footer-column:last-child .footer-column-list {
	margin-right: 0
}

.footer-column-item {
	display: block;
	margin-bottom: 8px
}
		
.footer-column-item, 
.footer-column-item a {
	font-weight: 500;
	font-size: 14px;
	color: var(--smoke-gray)
}

.footer-column-item a {
	position: relative;
	display: inline-block;
	-webkit-transition: transform .3s cubic-bezier(.15,.6,0,1.8), color .2s ease-in-out;
	transition: transform .3s cubic-bezier(.15,.6,0,1.8), color .2s ease-in-out
}

.footer-column-item a:hover {
	color: var(--primary);
	-webkit-transform: scale(1.05);
	transform: scale(1.05)
}

.locale-item {
	display: inline-block
}

.item-border {
	padding: 0 5px	
}

.directory-logo {
	display: block
}

.directory-logo a {
	display: inline-block
}

.directory-logo .logo {
	width: 80px;
	height: 31px;
	display: inline-block												
}

@media only screen and (max-width: 767px) {
	.directory-logo .logo {
		width: 60px;
		height: 24px
	}
}

.main-footer .logo path {
	fill: var(--dark-gray)
}

.links {
	flex: 0 0 50%;
	display: block
}
@media only screen and (max-width: 1024px) {
	.links {
		flex: 0 0 60%;
	}
}
@media only screen and (max-width: 767px) {
	.links {
		flex: 0 0 100%;
		text-align: center;
		overflow: hidden
	}
}

.site-footer {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding-top: 10px;
	padding-bottom: 30px;
	color: #88a8b1;
	font-size: 12px;
	line-height: 1.5;
	text-align: center
}

.copyright {	    
	font-weight: 500;
	font-size: 12px;
	letter-spacing: .02em;
	line-height: 1.5;
	margin: 0 auto
}

@media only screen and (min-width: 768px) {
	.copyright br {
		display: none
	}	
}