.tabs {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
	font-weight: 300;
	font-size: 1.25em;
}

/* Nav */
.tabs nav {
	text-align: center;
}

.tabs nav ul {
	position: relative;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -ms-flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	margin: 0 auto;
	padding: 0 ;
	max-width: 1020px;
	list-style: none;
	-ms-box-orient: horizontal;
	-ms-box-pack: center;
	-ms-flex-flow: row wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.tabs nav ul li {
	position: relative;
	z-index: 1;
	display: block;
	margin: 0;
	text-align: center;
	-moz-flex: 1;
	-ms-flex: 1;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}

.tabs nav a {
	position: relative;
	display: block;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 2.5;
}

.tabs nav a span {
	vertical-align: middle;
	font-size: 1em;
}

.tabs nav li.tab-current a {
	color: #74777b;
}

.tabs nav a:focus {
	outline: none;
}

.tabs nav a.icon {
	width: 100%;
	height: 35px;
}

/* Icons */
.icon::before {
	z-index: 10;
	display: inline-block;
	margin: 0 0.4em 0 0;
	vertical-align: middle;
	text-transform: none;
	font-weight: normal;
	font-variant: normal;
	font-size: 30px;
	font-family: 'stroke7pixeden';
	line-height: 1;
	speak: none;
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-upload::before {
	content: "\e68a";
}

.icon-tools::before {
	content: "\e60a";
}

.icon-plane::before {
	content: "\e625";
}

.icon-joy::before {
	content: "\e6a4";
}

.icon-plug::before {
	content: "\e69a";
}

.icon-home::before {
	content: "\e648";
}

.icon-gift::before {
	content: "\e652";
}

.icon-display::before {
	content: "\e65e";
}

.icon-date::before {
	content: "\e660";
}

.icon-config::before {
	content: "\e666";
}

.icon-coffee::before {
	content: "\e669";
}

.icon-camera::before {
	content: "\e66f";
}

.icon-box::before {
	content: "\e674";
}

/* Content */
.content-wrap {
	position: relative;
}

.content-wrap section {
	display: none;
	margin: 0 auto;
	padding: 1em;
	max-width: 1200px;
	text-align: center;
}

.content-wrap section.content-current {
	display: block;
}

.content-wrap section p {
	margin: 0;
	padding: 0.75em 0;
	color: rgba(40, 44, 42, 0.05);
	font-weight: 900;
	font-size: 4em;
	line-height: 1;
}

/* Fallback */
.no-js .content-wrap section {
	display: block;
	padding-bottom: 2em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.no-flexbox nav ul {
	display: block;
}

.no-flexbox nav ul li {
	min-width: 15%;
	display: inline-block;
}

.tabs nav a.icon i {
	display: none;
	font-size: 11px;
	font-style: normal;
}

@media screen and (max-width: 58em) {
	.tabs nav a.icon span {
		display: none;
	}

	.tabs nav a.icon {
		text-decoration: none !important;
	}

	.tabs nav a.icon i {
		display: block;
	}

	.tabs nav a:before {
		margin-right: 0;
	}
}

.tabs-style-iconfall {
	overflow: visible;
}

.tabs-style-iconfall nav a {
	display: inline-block;
	overflow: visible;
	padding: 50px 0;
	color: #74777b;
	line-height: 1;
	-webkit-transition: color 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	-o-transition: color 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	transition: color 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}

.tabs-style-iconfall nav a:hover,
.tabs-style-iconfall nav a:focus,
.tabs-style-iconfall nav li.tab-current a {
	color: #00a0eb;
	text-decoration: none;
}

.tabs-style-iconfall nav a span {
	font-weight: 700;
	font-size: 16px;
}

.tabs-style-iconfall nav li::before {
	position: absolute;
	bottom: 1em;
	left: 50%;
	margin-left: -20px;
	width: 40px;
	height: 4px;
	background: #00a0eb;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s ease-in;
	transition: -webkit-transform 0.2s ease-in;
	-o-transition: transform 0.2s ease-in;
	transition: transform 0.2s ease-in;
	transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
	-webkit-transform: scale3d(0, 1, 1);
	transform: scale3d(0, 1, 1);
}

.tabs-style-iconfall nav li.tab-current::before {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.tabs-style-iconfall .icon::before {
	display: block;
	margin: 0 0 0.35em;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, -webkit-transform 0.2s;
	-o-transition: transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
	-webkit-transform: translate3d(0, -100px, 0);
	transform: translate3d(0, -100px, 0);
	pointer-events: none;
}

.tabs-style-iconfall nav li.tab-current .icon::before {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 58em) {
	.tabs-style-iconfall nav li .icon::before {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.tabs-style-linemove nav li:last-child::before {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: #00a0eb;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

/* Move the line */
.tabs-style-linemove nav li:first-child.tab-current ~ li:last-child::before {
	-webkit-transform: translate3d(-400%, 0, 0);
	transform: translate3d(-400%, 0, 0);
}

.tabs-style-linemove nav li:nth-child(2).tab-current ~ li:last-child::before {
	-webkit-transform: translate3d(-300%, 0, 0);
	transform: translate3d(-300%, 0, 0);
}

.tabs-style-linemove nav li:nth-child(3).tab-current ~ li:last-child::before {
	-webkit-transform: translate3d(-200%, 0, 0);
	transform: translate3d(-200%, 0, 0);
}

.tabs-style-linemove nav li:nth-child(4).tab-current ~ li:last-child::before {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}


/* Move the line */
/*
.upgrade_navs.tabs-style-linemove nav li:first-child.tab-current ~ li:last-child::before {
	-webkit-transform: translate3d(-300%,0,0);
	transform: translate3d(-300%,0,0);
}

.upgrade_navs.tabs-style-linemove nav li:nth-child(2).tab-current ~ li:last-child::before {
	-webkit-transform: translate3d(-200%,0,0);
	transform: translate3d(-200%,0,0);
}

.upgrade_navs.tabs-style-linemove nav li:nth-child(3).tab-current ~ li:last-child::before {
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}

.upgrade_navs.tabs-style-linemove nav li:nth-child(4).tab-current ~ li:last-child::before {
	-webkit-transform: translate3d(-0%,0,0);
	transform: translate3d(-0%,0,0);
}
*/

/*
#upgrade_nav li a {
	text-align: left;
}
*/
.upgrade_navs.tabs nav {
	max-width: 960px;
	margin: 0px auto;
	font-family: 'sukhumvit set', 'Prompt';
	font-weight: bold;
	font-size: 16px;
	color: #555;
}

.upgrade_navs.tabs nav ul {
	width: auto;
	margin: 0;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.upgrade_navs.tabs nav ul li {
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	-webkit-flex-grow: 0;
	flex-grow: 0;
	-ms-flex-preferred-size: 150px;
	-webkit-flex-basis: 150px;
	flex-basis: 150px;
	margin: 0;
}

.upgrade_navs.tabs nav ul li a {
	color: #555;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px 0;
	line-height: 25px;
	font-size: 14px;
}

.upgrade_navs.tabs nav ul li.tab-current a {
	color: #00a0eb;
}

.upgrade_navs.tabs nav ul li a:hover {
	text-decoration: none;
	color: #333;
}

.upgrade_navs.tabs nav {
	position: relative;
}

.upgrade_navs.tabs nav a.select_button_a {
	display: inline-block;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0;
	-webkit-transform: scale(0.65);
	-ms-transform: scale(0.65);
	transform: scale(0.65);
}

.upgrade_navs.upgrade_nav_top nav a {
	border-bottom-color: #fff;
}

.tabs-style-linemove nav a {
	padding: 1em 0;
	color: #333;
	line-height: 1;
	-webkit-transition: color 0.3s, -webkit-transform 0.3s;
	transition: color 0.3s, -webkit-transform 0.3s;
	-o-transition: color 0.3s, transform 0.3s;
	transition: color 0.3s, transform 0.3s;
	transition: color 0.3s, transform 0.3s, -webkit-transform 0.3s;
	border-bottom: 3px solid #eee;
}

.tabs-style-linemove nav li.tab-current a {
	color: #00a0eb;
	/*
	-webkit-transform: translate3d(0,8px,0);
	transform: translate3d(0,8px,0);
*/
}

.tabs-style-linemove nav a span {}

.tabs li::before,
.tabs a::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.service_category .icon {
	width: auto;
}