/* FONTS */
@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto-thin-webfont.eot');
    src: url('../fonts/roboto-thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto-thin-webfont.woff') format('woff'),
         url('../fonts/roboto-thin-webfont.ttf') format('truetype'),
         url('../fonts/roboto-thin-webfont.svg#robotothin') format('svg');
    font-weight: 100;
}
@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto-light-webfont.eot');
    src: url('../fonts/roboto-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto-light-webfont.woff') format('woff'),
         url('../fonts/roboto-light-webfont.ttf') format('truetype'),
         url('../fonts/roboto-light-webfont.svg#robotolight') format('svg');
    font-weight: 200;
}
@font-face {
    font-family: 'roboto';
    src: url('../fonts/Roboto-Regular-webfont.eot');
    src: url('../fonts/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Roboto-Regular-webfont.woff') format('woff'),
         url('../fonts/Roboto-Regular-webfont.ttf') format('truetype'),
         url('../fonts/Roboto-Regular-webfont.svg#robotoregular') format('svg');
}
@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto-medium-webfont.eot');
    src: url('../fonts/roboto-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto-medium-webfont.woff') format('woff'),
         url('../fonts/roboto-medium-webfont.ttf') format('truetype'),
         url('../fonts/roboto-medium-webfont.svg#robotolight') format('svg');
    font-weight: 600;
}
@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto-bold-webfont.eot');
    src: url('../fonts/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto-bold-webfont.woff') format('woff'),
         url('../fonts/roboto-bold-webfont.ttf') format('truetype'),
         url('../fonts/roboto-bold-webfont.svg#robotolight') format('svg');
    font-weight: bold;
}
@font-face {
    font-family: 'open_sans';
    src: url('../fonts/opensans-light-webfont.eot');
    src: url('../fonts/opensans-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/opensans-light-webfont.woff') format('woff'),
         url('../fonts/opensans-light-webfont.ttf') format('truetype'),
         url('../fonts/opensans-light-webfont.svg#open_sanslight') format('svg');
    font-weight: 300;
}
@font-face {
    font-family: 'open_sans';
    src: url('../fonts/opensans-semibold-webfont.eot');
    src: url('../fonts/opensans-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/opensans-semibold-webfont.woff') format('woff'),
         url('../fonts/opensans-semibold-webfont.ttf') format('truetype'),
         url('../fonts/opensans-semibold-webfont.svg#open_sanssemibold') format('svg');
    font-weight: 600;
}
@font-face {
    font-family: 'open_sans';
    src: url('../fonts/opensans-bold-webfont.eot');
    src: url('../fonts/opensans-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/opensans-bold-webfont.woff') format('woff'),
         url('../fonts/opensans-bold-webfont.ttf') format('truetype'),
         url('../fonts/opensans-bold-webfont.svg#open_sansbold') format('svg');
    font-weight: bold;
}
@font-face {
    font-family: 'open_sanscondensed_light';
    src: url('../fonts/open_sans_condensed__light-webfont.eot');
    src: url('../fonts/open_sans_condensed__light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/open_sans_condensed__light-webfont.woff2') format('woff2'),
         url('../fonts/open_sans_condensed__light-webfont.woff') format('woff'),
         url('../fonts/open_sans_condensed__light-webfont.ttf') format('truetype'),
         url('../fonts/open_sans_condensed__light-webfont.svg#open_sanscondensed_light') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* FONTS end */

body {
	font-weight: 200;
	font-family: 'roboto', sans-serif;
	color: #000;
}
section {
	position: relative;
	overflow: hidden;
}
.wrapper {
	margin: 0 auto;
	padding: 0 15px;
}

/* bookmark */
.bookmark {
	position: fixed;
	top: 35%;
	right: -180px;
	z-index: 88;
}
.bookmark a {
	display: block;
	position: relative;
	right: 0;
	padding-left: 65px;
	width: 240px;
	font-size: 20px;
	line-height: 60px;
	color: #fefefe;
	text-decoration: none;
	background-color: #ff004a;
	border-top: 1px solid #fff;
	filter: alpha(opacity=90);
	opacity: .9;
	-webkit-transition: right .3s;
	-moz-transition: right .3s;
	-ms-transition: right .3s;
	-o-transition: right .3s;
	transition: right .3s;
}
.bookmark a:hover,
.bookmark a:focus {
	outline: none;
	filter: alpha(opacity=100);
	opacity: 1;
}
.bookmark a:hover {
	right: 180px;
}
.bookmark a:first-child {
	border-top: none;
}
.bookmark a:before {
	content: '';
	position: absolute;
	top: 10px;
	left: 20px;
	width: 20px;
	height: 40px;
	background: url(../images/sprite.png) -230px -255px no-repeat;
}
.bookmark a.demo:before {
	top: 14px;
	left: 10px;
	width: 40px;
	height: 30px;
	background-position: -316px -223px;
}
.bookmark a.question:before {
	left: 15px;
	width: 30px;
	height: 41px;
	background-position: -272px -255px;
}
/* bookmark end */

/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 70px;
	background-color: rgba(0,30,60,1);
	z-index: 10;
	backface-visibility: hidden;
}
.sub.fix header {
	background-color: rgba(255,162,0,1);
}
header .col-sm-6 {
	padding: 0 5px;
}
header>.col-sm-6.logo {
	padding-top: 5px;
}
header .logo_img {
	display: inline-block;
	width: 60px;
}
header .logo_txt {
	display: inline-block;
	margin-left: 10px;
	font-weight: 100;
	font-size: 48px;
	line-height: 60px;
	color: #fff;
	vertical-align: middle;
}

/*** navigation ***/
.navbar_collapse {
	padding: 0;
}
.topmenu,
.topmenu ul {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}
.topmenu:after {
	content: '';
	display: block;
	clear: both;
}
.topmenu li {
	position: relative;
}
.topmenu>li {
	display: block;
	margin-left: 15px;
}
.topmenu>li .item {
	text-decoration: none;
	border: none;
}
.topmenu>li ul .item {
	display: block;
	padding: 4px 28px 6px;
	font-weight: 100;
	font-size: 18px;
	text-transform: none;
}
.topmenu>li ul a.item:hover,
.topmenu>li ul li.active>.item,
.topmenu.phone>li ul>li.l2>a.item:hover {
	color: #fff;
	background-color: rgba(255,255,255,.5);
}
.topmenu .opener {
	display: none;
}
.navbar-toggle>.icon-bar {
	width: 14px;
	background-color: #fff;
	-webkit-transition: transform .3s;
	-moz-transition: transform .3s;
	-ms-transition: transform .3s;
	-o-transition: transform .3s;
	transition: transform .3s;
}
.navbar-toggle>.icon-bar+.icon-bar {
	margin-top: 4px;
}
.navbar-toggle:hover>.icon-bar:nth-child(1) {
	-webkit-transform: translateY(-1px);
	-moz-transform: translateY(-1px);
	-ms-transform: translateY(-1px);
	-o-transform: translateY(-1px);
	transform: translateY(-1px);
}
.navbar-toggle:hover>.icon-bar:nth-child(3) {
	-webkit-transform: translateY(1px);
	-moz-transform: translateY(1px);
	-ms-transform: translateY(1px);
	-o-transform: translateY(1px);
	transform: translateY(1px);
}

.topmenu.phone>li.parent {
	text-align: right;
}
.topmenu.phone>li.parent>.item {
	display: block;
	padding-top: 8px;
	line-height: 1.1;
}
.topmenu>li.parent .numbers {
	font-size: 18px;
	line-height: 1.1;
	font-family: 'open_sanscondensed_light';
}
.topmenu>li.parent .numbers>span {
	display: block;
	font-size: 30px;
}
.topmenu.phone>li ul>li,
.topmenu.phone>li ul>li.l1,
.topmenu.phone>li ul>li.l2,
.topmenu.phone>li ul>li.l3 {
	margin: 0;
}
.topmenu.phone>li ul>li>.item {
	padding: 10px 19px ;
}

header>.submenu {
	height: 45px;
	font-size: 16px;
	line-height: 16px;
	color: #001e3c;
	background-color: #fff;
	-webkit-box-shadow: 0 1px 4px rgba(1,1,1,.5);
	-moz-box-shadow: 0 1px 4px rgba(1,1,1,.5);
	box-shadow: 0 1px 4px rgba(1,1,1,.5);
}
header>.submenu>.dt {
	margin: 0 auto;
	width: 1100px;
}
header>.submenu .title {
	display: table-cell;
	padding-right: 45px;
	vertical-align: middle;
	text-align: right;
	font-weight: 400;
}
header>.submenu .title>.wrapin {
	position: relative;
}
header>.submenu .title>.wrapin:before {
	content: '';
	position: absolute;
	top: calc(50% - 14px);
	right: -45px;
	width: 1px;
	height: 28px;
	background-color: #001e3c;
}
header>.submenu ul {
	display: table-cell;
	list-style: none;
	margin: 0;
	padding: 0;
}
header>.submenu ul>li {
	display: table-cell;
	padding-left: 45px;
	height: 45px;
	vertical-align: middle;
}
header>.submenu ul>li>.item {
	position: relative;
	display: inline-block;
	color: #001e3c;
	text-decoration: none;
}
header>.submenu ul>li>a.item:hover:before,
header>.submenu ul>li.active>.item:before {
	content: '';
	position: absolute;
	top: calc(50% + 20px);
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #d50000;
}

@media (min-width: 1710px) {
	.topmenu.right {
		padding-left: 20px;
	}
	.topmenu.right>li:first-child:before {
		left: -20px;
	}
	.topmenu>li {
		margin-left: 20px;
	}
	.topmenu.right>.parent {
		margin-left: 40px;
	}
	.topmenu.phone>li.parent {
		margin-left: 45px;
	}
}

@media (max-width: 1709px) and (min-width: 992px) {
	.topmenu.right {
		padding-left: 15px;
	}
	.topmenu.right>li:first-child:before {
		left: -15px;
	}
}

@media (min-width: 1560px) {
	.topmenu.phone>li.parent ul>li.l1 {
		display: none;
	}
	.topmenu.phone>li ul {
		margin: 0;
	}
	.topmenu.phone>li ul>li.l3 {
		margin-top: 1px;
	}
	.topmenu.phone>li ul>li>.item {
		padding: 25px 19px;
	}
	.topmenu.phone>li ul>li.l2>.item {
		background: url(../images/phone_v.png) 19px 50% no-repeat;
	}
}

@media (max-width: 1559px) and (min-width: 1330px) {
	.topmenu.phone {
		float: right;
		margin-right: 14px;
	}
	.topmenu.phone>li.parent>.item {
		margin: 27px 0 0;
		width: 46px;
		height: 16px;
		background: url(../images/phone_h.png) 0 0 no-repeat;
	}
	.topmenu.phone>li.parent>.item>.numbers {
		display: none;
	}
	.topmenu.phone>li ul>li.l1 {
		padding-top: 15px;
	}
	.topmenu.phone>li ul>li.l3 {
		padding-bottom: 15px;
	}
}

@media (min-width: 1330px) {
	.topmenu li.parent ul {
		width: 184px;
	}
	.topmenu>li.parent>ul>li.ph {
		display: none;
	}
}

@media (max-width: 1329px) {
	nav .topmenu.phone {
		display: none;
	}
}

@media (max-width: 1329px) and (min-width: 992px) {
	.topmenu.phone {
		display: none;
	}
	.topmenu li.parent ul {
		width: 250px;
	}
}

@media (min-width: 1200px) {
	.topmenu>li .item {
		font-size: 16px;
	}
}

@media (max-width: 1199px) {
	header>.submenu {
		height: 45px;
		font-size: 14px;
	}
	header>.submenu>.dt {
		width: 700px;
	}
	header>.submenu .title {
		padding-right: 30px;
	}
	header>.submenu .title>.wrapin:before {
		right: -30px;
	}
	header>.submenu ul>li {
		padding-left: 30px;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	.topmenu.right {
		padding-left: 13px;
	}
	.topmenu>li {
		float: left;
		margin-left: 14px;
	}
	.topmenu>li:first-child {
		margin-left: 13px;
	}
	.topmenu>li .item {
		font-size: 13px;
	}
	.topmenu.right>li:first-child:before {
		left: -13px;
	}
}

@media (min-width: 992px) {
	.navbar_collapse.collapse {
		display: block!important;
		height: auto!important;
		padding-bottom: 0;
		overflow: visible!important;
	}
	.topmenu {
		float: left;
	}
	.topmenu>li {
		float: left;
		height: 70px;
	}
	.topmenu>li.first {
		margin-left: 9px;
	}
	.topmenu>li.parent {
		width: 20px;
	}
	.topmenu.phone>li.parent {
		width: auto;
	}
	.topmenu>li.active {
		position: relative;
	}
	.topmenu>li.active:before {
		content: '';
		position: absolute;
		bottom: -21px;
		width: 100%;
		height: 5px;
		background-color: #e00;
	}
	.topmenu.right>li:first-child:before {
		content: '';
		position: absolute;
		top: 0;
		margin-top: 18px;
		width: 1px;
		height: 31px;
		background-color: #fff;
	}
	.topmenu>li .item {
		color: #fff;
		text-transform: uppercase;
	}
	.topmenu>li.active .item,
	.topmenu>li>a:hover,
	.topmenu>li.parent:hover .item,
	.topmenu>li.parent>ul>li.active .item,
	.topmenu>li.parent>ul>li>a:hover {
		color: #fff;
	}
	.topmenu>li>.item {
		line-height: 70px;
	}
	.topmenu li ul {
		position: absolute;
		top: 100%;
		left: -28px;
		padding: 0;
		width: 340px;
		background-color: rgba(0,30,60,.9);
		border: 1px solid transparent;
		-moz-bbackground-clip: content-box;
		background-clip: content-box;
		-webkit-transition: all .15s;
		-moz-transition: all .15s;
		-ms-transition: all .15s;
		-o-transition: all .15s;
		transition: all .15s;
	}
	.topmenu li.parent ul {
		right: -22px;
		left: auto;
		text-align: right;
	}
	.topmenu.phone>li.parent ul {
		width: 232px;
		background: none;
	}
	.topmenu.phone>li.parent ul>li {
		background-color: rgba(0,30,60,.9);
	}
	.topmenu li ul ul {
		top: -11px;
		right: 100%;
	}
	.topmenu>li ul,
	.topmenu li:hover ul ul,
	.topmenu li:hover ul ul ul,
	.topmenu li:hover ul ul ul ul,
	.topmenu li:hover ul ul ul ul ul {
		visibility: hidden;
		filter: alpha(opacity=0);
		opacity: 0;
	}
	.topmenu>li ul.collapse,
	.topmenu>li ul ul.collapse {
		height: auto !important;
	}
	.topmenu>li ul.collapse {
		display: block;
	}
	.topmenu>li:hover>ul,
	.topmenu>li:hover li:hover ul {
		visibility: visible;
		filter: alpha(opacity=100);
		opacity: 1;
		z-index: 2;
	}
	.topmenu>li:hover>ul {
		top: 100%;
	}
	.topmenu>li:hover li:hover ul {
		right: 100%;
	}
	.topmenu>li ul>li {
		margin-bottom: 15px;
		line-height: 1;
	}
	.topmenu>li ul>li:first-child {
		margin-top: 25px;
	}
	.topmenu>li ul>li:last-child {
		margin-bottom: 26px;
	}
	.parent .navbar-toggle {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		margin: 28px 0 0;
		padding: 0;
		border: none;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		cursor: default;
		z-index: 8;
	}
	.topmenu>li.parent .navbar-toggle>.icon-bar+.icon-bar {
		margin-top: 4px;
	}
	.topmenu>li.parent>ul {
		top: 100%;
		z-index: 1;
	}
	header>.col-sm-6>.topmenu.phone {
		display: none;
	}
}

@media (max-width: 991px) {
	header>.col-sm-6 {
		padding: 0;
	}
	.navbar-toggle {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		margin: 29px 23px 0 0;
		padding: 0;
		border: none;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		z-index: 8;
	}
	.parent .navbar-toggle {
		display: none;
	}
	.navbar-toggle.collapsed>.icon-bar {
		margin: 4px 0;
	}
	.navbar-toggle.collapsed>.icon-bar:nth-child(1),
	.navbar-toggle.collapsed:hover>.icon-bar:nth-child(1) {
		-webkit-transform: translateY(3px) rotate(45deg);
		-moz-transform: translateY(3px) rotate(45deg);
		-ms-transform: translateY(3px) rotate(45deg);
		-o-transform: translateY(3px) rotate(45deg);
		transform: translateY(3px) rotate(45deg);
	}
	.navbar-toggle.collapsed>.icon-bar:nth-child(2) {
		display: none;
	}
	.navbar-toggle.collapsed>.icon-bar:nth-child(3),
	.navbar-toggle.collapsed:hover>.icon-bar:nth-child(3) {
		-webkit-transform: translateY(-3px) rotate(-45deg);
		-moz-transform: translateY(-3px) rotate(-45deg);
		-ms-transform: translateY(-3px) rotate(-45deg);
		-o-transform: translateY(-3px) rotate(-45deg);
		transform: translateY(-3px) rotate(-45deg);
	}
	#topmenu {
		background-color: rgba(0,30,60,.9);
	}
	.topmenu>li {
		margin: 0;
	}
	.topmenu>li>ul {
		background-color: rgba(255,255,255,.1);
	}
	.topmenu>li>ul>li>ul {
		background-color: rgba(255,255,255,.2);
	}
	.topmenu>li.parent>ul {
		background: none;
	}
	.topmenu>li .item {
		display: block;
		line-height: 20px;
		color: #fff;
	}
	.topmenu>li.active .item,
	.topmenu>li.parent>ul>.active .item,
	.topmenu>li a.item:hover {
		background-color: rgba(255,255,255,.5);
	}
	.parent_collapse {
		display: block;
	}
	.topmenu .opener {
		position: absolute;
		top: 6px;
		right: 18px;
		display: block;
		width: 20px;
		font-size: 15px;
		color: #fff;
		cursor: pointer;
	}
	.parent_collapse {
		height: auto !important;
	}
	.opener .glyphicon-menu-up {
		width: 20px;
		height: 20px;
	}
	.opener .glyphicon-menu-up:before,
	.opener .glyphicon-menu-up:after {
		content: '';
		position: absolute;
		top: calc(50% - 2px);
		right: 0;
		width: 20px;
		height: 1px;
		background-color: #fff;
		-webkit-transition: transform .3s;
		-moz-transition: transform .3s;
		-ms-transition: transform .3s;
		-o-transition: transform .3s;
		transition: transform .3s;
	}
	.opener.collapsed .glyphicon-menu-up:before {
		/* content: "\e259"; */
		-webkit-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}
	.opener.collapsed .glyphicon-menu-up:after {
		-webkit-transform: rotate(-270deg);
		-ms-transform: rotate(-270deg);
		transform: rotate(-270deg);
	}
	
	header>.col-sm-6>.topmenu.phone {
		position: absolute;
		top: 0;
		right: 60px;
	}
	header>.col-sm-6>.topmenu.phone>li {
		float: left;
		width: auto;
		height: 60px;
	}
	header>.col-sm-6>.topmenu.phone>li.parent>.item {
		margin: 22px 0 0;
		padding: 0;
		width: 46px;
		height: 16px;
		background: url(../images/phone_h.png) 0 0 no-repeat;
	}
	header>.col-sm-6>.topmenu.phone>li ul {
		position: absolute;
		top: 100%;
		right: -60px;
		padding: 0;
		width: 240px;
		background-color: rgba(0,30,60,.9);
		border: 1px solid transparent;
		-moz-bbackground-clip: content-box;
		background-clip: content-box;
		-webkit-transition: all .15s;
		-moz-transition: all .15s;
		-ms-transition: all .15s;
		-o-transition: all .15s;
		transition: all .15s;
		visibility: hidden;
		filter: alpha(opacity=0);
		opacity: 0;
	}
	header>.col-sm-6>.topmenu.phone>li:hover ul {
		visibility: visible;
		filter: alpha(opacity=100);
		opacity: 1;
		z-index: 2;
	}
	header>.col-sm-6>.topmenu.phone>li ul>li.l1 {
		padding-top: 15px;
	}
	header>.col-sm-6>.topmenu.phone>li ul>li.l3 {
		padding-bottom: 15px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	header {
		height: 60px;
	}
	header>.col-sm-6.logo {
		padding-top: 0;
	}
	header .logo_img {
		width: 48px;
	}
	header .logo_txt {
		font-size: 36px;
		line-height: 60px;
	}
	.navbar-toggle {
		left: auto;
		right: 0;
		margin-top: 24px;
	}
	.navbar-toggle.collapsed {
		margin-top: 23px;
	}
	nav {
		padding: 60px 0 0;
	}
	.sub nav {
		padding: 105px 0 0;
	}
	#topmenu {
		margin-top: 1px;
		padding: 15px 0 15px 0;
		max-height: calc(100vh - 80px);
		overflow-y: auto;
	}
	.topmenu>li .item,
	.topmenu>li ul .item {
		padding: 7px 30px 7px 50px;
		font-weight: 200;
		font-size: 18px;
	}
	.topmenu>li.parent>ul>li.ph {
		display: none;
	}
	header>.submenu {
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
	}
}

@media (max-width: 767px) {
	header {
		height: 50px;
	}
	.navbar-toggle {
		margin: 0;
		padding: 16px 15px;
		background-color: rgba(0,30,60,.9);
		border: none;
	}
	.navbar-toggle.collapsed {
		padding: 17px 15px;
	}
	.navbar-toggle>.icon-bar {
		width: 23px;
	}
	.navbar-toggle>.icon-bar+.icon-bar {
		margin-top: 6px;
	}
	.navbar-toggle.collapsed>.icon-bar {
		margin: 4px 0;
	}
	.navbar-toggle:hover>.icon-bar:nth-child(1) {
		-webkit-transform: translateY(-2px);
		-moz-transform: translateY(-2px);
		-ms-transform: translateY(-2px);
		-o-transform: translateY(-2px);
		transform: translateY(-2px);
	}
	.navbar-toggle:hover>.icon-bar:nth-child(3) {
		-webkit-transform: translateY(2px);
		-moz-transform: translateY(2px);
		-ms-transform: translateY(2px);
		-o-transform: translateY(2px);
		transform: translateY(2px);
	}
	header .logo_txt {
		text-align: center;
		font-size: 30px;
		line-height: 50px;
	}
	.logo_mob {
		position: absolute;
		top: 10px;
		right: 15px;
		z-index: 8;
	}
	#topmenu {
		padding: 25px 0 25px 0;
		max-height: calc(100vh - 80px);
		overflow-y: auto;
	}
	.topmenu .btn.btn_bdblue {
		margin: 0 7px 7px;
		padding: 9px 0 0;
		width: 60px;
		height: 60px;
	}
	.topmenu .btn.btn_bdblue.demo {
		padding-top: 14px;
	}
	.topmenu>li .item,
	.topmenu>li ul .item {
		padding: 7px 30px 7px 50px;
		font-weight: 100;
		font-size: 20px;
	}
	.topmenu .opener {
		right: auto;
		left: 18px;
	}
	.topmenu.phone {
		display: none;
	}
	.topmenu>li ul>li.ph.l5 .item {
		padding: 20px 30px 15px 50px;
	}
}
/*** navigation end ***/

/* header end */


/* home */
section .col-sm-6 {
	overflow: hidden;
}
.section_title {
	padding: 0 0 25px;
	font-weight: 100;
	font-size: 60px;
	line-height: 1;
	color: #d50000;
}
.section_title>span.line {
	display: inline-block;
	position: relative;
	padding-bottom: 14px;
}

@media (max-width: 1199px) {
	section {
		height: auto !important;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	.section_title {
		font-size: 50px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	.section_title {
		padding: 0 0 25px;
		font-size: 40px;
	}
	.section_title>span.line:after {
		width: 180px;
	}
}

@media (min-width: 768px) {
	.section_title>span.line:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		margin-left: -143px;
		width: 290px;
		height: 1px;
		background-color: #1a237e;
	}
}

@media (max-width: 767px) {
	.section_title {
		position: absolute;
		top: 0;
		left: 0;
		padding: 25px 0 10px;
		/* width: 100%; */
		font-weight: 400;
		font-size: 32px;
	}
	.current .section_title {
		position: fixed;
		top: 50px !important;
		left: 0;
		padding: 5px 15px 8px;
		width: 100%;
		font-size: 22px;
		background-color: #fff;
		-webkit-box-shadow: 0 1px 5px rgba(0,0,0,.4);
		-moz-box-shadow: 0 1px 5px rgba(0,0,0,.4);
		box-shadow: 0 1px 5px rgba(0,0,0,.4);
		z-index: 8;
	}
	.section_title>span.line {
		padding-bottom: 8px;
	}
	.current .section_title>span.line {
		padding-bottom: 0;
	}
}

/*** first ***/
#first {
	background: url(../images/first_bg.jpg) 0 50% no-repeat;
	background-size: cover;
}
#first>.wrapper>.row>.col-sm-6 {
	min-height: 700px;
}
#first>.wrapper>.row .title {
	font-weight: 100;
	color: #d40000;
	line-height: 1;
}
#first>.wrapper>.row .title>span {
	font-weight: 200;
	font-size: 76px;
}
#first>.wrapper>.row .desc {
	margin: 40px 0 50px;
	max-width: 580px;
	font-weight: 200;
	line-height: 1.1;
	color: #001e3c;
}

@media (min-width: 1340px) {
	#first>.wrapper>.row .title {
		font-size: 98px;
	}
	#first>.wrapper>.row .desc {
		max-width: 590px;
		font-size: 40px;
	}
}

@media (max-width: 1339px) and (min-width: 1200px) {
	#first>.wrapper>.row>.col-sm-6 {
		min-height: 660px;
	}
	#first>.wrapper>.row .title {
		font-size: 86px;
	}
	#first>.wrapper>.row .desc {
		font-size: 36px;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	#first>.wrapper>.row>.col-sm-6 {
		min-height: 620px;
	}
	#first>.wrapper>.row .title {
		font-size: 68px;
	}
	#first>.wrapper>.row .title>span {
		font-size: 60px;
	}
	#first>.wrapper>.row .desc {
		font-size: 28px;
	}
}

@media (min-width: 992px) {
	#first>.wrapper>.row>.col-sm-6 {
		height: 100vh;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#first {
		background-position: -200px 50%;
	}
	#first>.wrapper>.row>.col-sm-6 {
		height: 620px;
		min-height: 620px;
	}
	#first>.wrapper>.row .title {
		font-size: 50px;
	}
	#first>.wrapper>.row .title>span {
		font-size: 42px;
	}
	#first>.wrapper>.row .desc {
		max-width: 400px;
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	#first {
		background-position: -250px 50%;
	}
	#first>.wrapper>.row>.col-sm-6 {
		padding-left: 17vw;
		height: 568px;
		min-height: 568px;
	}
	#first>.wrapper>.row .title {
		font-size: 38px;
	}
	#first>.wrapper>.row .title>span {
		font-size: 34px;
	}
	#first>.wrapper>.row .desc {
		margin: 20px 0;
		font-size: 18px;
	}
}
/*** first end ***/


/*** experience ***/
#experience {
	background: url(../images/experience_bg.jpg) 65% 50% no-repeat;
	background-size: cover;
}
#experience>.wrapper>.row>.col-sm-6 {
	padding: 100px 15px 50px;
	min-height: 900px;
	background-color: rgba(0,0,0,.25);
}
#experience .section_title {
	padding: 0;
	font-weight: 100;
	font-size: 64px;
	line-height: 1;
	color: #fff;
}
#experience>.wrapper>.row>.col-sm-6>.dt .year {
	margin-left: -40px;
	font-weight: 100;
	font-size: 230px;
	line-height: 1;
	color: #d50000;
	letter-spacing: -0.07em;
}
#experience>.wrapper>.row>.col-sm-6>.dt .year>span {
	letter-spacing: -0.1em;
}
#experience>.wrapper>.row>.col-sm-6>.dt .desc {
	font-weight: 100;
	font-size: 30px;
	line-height: 1.3;
	color: #fff;
}
.btn.btn_experience {
	margin: 22px 0 60px;
	padding: 0;
	width: 207px;
	height: 52px;
	font-weight: 100;
	font-size: 28px;
	line-height: 50px;
	color: #fff;
	background: url(../images/experience_btn.png) 50% 50% no-repeat;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}
#experience>.wrapper>.row>.col-sm-6>.dt .lbl {
	margin-bottom: 10px;
	font-weight: 100;
	font-size: 22px;
	line-height: 1.3;
	color: #fff;
}
#experience>.wrapper>.row>.col-sm-6>.dt .logos>img {
	display: inline-block;
	margin: 25px 13px;
}
#experience>.wrapper>.row>.col-sm-6>.dt .logos>img:first-child {
	margin-left: 0;
}

@media (max-width: 1199px) {
	#experience>.wrapper>.row>.col-sm-6>.dt .logos>img {
		margin: 25px 0 25px 4%;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .logos>img:first-child {
		margin-left: 0;
		width: 11.69%;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .logos>img:nth-child(2) {
		width: 13.31%;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .logos>img:nth-child(3) {
		width: 17.6%;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .logos>img:nth-child(4) {
		width: 39.748%;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	#experience>.wrapper>.row>.col-sm-6 {
		min-height: 780px;
	}
	#experience .section_title {
		padding: 0;
		font-size: 52px;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .year {
		margin-left: -25px;
		font-size: 184px;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .desc {
		font-size: 24px;
	}
	.btn.btn_experience {
		margin: 20px 0 50px;
		width: 174px;
		height: 44px;
		font-size: 24px;
		line-height: 42px;
		-webkit-border-radius: 1px;
		-moz-border-radius: 1px;
		border-radius: 1px;
	}
}

@media (min-width: 992px) {
	#experience>.wrapper>.row>.col-sm-6 {
		height: 100vh;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt {
		float: right;
		max-width: 610px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#experience>.wrapper>.row>.col-sm-6 {
		padding: 90px 15px 30px;
		height: 620px;
		min-height: 620px;
	}
	#experience .section_title {
		padding: 0;
		font-size: 38px;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .year {
		margin-left: -20px;
		font-size: 132px;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .desc {
		font-size: 20px;
	}
	.btn.btn_experience {
		margin: 15px 0 45px;
		width: 160px;
		height: 40px;
		font-size: 22px;
		line-height: 38px;
		-webkit-border-radius: 1px;
		-moz-border-radius: 1px;
		border-radius: 1px;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .lbl {
		margin-bottom: 10px;
		font-size: 18px;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .logos>img {
		margin: 0 0 0 4%;
	}
}

@media (min-width: 768px) {
	#experience>.wrapper>.row>.col-sm-6>.dt>.cell {
		padding-left: 20px;
	}
}

@media (max-width: 767px) {
	#experience {
		background-position: 0 50%;
	}
	#experience>.wrapper>.row>.col-sm-6 {
		padding: 15px 15px 25px;
		min-height: auto;
		text-align: center;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .ttl {
		padding-top: 64px;
	}
	#experience .section_title {
		padding: 15px 15px 0;
		width: 100%;
		text-align: center;
		font-size: 32px;
	}
	#experience.current .section_title {
		padding: 5px 15px 8px;
		font-weight: 400;
		font-size: 22px;
		background-color: #134061;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .year {
		margin-left: -10px;
		font-size: 114px;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .desc {
		font-size: 16px;
	}
	.btn.btn_experience {
		margin: 20px 0 25px;
		width: 174px;
		height: 44px;
		font-size: 24px;
		line-height: 42px;
		border: 1px solid #fff;
		-webkit-border-radius: 1px;
		-moz-border-radius: 1px;
		border-radius: 1px;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .lbl {
		margin-bottom: 10px;
		font-size: 16px;
	}
	#experience>.wrapper>.row>.col-sm-6>.dt .logos>img {
		margin: 0 0 0 4%;
	}
}
/*** experience end ***/


/*** overview ***/
#overview .wrapper>.dt>.cell {
    vertical-align: bottom;
}
#overview .col-sm-6 {
	overflow: hidden;
}
#overview .left {
	padding: 0;
	z-index: 1;
}
#overview .left>.img {
	position: absolute;
	bottom: 0;
	-webkit-transition: right 1s;
	-moz-transition: right 1s;
	-ms-transition: right 1s;
	-o-transition: right 1s;
	transition: right 1s;
}
#overview.ok .left>.img {
	right: 0;
}
#overview .left>.img>a,
#overview .img_b>a {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -45px 0 0 -30px;
	width: 90px;
	height: 90px;
	text-decoration: none;
	background-color: rgba(255,255,255,.7);
	border: 1px solid #d50000;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
#overview .img_b>a {
	margin-left: -45px;
}
#overview .left>.img>a>.play,
#overview .img_b>a>.play {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -19px 0 0 -11px;
	border: 19px solid transparent;
	border-left: 34px solid #d50000;
}
#overview .right>.dt {
	position: relative;
	max-width: 650px;
	-webkit-transition: 1s right .3s;
	-moz-transition: 1s right .3s;
	-ms-transition: 1s right .3s;
	-o-transition: 1s right .3s;
	transition: 1s right .3s;
}
#overview.ok .right>.dt {
	right: 0;
}
#overview .right>.dt>.cell>.title {
	margin-bottom: 25px;
	font-weight: 100;
	font-size: 62px;
	line-height: 1;
	color: #d50000;
}
#overview .right>.dt>.cell>.text {
	font-size: 22px;
	line-height: 1.27273;
}
#overview .structure {
	position: relative;
}
#overview .structure>.title {
	font-weight: 100;
	font-size: 50px;
	line-height: 84px;
	color: #fff;
	background-color: #006eff;
}
#overview .structure .items>.item {
	position: relative;
	font-weight: 200;
	line-height: 1.25;
	color: #fff;
	background: url(../images/overview_structure_bg1.jpg) 0 0 no-repeat;
	background-size: cover;
	border-top: 1px solid #fff;
	-webkit-transition: background .3s;
	-moz-transition: background .3s;
	-ms-transition: background .3s;
	-o-transition: background .3s;
	transition: background .3s;
}
#overview .structure .items>.item:hover {
	background: url(../images/overview_structure_bg1_hover.jpg) 0 0 no-repeat;
	background-size: cover;
}
#overview .structure .items>.item.i2 {
	background: url(../images/overview_structure_bg2.jpg) 50% 0 no-repeat;
	background-size: cover;
}
#overview .structure .items>.item.i2:hover {
	background: url(../images/overview_structure_bg2_hover.jpg) 50% 0 no-repeat;
	background-size: cover;
}
#overview .structure .items>.item.i3 {
	background: url(../images/overview_structure_bg3.jpg) 50% 0 no-repeat;
	background-size: cover;
}
#overview .structure .items>.item.i3:hover {
	background: url(../images/overview_structure_bg3_hover.jpg) 50% 0 no-repeat;
	background-size: cover;
}
#overview .structure .items>.item.i4 {
	background: url(../images/overview_structure_bg4.jpg) 50% 0 no-repeat;
	background-size: cover;
}
#overview .structure .items>.item.i4:hover {
	background: url(../images/overview_structure_bg4_hover.jpg) 50% 0 no-repeat;
	background-size: cover;
}
#overview .structure .items>.item.i5 {
	background: url(../images/overview_structure_bg5.jpg) 100% 0 no-repeat;
	background-size: cover;
}
#overview .structure .items>.item.i5:hover {
	background: url(../images/overview_structure_bg5_hover.jpg) 100% 0 no-repeat;
	background-size: cover;
}
#overview .structure .items>.item:before {
	content: '';
	position: absolute;
	top: 86px;
	left: 0;
	width: 100%;
	height: 91px;
	background: url(../images/overview_structure_img1.png) 50% 0 no-repeat;
}
#overview .structure .items>.item.i2:before {
	background: url(../images/overview_structure_img2.png) 50% 0 no-repeat;
}
#overview .structure .items>.item.i3:before {
	background: url(../images/overview_structure_img3.png) 50% 0 no-repeat;
}
#overview .structure .items>.item.i4:before {
	background: url(../images/overview_structure_img4.png) 50% 0 no-repeat;
}
#overview .structure .items>.item.i5:before {
	background: url(../images/overview_structure_img5.png) 50% 0 no-repeat;
}

@media (min-width: 1800px) {
	#overview .structure .items>.item {
		font-size: 28px;
	}
}

@media (max-width: 1799px) and (min-width: 1200px) {
	#overview .structure .items>.item {
		font-size: 22px;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	#overview.ok .left>.img {
		right: -70px;
	}
	#overview .right>.dt>.cell>.title {
		font-size: 54px;
	}
	#overview .structure .items>.item {
		font-size: 18px;
	}
}

@media (min-width: 992px) {
	#overview .wrapper {
		height: 100vh;
		min-height: 980px;
	}
	#overview .col-sm-6 {
		height: 616px;
	}
	#overview .right {
		padding-bottom: 85px;
	}
	#overview .structure {
		top: -81px;
	}
	#overview .structure .items>.item {
		padding-top: 200px;
		height: 360px;
	}
}

@media (min-width: 992px) and (max-height: 1061px) and (min-height: 981px) {
	#overview .structure {
		top: calc(100vh - 1061px);
	}
}

@media (min-width: 992px) and (min-height: 1062px) {
	#overview .structure {
		top: 0;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#overview .wrapper {
		height: 620px;
	}
	#overview .col-sm-6,
	#overview.ok .left>.img>img {
		height: 371px;
	}
	#overview .left>.img>a {
		margin: -28px 0 0 -20px;
		width: 56px;
		height: 56px;
	}
	#overview .left>.img>a>.play {
		margin: -12px 0 0 -7px;
		border: 12px solid transparent;
		border-left: 21px solid #d50000;
	}
	#overview .right>.dt>.cell>.title {
		font-size: 40px;
	}
	#overview .right>.dt>.cell>.text {
		font-size: 14px;
	}
	#overview .structure>.title {
		padding: 3px 0 9px;
		font-size: 36px;
		line-height: 1;
	}
	#overview .structure .items>.item {
		padding-top: 112px;
		height: 200px;
		font-size: 16px;
	}
	#overview .structure .items>.item:before {
		top: 34px;
		height: 60px;
		background: url(../images/overview_structure_img1.png) 50% 0 no-repeat;
		background-size: auto 60px;
	}
	#overview .structure .items>.item.i2:before {
		background: url(../images/overview_structure_img2.png) 50% 0 no-repeat;
		background-size: auto 60px;
	}
	#overview .structure .items>.item.i3:before {
		background: url(../images/overview_structure_img3.png) 50% 0 no-repeat;
		background-size: auto 60px;
	}
	#overview .structure .items>.item.i4:before {
		background: url(../images/overview_structure_img4.png) 50% 0 no-repeat;
		background-size: auto 60px;
	}
	#overview .structure .items>.item.i5:before {
		background: url(../images/overview_structure_img5.png) 50% 0 no-repeat;
		background-size: auto 60px;
	}
}

@media (min-width: 768px) {
	#overview .left>.img {
		right: -684px;
	}
	#overview .right>.dt {
		right: calc(100% + 15px);
	}
	#overview .right>.dt>.cell {
		padding: 0 60px 0 0;
	}
	#overview .structure>.title {
		position: relative;
		text-align: center;
	}
	#overview .structure>.title:before {
		content: '';
		position: absolute;
		top: -67px;
		left: calc(100% + 587px);
		margin-left: -294px;
		width: 587px;
		height: 70px;
		background: url(../images/overview_structure_ship.png) 0 0 no-repeat;
		-webkit-transition: 3s left 1s;
		-moz-transition: 3s left 1s;
		-ms-transition: 3s left 1s;
		-o-transition: 3s left 1s;
		transition: 3s left 1s;
	}
	#overview.ok .structure>.title:before {
		left: 50%;
	}
	#overview .structure .items:after {
		content: '';
		display: block;
		clear: both;
	}
	#overview .structure .items>.item {
		float: left;
		width: 20%;
		text-align: center;
		border-left: 1px solid #fff;
	}
	#overview .structure .items>.item:first-child {
		border-left: none;
	}
	#overview .structure .items>.item:before {
		left: 0;
		width: 100%;
	}
}

@media (max-width: 767px) {
	#overview>.ttl {
		padding-top: 54px;
	}
	#overview .right {
		padding: 0;
		-webkit-box-shadow: 0 2px 3px rgba(0,0,0,.3);
		-moz-box-shadow: 0 2px 3px rgba(0,0,0,.3);
		box-shadow: 0 5px 12px rgba(0,0,0,.3);
		z-index: 7;
	}
	#overview .right>.dt {
		max-width: 100%;
	}
	#overview .right>.dt>.cell {
		padding: 15px;
		background-color: rgba(255,255,255,.85);
	}
	#overview .section_title {
		margin: 0;
		padding: 15px 15px 0;
		width: 100%;
		font-weight: 100;
		font-size: 36px;
		line-height: 1.1;
		color: #d50000;
		background-color: rgba(255,255,255,.85);
		z-index: 8;
	}
	#overview.current .section_title {
		padding: 5px 15px 8px;
		font-weight: 400;
		font-size: 22px;
	}
	#overview .right>.dt>.cell>.text {
		font-size: 16px;
	}
	#overview .img_b {
		position: relative;
		margin-top: -23vw;
		width: 100vw;
		height: 70vw;
		overflow: hidden;
	}
	#overview .img_b>img {
		margin-left: -6.5vw;
		width: 107vw;
	}
	#overview .img_b>a {
		margin-top: calc(11.5vw - 45px);
	}
	#overview .structure>.title {
		padding-left: 15px;
		font-size: 30px;
		line-height: 1.86667;
	}
	#overview .structure .items>.item {
		display: table;
		width: 100%;
		height: 123px;
		font-size: 20px;
		background: url(../images/overview_structure_bg1.jpg) 0 50% no-repeat;
		background-size: cover;
	}
	#overview .structure .items>.item.i1:hover {
		background: url(../images/overview_structure_bg1_hover.jpg) 0 50% no-repeat;
		background-size: cover;
	}
	#overview .structure .items>.item.i2 {
		background: url(../images/overview_structure_bg2.jpg) 0 50% no-repeat;
		background-size: cover;
	}
	#overview .structure .items>.item.i2:hover {
		background: url(../images/overview_structure_bg2_hover.jpg) 0 50% no-repeat;
		background-size: cover;
	}
	#overview .structure .items>.item.i3 {
		background: url(../images/overview_structure_bg3.jpg) 50% 100% no-repeat;
		background-size: cover;
	}
	#overview .structure .items>.item.i3:hover {
		background: url(../images/overview_structure_bg3_hover.jpg) 50% 100% no-repeat;
		background-size: cover;
	}
	#overview .structure .items>.item.i4 {
		background: url(../images/overview_structure_bg4.jpg) 0 50% no-repeat;
		background-size: cover;
	}
	#overview .structure .items>.item.i4:hover {
		background: url(../images/overview_structure_bg4_hover.jpg) 0 50% no-repeat;
		background-size: cover;
	}
	#overview .structure .items>.item.i5 {
		background: url(../images/overview_structure_bg5.jpg) 100% 50% no-repeat;
		background-size: cover;
	}
	#overview .structure .items>.item.i5:hover {
		background: url(../images/overview_structure_bg5_hover.jpg) 100% 50% no-repeat;
		background-size: cover;
	}
	#overview .structure .items>.item>span {
		display: table-cell;
		padding-left: 150px;
		vertical-align: middle;
	}
	#overview .structure .items>.item:before {
		top: 16px;
		width: 150px;
		height: 91px;
		background: url(../images/overview_structure_img1.png) 50% 0 no-repeat;
	}
}

@media (max-width: 383px) {
	#overview .structure .items>.item.i1 {
		background: url(../images/overview_structure_bg1.jpg) 0 50% no-repeat;
		background-size: auto;
	}
	#overview .structure .items>.item.i1:hover {
		background: url(../images/overview_structure_bg1_hover.jpg) 0 50% no-repeat;
		background-size: auto;
	}
	#overview .structure .items>.item.i2 {
		background: url(../images/overview_structure_bg2.jpg) 0 50% no-repeat;
		background-size: auto;
	}
	#overview .structure .items>.item.i2:hover {
		background: url(../images/overview_structure_bg2_hover.jpg) 0 50% no-repeat;
		background-size: auto;
	}
	#overview .structure .items>.item.i3 {
		background: url(../images/overview_structure_bg3.jpg) 50% 100% no-repeat;
		background-size: auto;
	}
	#overview .structure .items>.item.i3:hover {
		background: url(../images/overview_structure_bg3_hover.jpg) 50% 100% no-repeat;
		background-size: auto;
	}
	#overview .structure .items>.item.i4 {
		background: url(../images/overview_structure_bg4.jpg) 0 50% no-repeat;
		background-size: auto;
	}
	#overview .structure .items>.item.i4:hover {
		background: url(../images/overview_structure_bg4_hover.jpg) 0 50% no-repeat;
		background-size: auto;
	}
	#overview .structure .items>.item.i5 {
		background: url(../images/overview_structure_bg5.jpg) 100% 50% no-repeat;
		background-size: auto;
	}
	#overview .structure .items>.item.i5:hover {
		background: url(../images/overview_structure_bg5_hover.jpg) 100% 50% no-repeat;
		background-size: auto;
	}
	#overview .structure .items>.item>span {
		padding-left: 130px;
	}
	#overview .structure .items>.item:before {
		width: 130px;
	}
}
/*** overview end ***/


/*** production_management ***/
#production_management .wrapper>.dt>.cell {
    vertical-align: bottom;
}
#production_management .col-sm-6 {
	overflow: hidden;
}
#production_management .right {
	padding: 0;
	z-index: 1;
}
#production_management .right>.img {
	position: absolute;
	top: -18px;
	-webkit-transition: 1s left .3s;
	-moz-transition: 1s left .3s;
	-ms-transition: 1s left .3s;
	-o-transition: 1s left .3s;
	transition: 1s left .3s;
}
#production_management.ok .right>.img {
	left: 0;
}
#production_management .right>.img>a {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -45px 0 0 -45px;
	width: 90px;
	height: 90px;
	text-decoration: none;
	background-color: rgba(255,255,255,.7);
	border: 1px solid #d50000;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
#production_management .right>.img>a>.play,
#production_management .img_b>a>.play {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -19px 0 0 -11px;
	border: 19px solid transparent;
	border-left: 34px solid #d50000;
}
#production_management .left {
	padding-right: 10px;
}
#production_management .left>.dt {
	position: relative;
	-webkit-transition: left 1s;
	-moz-transition: left 1s;
	-ms-transition: left 1s;
	-o-transition: left 1s;
	transition: left 1s;
}
#production_management.ok .left>.dt {
	left: 0;
}
#production_management .left>.dt>.cell>.title {
	margin-bottom: 25px;
	text-align: right;
	font-weight: 100;
	font-size: 60px;
	line-height: 1;
	color: #d50000;
}
#production_management .left>.dt>.cell>.text {
	font-size: 22px;
	line-height: 1.27273;
}
#production_management .structure>.title {
	font-weight: 100;
	font-size: 50px;
	line-height: 84px;
	color: #fff;
	background-color: #ffaa00;
}
#production_management .structure .items>.item {
	display: block;
	position: relative;
	font-weight: 200;
	font-size: 34px;
	line-height: 1.25;
	color: #fff;
	text-decoration: none;
	background: url(../images/production_management_structure_bg1.jpg) 50% 50% no-repeat;
	background-size: cover;
	border-top: 1px solid #fff;
	-webkit-transition: background .3s;
	-moz-transition: background .3s;
	-ms-transition: background .3s;
	-o-transition: background .3s;
	transition: background .3s;
}
#production_management .structure .items>.item:hover {
	background: url(../images/production_management_structure_bg1_hover.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#production_management .structure .items>.item.i2 {
	background: url(../images/production_management_structure_bg2.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#production_management .structure .items>.item.i2:hover {
	background: url(../images/production_management_structure_bg2_hover.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#production_management .structure .items>.item.i3 {
	background: url(../images/production_management_structure_bg3.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#production_management .structure .items>.item.i3:hover {
	background: url(../images/production_management_structure_bg3_hover.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#production_management .structure .items>.item:before {
	content: '';
	position: absolute;
	top: 86px;
	left: 0;
	width: 100%;
	height: 90px;
	background: url(../images/production_management_structure_img1.png) 50% 0 no-repeat;
}
#production_management .structure .items>.item.i2:before {
	background: url(../images/production_management_structure_img2.png) 50% 0 no-repeat;
}
#production_management .structure .items>.item.i3:before {
	background: url(../images/production_management_structure_img3.png) 50% 0 no-repeat;
}

@media (max-width: 1199px) and (min-width: 992px) {
	#production_management.ok.right>.img {
		right: -70px;
	}
	#production_management .left>.dt>.cell>.title {
		font-size: 54px;
	}
	#production_management .structure .items>.item {
		font-size: 28px;
	}
}

@media (min-width: 992px) {
	#production_management .wrapper {
		height: 100vh;
		min-height: 980px;
	}
	#production_management .col-sm-6 {
		height: 535px;
	}
	#production_management .structure .items>.item {
		padding-top: 200px;
		height: 360px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#production_management .wrapper {
		height: 620px;
	}
	#production_management.ok .right>.img {
		top: 0;
	}
	#production_management .col-sm-6 {
		height: 364px;
	}
	#production_management.ok .right>.img>img {
		height: 335px;
	}
	#production_management .right>.img>a {
		margin: -28px 0 0 -28px;
		width: 56px;
		height: 56px;
	}
	#production_management .right>.img>a>.play {
		margin: -12px 0 0 -7px;
		border: 12px solid transparent;
		border-left: 21px solid #d50000;
	}
	#production_management .left>.dt>.cell>.title {
		margin-bottom: 10px;
		font-size: 38px;
	}
	#production_management .left>.dt>.cell>.text {
		font-size: 14px;
	}
	#production_management .structure>.title {
		padding: 7px 0 12px;
		font-size: 36px;
		line-height: 1;
	}
	#production_management .structure .items>.item {
		padding-top: 112px;
		height: 200px;
		font-size: 18px;
	}
	#production_management .structure .items>.item:before {
		top: 34px;
		height: 60px;
		background: url(../images/production_management_structure_img1.png) 50% 0 no-repeat;
		background-size: auto 60px;
	}
	#production_management .structure .items>.item.i2:before {
		background: url(../images/production_management_structure_img2.png) 50% 0 no-repeat;
		background-size: auto 60px;
	}
	#production_management .structure .items>.item.i3:before {
		background: url(../images/production_management_structure_img3.png) 50% 0 no-repeat;
		background-size: auto 60px;
	}
}

@media (min-width: 768px) {
	#production_management .right>.img {
		left: -644px;
	}
	#production_management .left>.dt {
		left: calc(100% + 15px);
		float: right;
		max-width: 760px;
	}
	#production_management .structure>.title {
		position: relative;
		text-align: center;
	}
	#production_management .left>.dt>.cell>.text {
		float: right;
		max-width: 600px;
	}
	#production_management .structure>.title:before {
		content: '';
		position: absolute;
		top: -49px;
		left: -588px;
		margin-left: -294px;
		width: 588px;
		height: 52px;
		background: url(../images/production_management_structure_ship.png) 0 0 no-repeat;
		-webkit-transition: 3s left 1s;
		-moz-transition: 3s left 1s;
		-ms-transition: 3s left 1s;
		-o-transition: 3s left 1s;
		transition: 3s left 1s;
	}
	#production_management.ok .structure>.title:before {
		left: 50%;
	}
	#production_management .structure .items:after {
		content: '';
		display: block;
		clear: both;
	}
	#production_management .structure .items>.item {
		float: left;
		width: 33.333%;
		text-align: center;
		border-left: 1px solid #fff;
	}
	#production_management .structure .items>.item:first-child {
		border-left: none;
	}
	#production_management .structure .items>.item:before {
		left: 0;
		width: 100%;
	}
}

@media (max-width: 767px) {
	#production_management>.ttl {
		position: relative;
		padding-top: 93px;
		background-color: rgba(255,255,255,.85);
		z-index: 8;
	}
	#production_management .left {
		padding: 0;
		-webkit-box-shadow: 0 2px 3px rgba(0,0,0,.3);
		-moz-box-shadow: 0 2px 3px rgba(0,0,0,.3);
		box-shadow: 0 5px 12px rgba(0,0,0,.3);
		z-index: 7;
	}
	#production_management .left>.dt>.cell {
		padding: 15px;
		background-color: rgba(255,255,255,.85);
	}
	#production_management .section_title {
		margin: 0;
		padding: 15px 15px 0;
		max-width: 500px;
		font-weight: 100;
		font-size: 36px;
		line-height: 1.1;
		color: #d50000;
	}
	#production_management.current .section_title {
		padding: 5px 15px 8px;
		max-width: 100%;
		font-weight: 400;
		font-size: 22px;
	}
	#production_management .left>.dt>.cell>.text {
		font-size: 16px;
	}
	#production_management .right {
		overflow: visible;
	}
	#production_management .right>.img {
		position: relative;
		top: 0;
		margin-top: -20vw;
		width: 100vw;
		height: 66vw;
		overflow: hidden;
	}
	#production_management .right>.img>img {
		margin-left: -5vw;
		width: 112vw;
	}
	#production_management .right>.img>a {
		margin-top: calc(11.5vw - 45px);
	}
	#production_management .structure>.title {
		padding-left: 15px;
		font-size: 30px;
		line-height: 1.86667;
	}
	#production_management .structure .items>.item {
		display: table;
		width: 100%;
		height: 123px;
		font-size: 20px;
		background: url(../images/production_management_structure_bg1.jpg) 50% 50% no-repeat;
		background-size: cover;
	}
	#production_management .structure .items>.item.i2 {
		background: url(../images/production_management_structure_bg2.jpg) 50% 50% no-repeat;
		background-size: cover;
	}
	#production_management .structure .items>.item.i3 {
		background: url(../images/production_management_structure_bg3.jpg) 50% 50% no-repeat;
		background-size: cover;
	}
	#production_management .structure .items>.item>span {
		display: table-cell;
		padding-left: 150px;
		vertical-align: middle;
	}
	#production_management .structure .items>.item:before {
		top: 16px;
		width: 150px;
		height: 91px;
		background: url(../images/production_management_structure_img1.png) 50% 0 no-repeat;
	}
}

@media (max-width: 500px) {
	#production_management>.ttl {
		padding-top: 132px;
	}
	#production_management .section_title {
		max-width: 400px;
	}
}
/*** production_management end ***/


/*** inventory ***/
#inventory .wrapper>.dt>.cell {
    vertical-align: bottom;
}
#inventory .col-sm-6 {
	overflow: hidden;
}
#inventory .left {
	padding: 0;
	z-index: 1;
}
#inventory .left>.img {
	position: absolute;
	bottom: 0;
	-webkit-transition: right 1s;
	-moz-transition: right 1s;
	-ms-transition: right 1s;
	-o-transition: right 1s;
	transition: right 1s;
}
#inventory.ok .left>.img {
	right: 0;
}
#inventory .left>.img>a,
#inventory .img_b>a {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -45px 0 0 -5px;
	width: 90px;
	height: 90px;
	text-decoration: none;
	background-color: rgba(255,255,255,.7);
	border: 1px solid #d50000;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
#inventory .img_b>a {
	margin-left: -45px;
}
#inventory .left>.img>a>.play,
#inventory .img_b>a>.play {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -19px 0 0 -11px;
	border: 19px solid transparent;
	border-left: 34px solid #d50000;
}
#inventory .right>.dt {
	position: relative;
	max-width: 690px;
	-webkit-transition: 1s right .3s;
	-moz-transition: 1s right .3s;
	-ms-transition: 1s right .3s;
	-o-transition: 1s right .3s;
	transition: 1s right .3s;
}
#inventory.ok .right>.dt {
	right: 0;
}
#inventory .right>.dt>.cell>.title {
	margin-bottom: 25px;
	font-weight: 100;
	font-size: 60px;
	line-height: 1;
	color: #d50000;
}
#inventory .right>.dt>.cell>.text {
	font-size: 22px;
	line-height: 1.27273;
}
#inventory .structure {
	position: relative;
}
#inventory .structure>.title {
	font-weight: 100;
	font-size: 50px;
	line-height: 84px;
	color: #fff;
	background-color: #233DA3;
}
#inventory .structure .items>.item {
	position: relative;
	font-weight: 200;
	font-size: 34px;
	line-height: 1.25;
	color: #fff;
	background: url(../images/inventory_structure_bg1.jpg) 50% 50% no-repeat;
	background-size: cover;
	border-top: 1px solid #fff;
	-webkit-transition: background .3s;
	-moz-transition: background .3s;
	-ms-transition: background .3s;
	-o-transition: background .3s;
	transition: background .3s;
}
#inventory .structure .items>.item:hover {
	background: url(../images/inventory_structure_bg1_hover.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#inventory .structure .items>.item.i2 {
	background: url(../images/inventory_structure_bg2.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#inventory .structure .items>.item.i2:hover {
	background: url(../images/inventory_structure_bg2_hover.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#inventory .structure .items>.item.i3 {
	background: url(../images/inventory_structure_bg3.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#inventory .structure .items>.item.i3:hover {
	background: url(../images/inventory_structure_bg3_hover.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#inventory .structure .items>.item:before {
	content: '';
	position: absolute;
	top: 86px;
	left: 0;
	width: 100%;
	height: 96px;
	background: url(../images/inventory_structure_img1.png) 50% 0 no-repeat;
}
#inventory .structure .items>.item.i2:before {
	background: url(../images/inventory_structure_img2.png) 50% 0 no-repeat;
}
#inventory .structure .items>.item.i3:before {
	background: url(../images/inventory_structure_img3.png) 50% 0 no-repeat;
}

@media (max-width: 1199px) and (min-width: 992px) {
	#inventory.ok .left>.img {
		right: -70px;
	}
	#inventory .right>.dt>.cell>.title {
		font-size: 48px;
	}
	#inventory .structure .items>.item {
		font-size: 28px;
	}
}

@media (min-width: 992px) {
	#inventory .wrapper {
		height: 100vh;
		min-height: 980px;
	}
	#inventory .col-sm-6 {
		height: 571px;
	}
	#inventory .right {
		padding-bottom: 85px;
	}
	#inventory .structure {
		top: -36px;
	}
	#inventory .structure .items>.item {
		padding-top: 200px;
		height: 360px;
	}
}

@media (min-width: 992px) and (max-height: 1016px) and (min-height: 981px) {
	#inventory .structure {
		top: calc(100vh - 1016px);
	}
}

@media (min-width: 992px) and (min-height: 1017px) {
	#inventory .structure {
		top: 0;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#inventory .wrapper {
		height: 620px;
	}
	#inventory .col-sm-6 {
		height: 362px;
	}
	#inventory.ok .left>.img>img {
		height: 345px;
	}
	#inventory .left>.img>a {
		margin: -28px 0 0 -4px;
		width: 56px;
		height: 56px;
	}
	#inventory .left>.img>a>.play {
		margin: -12px 0 0 -7px;
		border: 12px solid transparent;
		border-left: 21px solid #d50000;
	}
	#inventory .right {
		padding-bottom: 30px;
	}
	#inventory .right>.dt>.cell>.title {
		margin-bottom: 10px;
		font-size: 38px;
	}
	#inventory .right>.dt>.cell>.text {
		font-size: 14px;
	}
	#inventory .structure>.title {
		padding: 8px 0 13px;
		font-size: 36px;
		line-height: 1;
	}
	#inventory .structure .items>.item {
		padding-top: 112px;
		height: 200px;
		font-size: 18px;
	}
	#inventory .structure .items>.item:before {
		top: 34px;
		height: 62px;
		background: url(../images/inventory_structure_img1.png) 50% 0 no-repeat;
		background-size: auto 60px;
	}
	#inventory .structure .items>.item.i2:before {
		background: url(../images/inventory_structure_img2.png) 50% 0 no-repeat;
		background-size: auto 60px;
	}
	#inventory .structure .items>.item.i3:before {
		background: url(../images/inventory_structure_img3.png) 50% 0 no-repeat;
		background-size: auto 60px;
	}
}

@media (min-width: 768px) {
	#inventory .left>.img {
		right: -653px;
	}
	#inventory .right>.dt {
		right: calc(100% + 15px);
	}
	#inventory .right>.dt>.cell {
		padding-right: 40px;
	}
	#inventory .structure>.title {
		position: relative;
		text-align: center;
	}
	#inventory .structure>.title:before {
		content: '';
		position: absolute;
		top: -45px;
		left: calc(100% + 588px);
		margin-left: -294px;
		width: 588px;
		height: 48px;
		background: url(../images/inventory_structure_ship.png) 0 0 no-repeat;
		-webkit-transition: 3s left 1s;
		-moz-transition: 3s left 1s;
		-ms-transition: 3s left 1s;
		-o-transition: 3s left 1s;
		transition: 3s left 1s;
	}
	#inventory.ok .structure>.title:before {
		left: 50%;
	}
	#inventory .structure .items:after {
		content: '';
		display: block;
		clear: both;
	}
	#inventory .structure .items>.item {
		float: left;
		width: 33.333%;
		text-align: center;
		border-left: 1px solid #fff;
	}
	#inventory .structure .items>.item:first-child {
		border-left: none;
	}
	#inventory .structure .items>.item:before {
		left: 0;
		width: 100%;
	}
}

@media (max-width: 767px) {
	#inventory>.ttl {
		position: relative;
		padding-top: 93px;
		background-color: rgba(255,255,255,.85);
		z-index: 8;
	}
	#inventory .right {
		padding: 0;
		-webkit-box-shadow: 0 2px 3px rgba(0,0,0,.3);
		-moz-box-shadow: 0 2px 3px rgba(0,0,0,.3);
		box-shadow: 0 5px 12px rgba(0,0,0,.3);
		z-index: 7;
	}
	#inventory .right>.dt {
		max-width: 100%;
	}
	#inventory .right>.dt>.cell {
		padding: 15px;
		background-color: rgba(255,255,255,.85);
	}
	#inventory .section_title {
		margin: 0;
		padding: 15px 15px 0;
		width: 100%;
		max-width: 500px;
		font-weight: 100;
		font-size: 36px;
		line-height: 1.1;
		color: #d50000;
		background-color: rgba(255,255,255,.85);
		z-index: 8;
	}
	#inventory.current .section_title {
		padding: 5px 15px 8px;
		max-width: 100%;
		font-weight: 400;
		font-size: 22px;
	}
	#inventory .right>.dt>.cell>.text {
		font-size: 16px;
	}
	#inventory .img_b {
		position: relative;
		margin-top: -23vw;
		width: 100vw;
		height: 70vw;
		overflow: hidden;
	}
	#inventory .img_b>img {
		margin-left: -7vw;
		width: 115vw;
	}
	#inventory .img_b>a {
		margin-top: calc(11.5vw - 45px);
	}
	#inventory .structure>.title {
		padding-left: 15px;
		font-size: 30px;
		line-height: 1.86667;
	}
	#inventory .structure .items>.item {
		display: table;
		width: 100%;
		height: 123px;
		font-size: 20px;
		background: url(../images/inventory_structure_bg1.jpg) 50% 50% no-repeat;
		background-size: cover;
	}
	#inventory .structure .items>.item.i2 {
		background: url(../images/inventory_structure_bg2.jpg) 50% 50% no-repeat;
		background-size: cover;
	}
	#inventory .structure .items>.item.i3 {
		background: url(../images/inventory_structure_bg3.jpg) 50% 50% no-repeat;
		background-size: cover;
	}
	#inventory .structure .items>.item>span {
		display: table-cell;
		padding-left: 150px;
		vertical-align: middle;
	}
	#inventory .structure .items>.item:before {
		top: 16px;
		width: 150px;
		height: 96px;
		background: url(../images/inventory_structure_img1.png) 50% 0 no-repeat;
	}
}

@media (max-width: 500px) {
	#inventory>.ttl {
		padding-top: 132px;
	}
	#inventory .section_title {
		max-width: 400px;
	}
}
/*** inventory end ***/


/*** finance ***/
#finance .section_title {
	color: #d50000;
}
#finance .left .dt {
    position: relative;
    max-width: 560px;
    font-size: 18px;
    -webkit-transition: 1s left .5s;
    -moz-transition: 1s left .5s;
    -ms-transition: 1s left .5s;
    -o-transition: 1s left .5s;
    transition: 1s left .5s;
}
#finance.ok .left .dt {
    left: 0;
}
#finance .left .dt .subtitle {
    font-size: 22px;
}
#finance .left .dt .structure {
    color: #512da8;
}
#finance .left .dt .structure>.title {
	font-weight: 100;
	font-size: 40px;
}
#finance .left .dt .structure .item {
	position: relative;
	display: block;
    color: #512da8;
	text-decoration: none;
}
#finance .right {
	padding: 0;
}
#finance .right>img {
	position: relative;
	min-width: 100%;
    -webkit-transition: opacity 2s;
    -moz-transition: opacity 2s;
    -ms-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
}
#finance.ok .right>img {
	filter: alpha(opacity=100);
	opacity: 1;
}

@media (min-width: 1200px) {
	#finance .left .dt .structure .item {
		font-size: 28px;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	#finance .left .dt .structure .item {
		font-size: 22px;
	}
}

@media (min-width: 992px) {
	#finance>.wrapper>.row>.col-sm-6 {
		height: 100vh;
		min-height: 780px;
	}
	#finance .left {
		padding: 20px 30px 0 15px; 
	}
	#finance .left .dt .structure>.title {
		margin: 100px 0 35px;
	}
	#finance .left .dt .structure .item {
		margin: 0 20px 15px 0;
		line-height: 1.25;
	}
	#finance .left .dt .structure .item>span {
		border-bottom: 1px dashed;
	}
	#finance .left .dt .structure .item:hover:before {
		right: -20px;
		margin-top: -10px;
		width: 4px;
		height: 20px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#finance>.wrapper>.row>.col-sm-6,
	#finance .right>img	{
		height: 620px;
	}
	#finance .left {
		padding: 20px 10px 0 15px;
	}
	#finance .left .dt .structure>.title {
		margin: 45px 0 25px;
		font-size: 30px;
	}
	#finance .left .dt .subtitle {
		font-size: 20px;
	}
	#finance .left .dt .structure .item {
		margin: 0 11px 10px 0;
		font-size: 17px;
		line-height: 1.25;
	}
	#finance .left .dt .structure .item:hover:before {
		right: -11px;
		margin-top: -6px;
		width: 2px;
		height: 12px;
	}
}

@media (min-width: 768px) {
	#finance .left .dt {
		left: calc(100% + 25px);
		float: right;
		text-align: right;
	}
	#finance .right>img {
		filter: alpha(opacity=0);
		opacity: 0;
	}
	#finance .left .dt .structure .item:hover:before {
		content: '';
		position: absolute;
		top: 50%;
		background-color: #d50000;
	}
}

@media (max-width: 767px) {
	#finance .wrapper {
		padding: 0 15px;
	}
	#finance .left .dt {
		max-width: 100%;
	}
	#finance .left .dt>.cell>.ttl {
		padding-top: 89px;
	}
	#finance .section_title {
		margin: 0;
		padding: 15px 0 0;
		width: 100%;
		max-width: 500px;
		font-weight: 100;
		font-size: 34px;
		line-height: 1.1;
		color: #d50000;
		background-color: rgba(255,255,255,.85);
	}
	#finance.current .section_title {
		padding: 5px 15px 8px;
		max-width: 100%;
		font-weight: 400;
		font-size: 22px;
	}
	#finance .left .dt .subtitle {
		margin-top: 15px;
		font-size: 16px;
	}
	#finance .left .dt .structure>.title {
		margin: 25px 0 10px;
		font-size: 30px;
	}
	#finance .left .dt .structure>.items {
		position: relative;
		margin: 0 -15px;
	}
	#finance .left .dt .structure .item {
		padding: 10px 15px 10px 32px;
		font-size: 22px;
		line-height: 1;
		border-top: 1px solid transparent;
	}
	#finance .left .item:before,
	#finance .left .item:after,
	#finance .left .items:after {
		content: '';
		position: absolute;
		top: 1px;
		left: 0;
		width: 22px;
		height: 100%;
		background: #512da8;
	}
	#finance .left .item:after,
	#finance .left .items:after {
		top: 0;
		width: 100%;
		height: 1px;
		background: -webkit-gradient(linear, 0 0, 100% 0, color-stop(50%,rgba(81,45,168,.33)), color-stop(100%,rgba(255,255,255,.33)));
		background: -webkit-linear-gradient(left, rgba(81,45,168,.33) 50%, rgba(255,255,255,.33) 100%);
		background: -o-linear-gradient(left, rgba(81,45,168,.33) 50%, rgba(255,255,255,.33) 100%);
		background: -moz-linear-gradient(left, rgba(81,45,168,.33) 50%, rgba(255,255,255,.33) 100%);
		background: linear-gradient(to right, rgba(81,45,168,.33) 50%, rgba(255,255,255,.33) 100%);
	}
	#finance .left .items:after {
		top: auto;
		bottom: 0;
	}
}

@media (max-width: 500px) {
	#finance .left .dt>.cell>.ttl {
		padding-top: 126px;
	}
	#finance .section_title {
		max-width: 400px;
	}
}
/*** finance end ***/


/*** personnel ***/
#personnel .section_title {
	color: #d50000;
}
#personnel .right .dt {
    position: relative;
    max-width: 560px;
    font-size: 18px;
    -webkit-transition: 1s right .5s;
    -moz-transition: 1s right .5s;
    -ms-transition: 1s right .5s;
    -o-transition: 1s right .5s;
    transition: 1s right .5s;
}
#personnel.ok .right .dt {
    right: 0;
}
#personnel .right .dt .subtitle {
    font-size: 22px;
}
#personnel .right .dt .structure {
    color: #0091ea;
}
#personnel .right .dt .structure>.title {
	font-weight: 100;
	font-size: 40px;
}
#personnel .right .dt .structure .item {
	position: relative;
	display: block;
    color: #006eff;
	text-decoration: none;
}
#personnel .left {
	padding: 0;
}
#personnel .left>img {
	position: relative;
	min-width: 100%;
    -webkit-transition: opacity 2s;
    -moz-transition: opacity 2s;
    -ms-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
}
#personnel.ok .left>img {
	filter: alpha(opacity=100);
	opacity: 1;
}

@media (min-width: 1200px) {
	#personnel .right .dt .structure .item {
		font-size: 28px;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	#personnel .right .dt .structure .item {
		font-size: 22px;
	}
}

@media (min-width: 992px) {
	#personnel>.wrapper>.row>.col-sm-6 {
		height: 100vh;
		min-height: 820px;
	}
	#personnel .right {
		padding: 20px 15px 0 30px; 
	}
	#personnel .right .dt .structure>.title {
		margin: 80px 0 30px;
	}
	#personnel .right .dt .structure .item {
		margin: 0 0 15px 20px;
		line-height: 1.25;
	}
	#personnel .right .dt .structure .item>span {
		border-bottom: 1px dashed;
	}
	#personnel .right .dt .structure .item:hover:before {
		left: -20px;
		margin-top: -10px;
		width: 4px;
		height: 20px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#personnel>.wrapper>.row>.col-sm-6,
	#personnel .left>img	{
		height: 620px;
	}
	#personnel .right {
		padding: 20px 15px 0 10px;
	}
	#personnel .right .dt .structure>.title {
		margin: 45px 0 25px;
		font-size: 30px;
	}
	#personnel .right .dt .subtitle {
		font-size: 20px;
	}
	#personnel .right .dt .structure .item {
		margin: 0 0 10px 11px;
		font-size: 17px;
		line-height: 1.25;
	}
	#personnel .right .dt .structure .item:hover:before {
		left: -11px;
		margin-top: -6px;
		width: 2px;
		height: 12px;
	}
}

@media (min-width: 768px) {
	#personnel .right .dt {
		right: calc(100% + 25px);
	}
	#personnel .left>img {
		filter: alpha(opacity=0);
		opacity: 0;
	}
	#personnel .right .dt .structure .item:hover:before {
		content: '';
		position: absolute;
		top: 50%;
		background-color: #d50000;
	}
}

@media (max-width: 767px) {
	#personnel .wrapper {
		padding: 0 15px;
	}
	#personnel .right .dt {
		max-width: 100%;
	}
	#personnel .right .dt>.cell>.ttl {
		padding-top: 89px;
	}
	#personnel .section_title {
		margin: 0;
		padding: 15px 0 0;
		width: 100%;
		max-width: 500px;
		font-weight: 100;
		font-size: 34px;
		line-height: 1.1;
		color: #d50000;
		background-color: rgba(255,255,255,.85);
	}
	#personnel.current .section_title {
		padding: 5px 15px 8px;
		max-width: 100%;
		font-weight: 400;
		font-size: 22px;
	}
	#personnel .right .dt .subtitle {
		margin-top: 15px;
		font-size: 16px;
	}
	#personnel .right .dt .structure>.title {
		margin: 25px 0 10px;
		font-size: 30px;
	}
	#personnel .right .dt .structure>.items {
		position: relative;
		margin: 0 -15px;
	}
	#personnel .right .dt .structure .item {
		padding: 10px 15px 10px 32px;
		font-size: 22px;
		line-height: 1;
		border-top: 1px solid transparent;
	}
	#personnel .right .item:before,
	#personnel .right .item:after,
	#personnel .right .items:after {
		content: '';
		position: absolute;
		top: 1px;
		left: 0;
		width: 22px;
		height: 100%;
		background: #0091ea;
	}
	#personnel .right .item:after,
	#personnel .right .items:after {
		top: 0;
		width: 100%;
		height: 1px;
		background: -webkit-gradient(linear, 0 0, 100% 0, color-stop(50%,rgba(0,145,234,.33)), color-stop(100%,rgba(255,255,255,.33)));
		background: -webkit-linear-gradient(left, rgba(0,145,234,.33) 50%, rgba(255,255,255,.33) 100%);
		background: -o-linear-gradient(left, rgba(0,145,234,.33) 50%, rgba(255,255,255,.33) 100%);
		background: -moz-linear-gradient(left, rgba(0,145,234,.33) 50%, rgba(255,255,255,.33) 100%);
		background: linear-gradient(to right, rgba(0,145,234,.33) 50%, rgba(255,255,255,.33) 100%);
	}
	#personnel .right .items:after {
		top: auto;
		bottom: 0;
	}
}

@media (max-width: 500px) {
	#personnel .right .dt>.cell>.ttl {
		padding-top: 126px;
	}
	#personnel .section_title {
		max-width: 320px;
	}
}
/*** personnel end ***/


/*** extra ***/
#extra .section_title {
	padding-bottom: 20px;
	color: #d50000;
}
#extra .left .dt {
    position: relative;
    max-width: 560px;
    font-size: 18px;
    -webkit-transition: 1s left .5s;
    -moz-transition: 1s left .5s;
    -ms-transition: 1s left .5s;
    -o-transition: 1s left .5s;
    transition: 1s left .5s;
}
#extra.ok .left .dt {
    left: 0;
}
#extra .left .dt .subtitle {
    font-size: 22px;
}
#extra .left .dt .structure {
    color: #ffaa00;
}
#extra .left .dt .structure>.title {
	font-weight: 100;
	font-size: 40px;
}
#extra .left .dt .structure .item {
	position: relative;
	display: block;
    color: #e68800;
	text-decoration: none;
}
#extra .right {
	padding: 0;
}
#extra .right>img {
	position: relative;
	min-width: 100%;
    -webkit-transition: opacity 2s;
    -moz-transition: opacity 2s;
    -ms-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
}
#extra.ok .right>img {
	filter: alpha(opacity=100);
	opacity: 1;
}

@media (min-width: 1200px) {
	#extra .left .dt .structure .item {
		font-size: 28px;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	#extra .left .dt .structure .item {
		font-size: 22px;
	}
}

@media (min-width: 992px) {
	#extra>.wrapper>.row>.col-sm-6 {
		height: 100vh;
		min-height: 820px;
	}
	#extra .left {
		padding: 20px 30px 0 15px; 
	}
	#extra .left .dt .structure>.title {
		margin: 70px 0 20px;
	}
	#extra .left .dt .structure .item {
		margin: 0 20px 15px 0;
		line-height: 1.25;
	}
	#extra .left .dt .structure .item>span {
		border-bottom: 1px dashed;
	}
	#extra .left .dt .structure .item:hover:before {
		right: -20px;
		margin-top: -10px;
		width: 4px;
		height: 20px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#extra .section_title {
		padding-bottom: 15px;
	}
	#extra>.wrapper>.row>.col-sm-6,
	#extra .right>img	{
		height: 620px;
	}
	#extra .left {
		padding: 20px 10px 0 15px;
	}
	#extra .left .dt .structure>.title {
		margin: 15px 0 5px;
		font-size: 30px;
	}
	#extra .left .dt .subtitle {
		font-size: 19px;
	}
	#extra .left .dt .structure .item {
		margin: 0 11px 10px 0;
		font-size: 17px;
		line-height: 1.25;
	}
	#extra .left .dt .structure .item:hover:before {
		right: -11px;
		margin-top: -6px;
		width: 2px;
		height: 12px;
	}
}

@media (min-width: 768px) {
	#extra .left .dt {
		left: calc(100% + 25px);
		float: right;
		text-align: right;
	}
	#extra .left .dt .subtitle {
		line-height: 1.25;
	}
	#extra .right>img {
		filter: alpha(opacity=0);
		opacity: 0;
	}
	#extra .left .dt .structure .item:hover:before {
		content: '';
		position: absolute;
		top: 50%;
		background-color: #d50000;
	}
}

@media (max-width: 767px) {
	#extra .wrapper {
		padding: 0 15px;
	}
	#extra .left .dt {
		max-width: 100%;
	}
	#extra .left .dt>.cell>.ttl {
		padding-top: 89px;
	}
	#extra .section_title {
		margin: 0;
		padding: 15px 0 0;
		width: 100%;
		max-width: 500px;
		font-weight: 100;
		font-size: 34px;
		line-height: 1.1;
		color: #d50000;
		background-color: rgba(255,255,255,.85);
	}
	#extra.current .section_title {
		padding: 5px 15px 8px;
		max-width: 100%;
		font-weight: 400;
		font-size: 22px;
	}
	#extra .left .dt .subtitle {
		margin-top: 15px;
		font-size: 16px;
	}
	#extra .left .dt .structure>.title {
		margin: 25px 0 10px;
		font-size: 30px;
	}
	#extra .left .dt .structure>.items {
		position: relative;
		margin: 0 -15px;
	}
	#extra .left .dt .structure .item {
		padding: 10px 15px 10px 32px;
		font-size: 22px;
		line-height: 1;
		border-top: 1px solid transparent;
	}
	#extra .left .item:before,
	#extra .left .item:after,
	#extra .left .items:after {
		content: '';
		position: absolute;
		top: 1px;
		left: 0;
		width: 22px;
		height: 100%;
		background: #ffaa00;
	}
	#extra .left .item:after,
	#extra .left .items:after {
		top: 0;
		width: 100%;
		height: 1px;
		background: -webkit-gradient(linear, 0 0, 100% 0, color-stop(50%,rgba(255,170,0,.33)), color-stop(100%,rgba(255,255,255,.33)));
		background: -webkit-linear-gradient(left, rgba(255,170,0,.33) 50%, rgba(255,255,255,.33) 100%);
		background: -o-linear-gradient(left, rgba(255,170,0,.33) 50%, rgba(255,255,255,.33) 100%);
		background: -moz-linear-gradient(left, rgba(255,170,0,.33) 50%, rgba(255,255,255,.33) 100%);
		background: linear-gradient(to right, rgba(255,170,0,.33) 50%, rgba(255,255,255,.33) 100%);
	}
	#extra .left .items:after {
		top: auto;
		bottom: 0;
	}
}

@media (max-width: 500px) {
	#extra .left .dt>.cell>.ttl {
		padding-top: 126px;
	}
	#extra .section_title {
		max-width: 400px;
	}
}
/*** extra end ***/


/*** mobile ***/
#mobile>.wrapper {
	padding: 0;
}
#mobile .section_title {
	padding-bottom: 20px;
	color: #d50000;
}
#mobile .subtitle,
#mobile .items>.item>.text {
    font-size: 22px;
	line-height: 1.25;
}
#mobile .items>.item>.title {
	margin-bottom: 15px;
	font-weight: 400;
    font-size: 26px;
	line-height: 1.1;
	color: #1a237e;
}

@media (min-width: 1920px) {
	#mobile .img {
		padding: 26px 9% 50px;
	}
}

@media (max-width: 1919px) and  (min-width: 768px) {
	#mobile .img {
		padding: 1.4% 9% 2.6%;
	}
}

@media (min-width: 1700px) {
	#mobile>.wrapper {
		min-height: 930px;
	}
}

@media (max-width: 1699px) and (min-width: 1500px) {
	#mobile>.wrapper {
		min-height: 890px;
	}
}

@media (max-width: 1499px) and (min-width: 1200px) {
	#mobile>.wrapper {
		min-height: 840px;
	}
}

@media (min-width: 1200px) {
	#mobile>.wrapper {
		padding-top: 60px;
	}
	#mobile .items>.item>.text {
		min-height: 104px;
	}
	#mobile .items>.item:first-child>.text {
		padding-left: 130px;
	}
	#mobile .items>.item>.text:before {
		top: 4px;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	#mobile>.wrapper {
		min-height: 720px;
	}
	#mobile .items>.item:first-child {
		padding-right: 5px;
	}
	#mobile .items>.item>.title {
		font-size: 24px;
	}
	#mobile .items>.item:first-child>.text {
		padding-left: 115px;
	}
	#mobile .items>.item>.text {
		min-height: 100px;
		font-size: 18px;
	}
	#mobile .items>.item>.text:before {
		top: 0;
	}
}

@media (min-width: 992px) {
	#mobile>.wrapper {
		height: 100vh;
	}
	#mobile .subtitle {
		margin-bottom: 40px;
	}
	#mobile .items>.item>.text {
		position: relative;
		padding-left: 80px;
	}
	#mobile .items>.item>.text:before {
		content: '';
		position: absolute;
		left: 0;
		width: 50px;
		height: 100px;
		background: url(../images/sprite.png) -101px -325px no-repeat;
	}
	#mobile .items>.item:first-child>.text:before {
		width: 100px;
		background-position: 0 -325px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#mobile>.wrapper {
		padding-top: 60px;
	}
	#mobile .subtitle {
		margin-bottom: 15px;
		font-size: 20px;
	}
	#mobile .items>.item {
		padding: 5px 50px 0 145px;
		min-height: 124px;
	}
	#mobile .items>.item:first-child {
		min-height: 119px;
	}
	#mobile .items>.item:before {
		content: '';
		position: absolute;
		top: 5px;
		left: 52px;
		width: 50px;
		height: 100px;
		background: url(../images/sprite.png) -101px -325px no-repeat;
	}
	#mobile .items>.item:first-child:before {
		top: 0;
		left: 27px;
		width: 100px;
		background-position: 0 -325px;
	}
	#mobile .items>.item>.title {
		margin-bottom: 5px;
		font-size: 22px;
	}
	#mobile .items>.item>.text {
		font-size: 18px;
	}
}

@media (min-width: 768px) {
	#mobile .img {
		margin-top: 30px;
		background-color: #233DA3;
	}
	#mobile .img>img {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	#mobile>.wrapper {
		position: relative;
		margin-top: 23px;
	}
	#mobile>.wrapper:before {
		content: '';
		position: absolute;
		top: -23px;
		left: 0;
		width: 100%;
		height: 23px;
		background-color: #233DA3;
	}
	#mobile>.wrapper>.dt>.cell>.container>.text-center>.ttl {
		padding-top: 89px;
	}
	#mobile .section_title {
		margin: 0;
		padding: 15px 0 0;
		width: 100%;
		font-weight: 100;
		font-size: 34px;
		line-height: 1.1;
		color: #d50000;
		background-color: rgba(255,255,255,.85);
	}
	#mobile.current .section_title {
		padding: 5px 15px 8px;
		max-width: 100%;
		font-weight: 400;
		font-size: 22px;
	}
	#mobile .subtitle {
		margin: 15px 0;
		font-size: 16px;
	}
	#mobile .items {
		background-color: #233DA3;
	}
	#mobile .items>.item {
		padding: 15px;
	}
	#mobile .items>.item>.title {
		position: relative;
		padding-left: 95px;
		height: 50px;
		font-weight: 200;
		font-size: 20px;
		color: #fff;
	}
	#mobile .items>.item:first-child {
		border-bottom: 1px solid #fff;
	}
	#mobile .items>.item>.title:before {
		content: '';
		position: absolute;
		top: 0;
		left: 15px;
		width: 50px;
		height: 50px;
		background: url(../images/sprite.png) -51px -223px no-repeat;
	}
	#mobile .items>.item:first-child>.title:before {
		background: url(../images/sprite.png) 0 -223px no-repeat;
	}
	#mobile .items>.item>.text {
		font-size: 16px;
		color: #fff;
	}
}

@media (max-width: 500px) {
	#mobile>.wrapper>.dt>.cell>.container>.text-center>.ttl {
		padding-top: 126px;
	}
	#mobile .section_title {
		max-width: 400px;
	}
}

@media (max-width: 359px) {
	#mobile .items>.item>.title {
		padding-left: 65px;
	}
	#mobile .items>.item>.title:before {
		left: 0;
	}
}
/*** mobile end ***/


/*** productive ***/
#productive>.wrapper {
	padding: 0;
}
#productive .section_title {
	color: #d50000;
}
#productive .subtitle {
    font-size: 22px;
	line-height: 1.25;
}
#productive .items .item {
	position: relative;
	height: 270px;
	font-size: 24px;
	line-height: 1.1666667;
	color: #fff;
	background-color: #673ab7;
}
#productive .btns {
	padding: 25px 0 30px;
}

@media (min-width: 1800px) {
	#productive .items>.row>.item .cell {
		padding-left: 50%;
	}
	#productive .items>.row>.item:before {
		top: 50%;
		left: 25%;
		margin: -50px 0 0 -50px;
	}
}

@media (max-width: 1799px) and (min-width: 992px) {
	#productive .items>.row>.item .cell {
		padding-top: 134px;
		text-align: center;
	}
	#productive .items>.row>.item:before {
		top: 22px;
		left: 50%;
		margin-left: -50px;
	}
}

@media (min-width: 1200px) {
	#productive>.wrapper {
		padding-top: 60px;
		min-height: 900px;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	#productive>.wrapper {
		min-height: 850px;
	}
}

@media (min-width: 992px) {
	#productive>.wrapper {
		height: 100vh;
	}
	#productive .subtitle {
		margin-bottom: 40px;
	}
	#productive .items>.row>.item:before {
		content: '';
		position: absolute;
		width: 100px;
		height: 100px;
		background: url(../images/sprite.png) 0 -21px no-repeat;
	}
	#productive .items>.row>.item.i2:before {
		background-position: -101px -21px;
	}
	#productive .items>.row>.item.i3:before {
		background-position: -202px -21px;
	}
	#productive .items>.row>.item.i4:before {
		background-position: -303px -21px;
	}
	#productive .items>.row>.item.i5:before {
		background-position: 0 -122px;
	}
	#productive .items>.row>.item.i6:before {
		background-position: -101px -122px;
	}
	#productive .items>.row>.item.i7:before {
		background-position: -202px -122px;
	}
	#productive .items>.row>.item.i8:before {
		background-position: -303px -122px;
	}
	#productive .btn.btn_bdlilac {
		padding: 5px 32px 6px;
		font-weight: 100;
		font-size: 28px;
	}
	#productive .btns>.lbl {
		padding-left: 25px;
		vertical-align: middle;
		font-weight: 100;
		font-size: 28px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#productive>.wrapper {
		padding-top: 60px;
	}
	#productive .subtitle {
		margin-bottom: 15px;
		font-size: 20px;
	}
	#productive .items .item {
		height: 160px;
		font-size: 19px;
	}
	#productive .items>.row>.item:before {
		content: '';
		position: absolute;
		top: 18px;
		left: 50%;
		margin-left: -25px;
		width: 50px;
		height: 50px;
		background: url(../images/sprite.png) 0 -223px no-repeat;
	}
	#productive .items>.row>.item.i2:before {
		background-position: -51px -223px;
	}
	#productive .items>.row>.item.i3:before {
		background-position: -102px -223px;
	}
	#productive .items>.row>.item.i4:before {
		background-position: -153px -223px;
	}
	#productive .items>.row>.item.i5:before {
		background-position: 0 -274px;
	}
	#productive .items>.row>.item.i6:before {
		background-position: -51px -274px;
	}
	#productive .items>.row>.item.i7:before {
		background-position: -102px -274px;
	}
	#productive .items>.row>.item.i8:before {
		background-position: -153px -274px;
	}
	#productive .items>.row>.item .cell {
		padding-top: 70px;
		text-align: center;
	}
	#productive .btns {
		padding: 17px 0 20px;
	}
	#productive .btn.btn_bdlilac {
		padding: 3px 23px 4px;
		font-size: 22px;
	}
	#productive .btns>.lbl {
		padding-left: 20px;
		vertical-align: middle;
		font-size: 22px;
	}
}

@media (min-width: 768px) {
	#productive .items>.row:first-child>.item {
		border-bottom: 1px solid #fff;
	}
	#productive .items>.row>.item {
		border-left: 1px solid #fff;
	}
	#productive .items>.row>.item:first-child {
		border-left: none;
	}
}

@media (max-width: 767px) {
	#productive>.wrapper>.dt>.cell>.container>.text-center>.ttl {
		padding-top: 89px;
	}
	#productive .section_title {
		margin: 0;
		padding: 15px 0 0;
		width: 100%;
		font-weight: 100;
		font-size: 34px;
		line-height: 1.1;
		color: #d50000;
		background-color: rgba(255,255,255,.85);
	}
	#productive .section_title>span {
		font-size: 24px;
	}
	#productive.current .section_title {
		padding: 5px 15px 8px;
		max-width: 100%;
		font-weight: 400;
		font-size: 22px;
	}
	#productive .subtitle {
		margin: 15px 0;
		font-size: 16px;
	}
	#productive .items .item {
		height: 99px;
		font-size: 18px;
		border-top: 1px solid #fff;
	}
	#productive .items>.row:first-child>.item:first-child {
		border-top: none;
	}
	#productive .items>.row>.item:before {
		content: '';
		position: absolute;
		top: 24px;
		left: 25%;
		margin-left: -25px;
		width: 50px;
		height: 50px;
		background: url(../images/sprite.png) 0 -223px no-repeat;
	}
	#productive .items>.row>.item.i2:before {
		background-position: -51px -223px;
	}
	#productive .items>.row>.item.i3:before {
		background-position: -102px -223px;
	}
	#productive .items>.row>.item.i4:before {
		background-position: -153px -223px;
	}
	#productive .items>.row>.item.i5:before {
		background-position: 0 -274px;
	}
	#productive .items>.row>.item.i6:before {
		background-position: -51px -274px;
	}
	#productive .items>.row>.item.i7:before {
		background-position: -102px -274px;
	}
	#productive .items>.row>.item.i8:before {
		background-position: -153px -274px;
	}
	#productive .items>.row>.item .cell {
		padding: 0 15px 0 43%;
	}
	#productive .btn.btn_bdlilac {
		margin-bottom: 5px;
		padding: 3px 23px 4px;
		font-size: 22px;
	}
	#productive .btns>.lbl {
		font-size: 16px;
	}
}
/*** mobile end ***/

/* home end */


/* production_preparation */

/*** pp_tasks ***/
.marine.sub #content {
	overflow: hidden;
}
.pp_tasks>.wrapper>.img_wrap {
	position: absolute;
	bottom: 0;
	left: -66.6666667%;
	width: calc(66.6666667% - 60px);
	max-width: calc(33.3333333% + 435px);
	text-align: right;
	z-index: 1;
	-webkit-transition: 1s left .3s;
    -moz-transition: 1s left .3s;
    -ms-transition: 1s left .3s;
    -o-transition: 1s left .3s;
    transition: 1s left .3s;
}
.pp_tasks.ok>.wrapper>.img_wrap {
	left: 0;
}
.pp_tasks>.wrapper>.img_wrap>.img {
	position: relative;
	display: inline-block;
}
.pp_tasks>.wrapper>.img_wrap>.img>a {
	position: absolute;
    top: 50%;
    left: 50%;
    margin: -110px 0 0 -50px;
    width: 90px;
    height: 90px;
    text-decoration: none;
    background-color: rgba(255,255,255,.7);
    border: 1px solid #d50000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.pp_tasks>.wrapper>.img_wrap>.img>a>.play {
	position: absolute;
    top: 50%;
    left: 50%;
    margin: -19px 0 0 -11px;
    border: 19px solid transparent;
    border-left: 34px solid #d50000;
}
.pp_tasks>.wrapper>.row>.col-sm-8 {
	padding: 210px 60px 0;
	background-color: #fff;
}
.pp_tasks>.wrapper>.row>.col-sm-8>img {
	position: absolute;
	top: 210px;
	left: -200px;
}
.pp_tasks>.wrapper>.row>.col-sm-8>.wrap {
	max-width: 810px;
	-webkit-transition: right 1s;
    -moz-transition: right 1s;
    -ms-transition: right 1s;
    -o-transition: right 1s;
    transition: right 1s;
}
.pp_tasks>.wrapper>.row>.col-sm-8>.wrap .title {
	margin-bottom: 25px;
    font-weight: 100;
    font-size: 64px;
    line-height: 1;
    color: #001e3c;
}
.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.subtitle {
	margin-bottom: 25px;
    font-weight: 100;
    font-size: 30px;
    line-height: 1.3;
}
.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav {
	position: relative;
	float: right;
	padding: 100px 0 0 10px;
	width: 415px;
	background-color: rgba(255,255,255,.85);
	z-index: 2;
}
.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav>.wrapin>.title {
    font-size: 46px;
}
.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav>.wrapin>ul {
    list-style: none;
	margin: 0 0 30px;
	padding: 0;
}
.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav>.wrapin>ul>li {
    padding: 6px 0 10px;
}
.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav>.wrapin>ul>li>a {
    font-size: 24px;
	line-height: 1;
    color: #ffa200;
}

@media (max-width: 1199px) and (min-width: 992px) {
	.pp_tasks>.wrapper>.img_wrap>.img {
		right: calc(360px - 50%);
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	.pp_tasks>.wrapper>.img_wrap {
		bottom: 15px;
		width: 450px;
		max-width: calc(100% - 370px);
		height: 322px;
	}
	.pp_tasks>.wrapper>.img_wrap>.img {
		position: absolute;
		top: 0;
		left: 50%;
		margin-left: -212px;
	}
	.pp_tasks>.wrapper>.img_wrap>.img>img {
		width: 424px;
	}
	.pp_tasks>.wrapper>.img_wrap>.img>a {
		margin: -77px 0 0 -58px;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8 {
		margin-left: 183px;
		padding-left: 40px;
		width: calc(100% - 183px);
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>img {
		left: -135px;
		width: 90px;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap .title {
		margin-bottom: 10px;
		font-size: 40px;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.subtitle {
		font-size: 19px;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav {
		padding-top: 40px;
		width: calc(100vw - 510px);
		min-width: 310px;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav>.wrapin>.title {
		font-size: 32px;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav>.wrapin>ul>li {
		padding-bottom: 3px;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav>.wrapin>ul>li>a {
		font-size: 18px;
	}
}

@media (min-width: 768px) {
	.pp_tasks {
		background-color: #ffa200;
	}
	.pp_tasks>.wrapper {
		padding-bottom: 33px;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap {
		position: relative;
		right: -67vw;
	}
	.pp_tasks.ok>.wrapper>.row>.col-sm-8>.wrap {
		right: 0;
	}
}

@media (max-width: 767px) {
	.pp_tasks>.wrapper>.row>.col-sm-8 {
		padding: 50px 15px 0;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>img {
		top: 64px;
		left: 14px;
		width: 60px;
		height: 60px;
		z-index: 1;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.title {
		position: relative;
		margin: 0 -15px 10px;
		padding: 10px 15px 14px 85px;
		height: 88px;
		font-size: 32px;
		background-color: #ffa200;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap .subtitle {
		text-align: center;
		font-weight: 200;
		font-size: 14px;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav {
		float: none;
		margin-left: 10px;
		padding: 0;
		width: auto;
		text-align: center;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav>.wrapin {
		display: inline-block;
		text-align: left;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav>.wrapin>.title {
		margin-bottom: 10px;
		font-size: 30px;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav>.wrapin>ul>li {
		padding-bottom: 3px;
	}
	.pp_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav>.wrapin>ul>li>a {
		font-size: 16px;
	}
}
/*** pp_tasks end ***/


/*** pp_task1 ***/
.pp_task.t1 {
	background-color: #fff;
}
.pp_task>.wrapper>.row>.col-md-6 {
	overflow: visible;
}
.pp_task.t1>.wrapper>.row>.col-md-6>.row>.img_wrap {
	margin: 75px -40px 0 0;
	max-width: calc(100% + 40px);
}
.pp_task.t1>.wrapper>.row>.col-md-6>.row>.img_wrap>.img {
	position: relative;
	display: inline-block;
}
.pp_task .title_sec  {
	margin-bottom: 35px;
	font-weight: 100;
	font-size: 60px;
	line-height: 1.1;
}
.pp_task>.wrapper>.row>.col-md-6>.text {
	margin-bottom: 10px;
}
.pp_task.t1>.wrapper>.row>.col-md-6>.text {
	background-color: rgba(255,255,255,.9);
}
.pp_task.t1>.wrapper>.row>.col-md-6>.text>.title_sec {
	color: #ff004d;
}
.pp_task>.wrapper>.row>.col-md-6>.text>.txt {
	padding: 3px 0 5px 15px;
	font-weight: 100;
	font-size: 22px;
	line-height: 1.25;
}
.pp_task.t1>.wrapper>.row>.col-md-6>.text>.txt {
	border-left: 1px solid #ff004d;
}
.pp_task.t1>.wrapper>.row>.col-md-6>.img {
	display: inline-block;
	position: relative;
}
.pp_task>.wrapper>.row>.col-md-6 .img>a,
.pp_task>.wrapper .img_sm>a,
.pp_task>.wrapper .img_xs>a,
.pp_task>.wrapper>.img_wrap>.img>a {
	position: absolute;
	top: calc(50% - 90px);
	left: calc(50% - 45px);
	z-index: 8;
}
.pp_task.t1>.wrapper>.row>.col-md-6>.img>img+img {
	position: absolute;
	top: 32px;
	right: -185px;
}

@media (max-width: 1919px) and (min-width: 992px) {
	.pp_task.t1>.wrapper>.row>.col-md-6>.row>.img_wrap>.img {
		right: calc(492px - 50%);
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	.pp_task .title_sec {
		font-size: 50px;
	}
}

@media (min-width: 992px) {
	.pp_task.t1 {
		padding-top: 90px;
	}
	.pp_task.t1>.wrapper>.row>.col-md-6>.row>.img_wrap {
		position: relative;
		left: -80vw;
		-webkit-transition: left 1s;
		-moz-transition: left 1s;
		-ms-transition: left 1s;
		-o-transition: left 1s;
		transition: left 1s;
	}
	.pp_task.t1.ok>.wrapper>.row>.col-md-6>.row>.img_wrap {
		left: 0;
	}
	.pp_task.t1>.wrapper>.row>.col-md-6>.text {
		position: relative;
		right: -60vw;
		padding-right: 50px;
		max-width: 675px;
		-webkit-transition: 1s right .3s;
		-moz-transition: 1s right .3s;
		-ms-transition: 1s right .3s;
		-o-transition: 1s right .3s;
		transition: 1s right .3s;
	}
	.pp_task.t1.ok>.wrapper>.row>.col-md-6>.text {
		right: 0;
	}
	.pp_task.t1>.wrapper>.row>.col-md-6>.img {
		left: 100vw;
		-webkit-transition: 1s left .7s;
		-moz-transition: 1s left .7s;
		-ms-transition: 1s left .7s;
		-o-transition: 1s left .7s;
		transition: 1s left .7s;
	}
	.pp_task.t1.ok>.wrapper>.row>.col-md-6>.img {
		left: -340px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	.pp_task.t1 {
		padding-top: 30px;
	}
	.pp_task>.wrapper .title_sec {
		position: relative;
		margin-bottom: 15px;
		padding-bottom: 9px;
		text-align: center;
		font-size: 36px;
	}
	.pp_task>.wrapper .title_sec:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		margin-left: -107px;
		width: 214px;
		height: 1px;
	}
	.pp_task>.wrapper>.row>.col-md-6>.text {
		padding: 0 50px;
	}
	.pp_task.t1>.wrapper>.row>.col-md-6>.text>.title_sec:after {
		background-color: #ff004d;
	}
	.pp_task>.wrapper>.row>.col-md-6>.text>.txt {
		text-align: center;
		font-size: 16px;
		border: none !important;
	}
	.pp_task>.wrapper .img_sm {
		position: relative;
		margin: 0 -15px;
		text-align: center;
	}
}

@media (min-width: 768px) {
	.pp_task.t1 {
		margin-top: -33px;
	}
}

@media (max-width: 767px) {
	.pp_task.t1 {
		padding-bottom: 25px;
	}
	.pp_task>.ttl {
		padding-top: 93px;
	}
	.pp_task .section_title,
	#build_ships .section_title,
	#structure .section_title {
		margin: 0;
		padding: 15px 10px 0 80px;
		max-width: 500px;
		font-weight: 100;
		font-size: 26px;
		line-height: 1;
	}
	.pp_task.t1 .section_title {
		padding-top: 20px;
		color: #ff004d;
	}
	.pp_task .section_title:before {
		content: '';
		position: absolute;
		top: 15px;
		left: 10px;
		width:61px;
		height: 61px;
		background: url(../images/pp_task1_icon_xs.png) 0 0 no-repeat;
	}
	.pp_task.current .section_title,
	#build_ships.current .section_title,
	#structure .current .section_title {
		padding: 5px 15px 8px;
		max-width: 100%;
		font-weight: 400;
		font-size: 22px;
	}
	.pp_task.current .section_title:before {
		display: none;
	}
	.pp_task>.wrapper>.row>.col-md-6>.text>.txt {
		margin-bottom: 40px;
		padding-left: 10px;
		font-size: 14px;
	}
	.pp_task>.wrapper .img_xs {
		position: relative;
		text-align: center;
		z-index: 2;
	}
	.pp_task>.wrapper .img_xs>img {
		-webkit-box-shadow: 0 5px 12px rgba(0,0,0,.33);
		-moz-box-shadow: 0 5px 12px rgba(0,0,0,.33);
		box-shadow: 0 5px 12px rgba(0,0,0,.33);
	}
	.pp_task>.wrapper .img_xs>a {
		margin-top: 45px;
	}
}
/*** pp_task1 end ***/


/*** pp_task2 ***/
.pp_task {
	overflow: visible;
}
.pp_task.t2>.wrapper>.row>.col-md-6>.text>.title_sec {
	color: #0080ff;
}
.pp_task.t2>.wrapper>.row>.col-md-6>.text>.txt {
	border-left: 1px solid #0080ff;
}

@media (max-width: 1199px) and (min-width: 992px) {
	.pp_task.t2>.wrapper>.img_icon {
		top: -160px;
	}
}

@media (min-width: 992px) {
	.pp_task.t2>.wrapper>.img_icon {
		position: absolute;
		top: -151px;
		left: -230px;
		z-index: 1;
		-webkit-transition: left 1s;
		-moz-transition: left 1s;
		-ms-transition: left 1s;
		-o-transition: left 1s;
		transition: left 1s;
	}
	.pp_task.t2.ok>.wrapper>.img_icon {
		left: calc(50% - 450px);
	}
	.pp_task.t2>.wrapper>.row>.col-md-6>.text {
		position: relative;
		left: -55vw;
		float: right;
		max-width: 590px;
		-webkit-transition: left 1s;
		-moz-transition: left 1s;
		-ms-transition: left 1s;
		-o-transition: left 1s;
		transition: left 1s;
	}
	.pp_task.t2.ok>.wrapper>.row>.col-md-6>.text {
		left: 0;
	}
	.pp_task.t2>.wrapper>.row>.col-md-6>.img_wrap {
		position: relative;
		right: -55vw;
		-webkit-transition: 1s right .3s;
		-moz-transition: 1s right .3s;
		-ms-transition: 1s right .3s;
		-o-transition: 1s right .3s;
		transition: 1s right .3s;
		z-index: 3;
	}
	.pp_task.t2.ok>.wrapper>.row>.col-md-6>.img_wrap {
		right: 0;
	}
	.pp_task.t2>.wrapper>.row>.col-md-6>.img_wrap>.img {
		position: relative;
		max-width: 860px;
	}
	.pp_task.t2>.wrapper>.row>.col-md-6>.img_wrap>.img1>img {
		position: absolute;
		top: -205px;
		left: -62px;
	}
	.pp_task.t2>.wrapper>.row>.col-md-6>.img_wrap>.img1>a {
		position: absolute;
		top: 60px;
		left: calc(50% - 45px);
	}
	.pp_task.t2>.wrapper>.row>.col-md-6>.img_wrap>.img2>img {
		position: absolute;
		top: 131px;
		left: calc(50% - 150px)
	}
	.pp_task.t2>.wrapper>.row>.col-md-6>.img_wrap>.img2>a {
		position: absolute;
		top: 331px;
		left: calc(50% + 40px);
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	.pp_task.t2>.wrapper>.row>.col-md-6>.text>.title_sec:after {
		background-color: #0080ff;
	}
	.pp_task>.wrapper .img_sm {
		z-index: 3;
	}
}

@media  (min-width: 768px) {
	.pp_task.t2 {
		min-height: 535px;
	}
}

@media (max-width: 767px) {
	.pp_task.t2 .ttl {
		height: 119px;
	}
	.pp_task.t2 .section_title {
		color: #0080ff;
	}
	.pp_task.t2 .section_title:before {
		background: url(../images/pp_task2_icon_xs.png) 0 0 no-repeat;
	}
}
/*** pp_task2 end ***/


/*** pp_task3 ***/
.pp_task.t3 {
	background-color: #9b009b;
}
.pp_task>.wrapper>.text {
	position: relative;
	margin: 0 auto;
	padding: 75px 50px 7px;
	max-width: 1240px;
	text-align: center;
	color: #fff;
	background-color: rgba(155,0,155,.8);
	z-index: 2;
}
.pp_task>.wrapper>.text>.title_sec {
	position: relative;
	margin: 0 0 20px;
	padding-bottom: 15px;
}
.pp_task>.wrapper>.text>.title_sec:after {
	content: '';
	position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -80px;
    width: 160px;
    height: 1px;
	background-color: #fff;
}
.pp_task>.wrapper>.text>.txt {
	font-weight: 100;
	font-size: 24px;
	line-height: 1.3;
}
.pp_task>.wrapper>.img_wrap {
	position: absolute;
	top: 247px;
	left: calc(50% - 725px);
	width: 1450px;
}
.pp_task>.wrapper>.img_wrap>.img_icon {
	position: absolute;
	top: 40px;
	right: 132px;
	z-index: 2;
}
.pp_task>.wrapper>.img_wrap>.img1 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.pp_task>.wrapper>.img_wrap>.img2 {
	position: absolute;
	top: 195px;
	right: 0;
	z-index: 1;
}

@media (max-width: 1199px) and (min-width: 992px) {
	.pp_task>.wrapper>.img_wrap {
		left: auto;
		right: -134px;
	}
}

@media (min-width: 992px) {
	.pp_task.t3>.wrapper {
		height: 960px;
	}
	.pp_task>.wrapper>.text>.title_sec {
		margin: 0 60px 20px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	.pp_task.t3 {
		margin-top: -48px;
	}
	.pp_task>.wrapper>.text {
		padding: 30px 50px 20px;
	}
	.pp_task>.wrapper>.text>.title_sec {
		padding-bottom: 10px;
	}
	.pp_task>.wrapper>.text>.txt {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.pp_task.t3 {
		margin-top: -26px;
	}
	.pp_task.t3>.ttl {
		height: 165px;
	}
	.pp_task.t3 .section_title {
		top: 45px;
	}
	.pp_task>.wrapper>.text {
		padding: 0;
	}
	.pp_task>.wrapper>.text>.txt {
		margin-bottom: 40px;
		padding-left: 10px;
		text-align: left;
		font-size: 14px;
	}
	.pp_task.t3 .section_title {
		color: #fff;
	}
	.pp_task.t3.current .section_title {
		color: #9b009b;
	}
	.pp_task.t3 .section_title:before {
		background: url(../images/pp_task3_icon_xs.png) 0 0 no-repeat;
	}
	.pp_task.t3>.wrapper>.text>.txt {
		border-left: 1px solid #fff;
	}
	.pp_task.t3>.wrapper .img_xs {
		position: relative;
		top: 26px;
	}
}
/*** pp_task3 end ***/


/*** pp_task4 ***/
#pp_task4>.wrapper>.row>.col-md-6>.text>.title_sec {
	color: #00c853;
}
#pp_task4>.wrapper>.row>.col-md-6>.text>.txt {
    border-left: 1px solid #00c853;
}
#pp_task4>.wrapper>.row>.col-md-6>.text>.title_sec:after {
	background-color: #00c853;
}

@media (max-width: 767px) {
	#pp_task4 {
		margin-top: 26px;
	}
	#pp_task4 .section_title {
		color: #00c853;
	}
	#pp_task4 .section_title:before {
		background: url(../images/pp_task4_icon_xs.png) 0 0 no-repeat;
	}
}
/*** pp_task4 end ***/


/*** pp_task5 ***/
#pp_task5>.wrapper>.row>.col-md-6>.text>.title_sec {
	color: #ff5a00;
}
#pp_task5>.wrapper>.row>.col-md-6>.text>.txt {
    border-left: 1px solid #ff5a00;
}
#pp_task5>.wrapper>.row>.col-md-6>.text>.title_sec:after {
	background-color: #ff5a00;
}

@media (min-width: 992px) {
	#pp_task5>.wrapper>.row>.col-md-6>.img_wrap>.img1>img {
		left: -92px;
	}
	#pp_task5>.wrapper>.row>.col-md-6>.img_wrap>.img2>a {
		top: 303px;
		left: calc(50% + 77px);
	}
}

@media (max-width: 767px) {
	#pp_task5 .section_title {
		color: #ff5a00;
	}
	#pp_task5 .section_title:before {
		background: url(../images/pp_task5_icon_xs.png) 0 0 no-repeat;
	}
}
/*** pp_task5 end ***/


/*** pp_task6 ***/
#pp_task6 {
	background-color: #0080ff;
}
#pp_task6>.wrapper>.text {
	max-width: 1270px;
	background-color: rgba(0,128,255,.8);
}

@media (min-width: 992px) {
	#pp_task6>.wrapper>.text {
		padding-top: 40px;
	}
	#pp_task6>.wrapper>.img_wrap>.img_icon {
		top: 55px;
		right: 170px;
	}
	#pp_task6>.wrapper>.img_wrap>.img2 {
		top: 218px;
	}
}

@media (max-width: 767px) {
	#pp_task6.current .section_title {
		color: #0080ff;
	}
	#pp_task6 .section_title:before {
		background-image: url(../images/pp_task6_icon_xs.png);
	}
}
/*** pp_task6 end ***/


/*** pp_task7 ***/
#pp_task7>.wrapper>.row>.col-md-6>.img>img+img {
	right: -140px;
}

@media (min-width: 992px) {
	#pp_task7>.wrapper>.row>.col-md-6>.text {
		margin-bottom: 25px;
	}
}

@media (max-width: 767px) {
	#pp_task7 {
		margin-top: 26px;
	}
	#pp_task7 .section_title:before {
		background-image: url(../images/pp_task7_icon_xs.png);
	}
}
/*** pp_task7 end ***/


/*** pp_task8 ***/

@media (min-width: 992px) {
	#pp_task8 {
		margin-top: 20px;
		padding-top: 20px;
	}
	#pp_task8>.wrapper>.row>.col-md-6>.img_wrap>.img1>img {
		left: -92px;
	}
	#pp_task8>.wrapper>.row>.col-md-6>.img_wrap>.img2>img {
		top: 150px;
		left: calc(50% - 100px);
	}
	#pp_task8>.wrapper>.row>.col-md-6>.img_wrap>.img2>a {
		top: 300px;
		left: calc(50% + 100px);
	}
}

@media (max-width: 767px) {
	#pp_task8 .section_title:before {
		background-image: url(../images/pp_task8_icon_xs.png);
	}
}
/*** pp_task8 end ***/


/*** build_ships ***/
#build_ships {
	background-color: #ff9c00;
}
#build_ships .title_sec {
	font-weight: 100;
	font-size: 50px;
	line-height: 1.2;
}
#build_ships>.wrapper {
	padding: 0;
}
#build_ships>.wrapper:after {
	content: '';
	display: block;
	clear: both;
}
#build_ships>.wrapper>.imgs>.img {
	position: relative;
	float: left;
}
#build_ships>.wrapper>.imgs>.img>.logo {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -59px 0 0 -111px;
}

@media (max-width: 1559px) and (min-width: 1200px) {
	#build_ships>.wrapper>.imgs>.img>.logo {
		margin: -45px 0 0 -85px;
		width: 170px;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	#build_ships .title_sec {
		font-size: 36px;
	}
	#build_ships>.wrapper>.imgs>.img>.logo {
		margin: -37px 0 0 -70px;
		width: 140px;
	}
}

@media (min-width: 992px) {
	#build_ships>.wrapper .dt {
		width: 34.35vw;
		height: 15.488vw;
	}
	#build_ships>.wrapper>.imgs>.img {
		border-right: 1px solid #fff;
	}
	#build_ships>.wrapper>.imgs>.img:first-child {
		border-left: 1px solid #fff;
	}
	#build_ships>.wrapper>.imgs>.img>.image {
		width: 15.488vw;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#build_ships {
		margin-top: -33px;
	}
	#build_ships>.wrapper .dt {
		width: 28%;
		height: 17vw;
	}
	#build_ships .title_sec {
		font-size: 22px;
	}
	#build_ships>.wrapper>.imgs>.img {
		width: 18%;
		border-left: 1px solid #fff;
	}
	#build_ships>.wrapper>.imgs>.img>.image {
		width: 100%;
	}
	#build_ships>.wrapper>.imgs>.img>.logo {
		margin: -32px 0 0 -60px;
		width: 120px;
	}
}

@media (min-width: 768px) {
	#build_ships>.wrapper .dt {
		float: left;
		text-align: right;
	}
	#build_ships>.wrapper .dt>.cell {
		padding-right: 2.5813vw;
	}
}

@media (max-width: 767px) {
	#build_ships {
		margin-top: -26px;
	}
	#build_ships .ttl {
		height: 138px;
	}
	#build_ships .section_title {
		top: 45px;
		padding-left: 10px;
		width: 100%;
		max-width: 100%;
		text-align: center;
		color: #001e3c;
	}
	#build_ships>.wrapper>.imgs {
		border-top: 1px solid #fff;
	}
	#build_ships>.wrapper>.imgs>.img {
		width: 50%;
		border-bottom: 1px solid #fff;
	}
	#build_ships>.wrapper>.imgs>.img:nth-child(even) {
		position: relative;
	}
	#build_ships>.wrapper>.imgs>.img:nth-child(even):before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 1px;
		height: 100%;
		background-color: #fff;
	}
	#build_ships>.wrapper>.imgs>.img>.image {
		width: 100%;
	}
	#build_ships>.wrapper>.imgs>.img>.logo {
		margin: -34px 0 0 -65px;
		width: 130px;
	}
}
/*** build_ships end ***/


/*** structure ***/
#structure {
	background-color: #00c853;
	border-top: 1px solid #fff;
	overflow: hidden;
}
#structure.ppl {
	background-color: #9a009a;
}
#structure.pr {
	background-color: #0080ff;
}
#structure .structure {
	background-color: #fff;
}
#structure .more {
	color: #fff;
}
#structure .more .title_sec {
	font-weight: 100;
    font-size: 50px;
    line-height: 1.3;
	color: #fff;
}
#structure .structure .wrapper {
	padding-left: 5vw;
}
#structure .structure .title_sec {
	margin-bottom: 55px;
	font-weight: 100;
    font-size: 60px;
    line-height: 1.3;
}
#structure .more .booklet {
	display: block;
	margin: 55px 0 50px;
	color: #fff;
	text-decoration: none;
}
#structure .more .booklet>img {
    float: right;
    border: 2px solid #fff;
}
#structure .more .booklet>.text {
    float: right;
    margin: 2px 20px 0 0;
	line-height: 25px;
}
#structure .structure .item:after {
	content: '';
	display: block;
	clear: both;
}
#structure .structure .item>img {
	float: left;
	margin-right: 35px;
}
#structure .structure .item>.text {
	float: left;
	font-weight: 100;
	font-size: 35px;
	line-height: 64px;
}

@media (max-width: 1379px) and (min-width: 1200px) {
	#structure .structure .title_sec {
		font-size: 54px;
	}
	#structure .structure .item>img {
		margin-right: 30px;
	}
	#structure .structure .item>.text {
		font-size: 30px;
	}
}

@media (max-width: 1299px) and (min-width: 1200px) {
	#structure .more .title_sec {
		font-size: 48px;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	#structure .more .title_sec {
		font-size: 38px;
	}
	#structure .structure .title_sec {
		font-size: 44px;
	}
	#structure .structure .item>img {
		margin-right: 25px;
	}
	#structure .structure .item>.text {
		font-size: 24px;
	}
}

@media (min-width: 992px) {
	#structure .wrapper {
		height: 664px;
	}
	#structure .more {
		width: 34.35vw;
		font-size: 24px;
	}
	#structure .more .wrapper {
		padding-right: 2.5vw;
	}
	#structure .more .wrapper>.dt {
		float: right;
		max-width: 430px;
	}
	#structure .structure {
		width: calc(61.952vw + 4px);
	}
	#structure .more .btn.btn_bdwhite {
		margin-top: 40px;
	}
	#structure .structure .item {
		margin-top: 19px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#structure .more {
		width: 28%;
	}
	#structure .structure {
		width: 72%;
	}
	#structure .wrapper {
		height: 416px;
	}
	#structure .more .wrapper {
		padding-left: 10px;
	}
	#structure .more .title_sec {
		font-size: 22px;
	}
	#structure .more .booklet {
		margin: 25px 0 20px;
	}
	#structure .more .booklet>.text,
	#structure .more .lbl {
		display: block;
		float: none;
		margin: 0 0 10px;
		font-size: 16px;
		line-height: 1.3;
	}
	#structure .more .btn.btn_bdwhite {
		margin-top: 5px;
	}
	#structure .structure .title_sec {
		margin-bottom: 30px;
		font-size: 36px;
	}
	#structure .structure .item {
		margin-top: 10px;
	}
	#structure .structure .item>img {
		margin-right: 20px;
		width: 40px;
	}
	#structure .structure .item>.text {
		font-size: 20px;
		line-height: 40px;
	}
}

@media (min-width: 768px) {
	#structure .more {
		float: left;
		text-align: right;
	}
	#structure .structure {
		float: left;
	}
}

@media (max-width: 767px) {
	#structure {
		border-top: none;
	}
	#structure .more,
	#structure .structure {
		position: relative;
	}
	#structure .more {
		margin: 0 auto;
		padding-bottom: 45px;
		width: 290px;
		text-align: center;
	}
	#structure .structure {
		padding-bottom: 30px;
	}
	#structure>section>.ttl {
		padding-top: 93px;
	}
	#structure>.more>.ttl {
		height: 119px;
	}
	#structure .section_title {
		padding-left: 10px;
		width: 100%;
		max-width: 100%;
		text-align: center;
		color: #19344f;
	}
	#structure>.more .section_title {
		line-height: 1.3;
		color: #fff;
	}
	#structure>.more.current .section_title {
		line-height: 1;
		color: #00c853;
	}
	#structure.ppl>.more.current .section_title {
		color: #9a009a;
	}
	#structure>.more.current .section_title>br {
		display: none;
	}
	#structure .more .booklet {
		margin: 25px 0 20px;
	}
	#structure .more .booklet>img {
		float: none;
	}
	#structure .more .booklet>.text {
		float: none;
		display: inline-block;
		margin: 0 0 0 10px;
		vertical-align: middle;
		text-align: left;
		font-size: 22px;
	}
	#structure .more .lbl {
		margin-bottom: 15px;
		font-size: 18px;
	}
	#structure .structure .items {
		margin: 0 auto;
		width: 290px;
	}
	#structure .structure .item {
		margin-bottom: 15px;
	}
	#structure .structure .item>img {
		margin-right: 15px;
		width: 46px;
	}
	#structure .structure .item>.text {
		float: none;
		padding-top: 2px;
		font-size: 18px;
		line-height: 1.2;
	}
}
/*** structure end ***/

/* production_preparation end */


/* production_planning */

/*** ppl_task1 ***/
#ppl_task1 {
	padding-bottom: 130px;
}
#ppl_task1>.wrapper>.text {
    color: #000;
    background: none;
}
#ppl_task1>.wrapper>.text>.title_sec {
	color: #9a009a;
}
#ppl_task1>.wrapper>.text>.title_sec:after {
	background-color: #9a009a;
}
#ppl_task1>.wrapper>.text>.txt {
	margin-bottom: 40px;
}
#ppl_task1>.wrapper>.img>img {
	max-width: 100%;
}

@media (max-width: 991px) and (min-width: 768px) {
	#ppl_task1 {
		padding-bottom: 90px;
	}
}

@media (max-width: 767px) {
	#ppl_task1 {
		padding-bottom: 55px;
	}
	#ppl_task1 .section_title {
		padding: 15px 10px 10px;
		max-width: 100%;
		text-align: center;
		color: #9a009a;
	}
	#ppl_task1 .section_title:before {
		display: none;
	}
	#ppl_task1.current .section_title {
		position: fixed;
		padding: 5px 15px 8px;
	}
	#ppl_task1 .section_title:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		margin-left: -85px;
		width: 170px;
		height: 1px;
		background-color: #9a009a;
	}
	#ppl_task1.current .section_title:after {
		display: none;
	}
	#ppl_task1>.wrapper>.text {
		padding: 0;
	}
	#ppl_task1>.wrapper>.text>.txt {
		text-align: center;
	}
}
/*** ppl_task1 end ***/


/*** ppl_task2 ***/
#ppl_task2 {
	background-color: #02C752;
}
#ppl_task2>.wrapper>.text {
	background-color: rgba(2,199,82,.8);
}
#ppl_task2>.wrapper>.text>.title_sec:after {
	background-color: #fff;
}
#ppl_task2>.wrapper>.img_wrap>.img_icon {
	top: 100px;
}
#ppl_task2>.wrapper>.img_wrap>.img2 {
	right: 150px;
}

@media (max-width: 767px) {
	#ppl_task2>.ttl {
		height: 135px;
	}
	#ppl_task2 .section_title {
		top: 15px;
	}
	#ppl_task2.current .section_title {
		color: #02C752;
	}
	#ppl_task2 .section_title:before {
		background: url(../images/ppl_task2_icon_xs.png) 0 0 no-repeat;
	}
	#ppl_task2>.wrapper>.text>.txt {
		margin-bottom: 0;
	}
}
/*** ppl_task2 end ***/


/*** ppl_task3 ***/
#ppl_task3>.wrapper>.row>.col-md-6>.text>.title_sec {
	color: #ff5a00;
}
#ppl_task3>.wrapper>.row>.col-md-6>.row>.img_wrap {
	margin-top: 50px;
}
#ppl_task3>.wrapper>.row>.col-md-6>.text>.txt {
    border-left: 1px solid #ff5a00;
}
#ppl_task3>.wrapper>.row>.col-md-6>.img>img+img {
	top: 340px;
	right: auto;
	left: -175px;
}

@media (min-width: 992px) {
	#ppl_task3.ok>.wrapper>.row>.col-md-6>.img {
		left: -125px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#ppl_task3>.wrapper>.row>.col-md-6>.text>.title_sec:after {
		background-color: #ff5a00;
	}
}

@media (max-width: 767px) {
	#ppl_task3 {
		margin-top: 30px;
	}
	#ppl_task3 .section_title {
		font-size: 24px;
		color: #ff5a00;
	}
	#ppl_task3 .section_title:before {
		background: url(../images/ppl_task3_icon_xs.png) 0 0 no-repeat;
	}
}
/*** ppl_task3 end ***/


/*** ppl_task4 ***/

@media (min-width: 1560px) {
	#ppl_task4>.wrapper>.row>.col-md-6>.img_wrap>.img1>a {
		top: 200px;
		left: 430px;
	}
	#ppl_task4>.wrapper>.row>.col-md-6>.img_wrap>.img2>img {
		top: -200px;
		left: 420px;
	}
	#ppl_task4>.wrapper>.row>.col-md-6>.img_wrap>.img2>a {
		top: -40px;
		left: 660px;
	}
}

@media (max-width: 1559px) and (min-width: 992px) {
	#ppl_task4>.wrapper>.row>.col-md-6>.img_wrap>.img1>a {
		top: 250px;
		left: calc(50% + 88px);
	}
	#ppl_task4>.wrapper>.row>.col-md-6>.img_wrap>.img2>img {
		top: -150px;
		left: calc(50% - 150px);
	}
	#ppl_task4>.wrapper>.row>.col-md-6>.img_wrap>.img2>a {
		top: 10px;
		left: calc(50% + 88px);
	}
}

@media (min-width: 992px) {
	#ppl_task4>.wrapper>.row>.col-md-6>.text {
		margin-top: 50px;
	}
	#ppl_task4>.wrapper>.row>.col-md-6>.img_icon {
		position: relative;
	}
	#ppl_task4>.wrapper>.row>.col-md-6>.img_icon>img {
		position: absolute;
		top: -40px;
		left: -200px;
		z-index: 3;
		-webkit-transition: left 1s;
		-moz-transition: left 1s;
		-ms-transition: left 1s;
		-o-transition: left 1s;
		transition: left 1s;
	}
	#ppl_task4.ok>.wrapper>.row>.col-md-6>.img_icon>img {
		left: calc(100% - 30px);
	}
	#ppl_task4>.wrapper>.row>.col-md-6>.img_wrap>.img1>img {
		top: -135px;
		left: -20px;
	}
}

@media (max-width: 1199px) and (min-width: 768px) {
	.pp_task.t2 {
		padding-top: 30px;
	}
}

@media (min-width: 768px) {
	#ppl_task4 {
		min-height: 560px;
	}
}

@media (max-width: 767px) {
	#ppl_task4 .section_title:before {
		background: url(../images/ppl_task4_icon_xs.png) 0 0 no-repeat;
	}
}
/*** ppl_task4 end ***/


/*** ppl_task5 ***/
#ppl_task5 {
	padding-top: 15px;
    background-color: #db004d;
}
#ppl_task5>.wrapper>.text {
    background-color: rgba(219,0,77,.8);
}
#ppl_task5>.wrapper>.img_wrap>.img_icon {
    top: 70px;
    right: 300px;
}
#ppl_task5>.wrapper>.img_wrap>.img2 {
	top: 150px;
}

@media (max-width: 767px) {
	#ppl_task5>.ttl {
		height: 119px;
	}
	#ppl_task5 .section_title:before {
		background: url(../images/ppl_task5_icon_xs.png) 0 0 no-repeat;
	}
	#ppl_task5>.wrapper>.text>.txt {
		margin: 0;
	}
}
/*** ppl_task5 end ***/


/*** ppl_task6 ***/
#ppl_task6>.wrapper>.row>.col-md-6>.row>.img_wrap {
	margin-top: 45px;
}
#ppl_task6>.wrapper>.row>.col-md-6>.text>.title_sec {
    color: #9a009a;
}
#ppl_task6>.wrapper>.row>.col-md-6>.text>.txt {
    border-left: 1px solid #9a009a;
}

@media (min-width: 992px) {
	#ppl_task6.ok>.wrapper>.row>.col-md-6>.img {
		left: -600px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#ppl_task6>.wrapper>.row>.col-md-6>.text>.title_sec:after {
		background-color: #9a009a;
	}
}

@media (max-width: 767px) {
	#ppl_task6>.ttl {
		height: 165px;
	}
	#ppl_task6 .section_title {
		top: 45px;
		color: #9a009a;
	}
	#ppl_task6 .section_title:before {
		background: url(../images/ppl_task6_icon_xs.png) 0 0 no-repeat;
	}
}
/*** ppl_task6 end ***/


/*** ppl_task7 ***/
#ppl_task7.ok>.wrapper>.img_icon {
	top: -130px;
    left: calc(50% - 50px);
}

@media (min-width: 992px) {
	#ppl_task7>.wrapper>.row>.col-md-6>.text {
		margin-top: 50px;
	}
	#ppl_task7>.wrapper>.row>.col-md-6>.img_wrap>.img1>a {
		top: -130px;
		left: calc(50% + 90px);
	}
	#ppl_task7>.wrapper>.row>.col-md-6>.img_wrap>.img2>img {
		top: -330px;
		left: calc(50% - 150px);
	}
	#ppl_task7>.wrapper>.row>.col-md-6>.img_wrap>.img2>a {
		top: 150px;
	}
}

@media (max-width: 767px) {
	#ppl_task7 .section_title:before {
		background: url(../images/ppl_task7_icon_xs.png) 0 0 no-repeat;
	}
}
/*** ppl_task7 end ***/

/* production_planning end */


/* performance_record */

/*** pr_tasks ***/
#pr_tasks .hyphen {
	display: none;
}
#pr_tasks>.wrapper>.row>.col-sm-8>.wrap>.subtitle {
	position: relative;
	background-color: #fff;
	z-index: 1;
}
#pr_tasks>.wrapper>.row>.col-sm-8>.wrap>.nav {
	padding-top: 0;
}

@media (min-width: 768px) {
	#pr_tasks>.wrapper>.row>.col-sm-8 {
		padding-top: 150px;
	}
	#pr_tasks>.wrapper>.row>.col-sm-8>img {
		top: 150px;
	}
}

@media (max-width: 400px) {
	#pr_tasks .hyphen {
		display: inline;
	}
	#pr_tasks>.wrapper>.row>.col-sm-8>.wrap>.title {
		font-size: 30px;
	}
}
/*** pr_tasks end ***/


/*** pr_task1 ***/
#pr_task1>.wrapper>.row>.col-md-6>.row>.img_wrap {
	margin-top: 50px;
}

@media (min-width: 992px) {
	#pr_task1.ok>.wrapper>.row>.col-md-6>.img {
		left: -390px;
	}
}

@media (max-width: 767px) {
	#pr_task1>.ttl {
		height: 119px;
	}
	#pr_task1 .section_title:before {
		background: url(../images/pr_task1_icon_xs.png) 0 0 no-repeat;
	}
}
/*** pr_task1 end ***/


/*** pr_task2 ***/
@media (min-width: 992px) {
	#pr_task2 {
		min-height: 550px;
	}
	#pr_task2>.wrapper>.row>.col-md-6>.text {
		padding: 30px 0;
	}
	#pr_task2>.wrapper>.row>.col-md-6>.img_wrap>.img1>a {
		top: 0;
	}
	#pr_task2>.wrapper>.row>.col-md-6>.img_wrap>.img2>img {
		top: 50px;
	}
	#pr_task2>.wrapper>.row>.col-md-6>.img_wrap>.img2>a {
		top: 350px;
		left: calc(50% + 90px);
	}
}

@media (max-width: 767px) {
	#pr_task2 .section_title:before {
		background: url(../images/pr_task2_icon_xs.png) 0 0 no-repeat;
	}
}
/*** pr_task2 end ***/


/*** pr_task3 ***/
#pr_task3>.wrapper>.img_wrap>.img1 {
	left: 30px;
}
#pr_task3>.wrapper>.img_wrap>.img2 {
	top: 342px;
	right: 30px;
}

@media (max-width: 767px) {
	#pr_task3>.ttl {
		height: 140px;
	}
	#pr_task3 .section_title:before {
		background: url(../images/pr_task3_icon_xs.png) 0 0 no-repeat;
	}
}
/*** pr_task3 end ***/


/*** pr_task4 ***/
#pr_task4>.wrapper>.row>.col-md-6>.text>.title_sec {
	color: #ff5a00;
}
#pr_task4>.wrapper>.row>.col-md-6>.text>.txt {
	border-color: #ff5a00;
}

@media (min-width: 992px) {
	#pr_task4>.wrapper>.row>.col-md-6>.img_wrap>.img2>img {
		left: calc(50% - 270px);
	}
	#pr_task4>.wrapper>.row>.col-md-6>.img_wrap>.img2>a {
		left: calc(50% + 90px);
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#pr_task4 {
		margin-top: -75px;
		background-color: #fff;
	}
	#pr_task4>.wrapper>.row>.col-md-6>.text>.title_sec:after {
		background-color: #ff5a00;
	}
}

@media (min-width: 768px) {
	#pr_task4 {
		padding-top: 165px;
		min-height: 720px;
	}
}

@media (max-width: 767px) {
	#pr_task4 .ttl {
		height: 165px;
	}
	#pr_task4 .section_title {
		top: 45px;
		color: #ff5a00;
	}
	#pr_task4 .section_title:before {
		background: url(../images/pr_task4_icon_xs.png) 0 0 no-repeat;
	}
}
/*** pr_task4 end ***/


/*** pr_task5 ***/
#pr_task5 {
	background-color: #0080ff;
}
#pr_task5>.wrapper>.text {
    background-color: rgba(0,128,255,.8);
}
#pr_task5>.wrapper>.img_wrap>.img2 {
    top: 85px;
}
#pr_task5>.wrapper>.img_wrap>.img3 {
    position: absolute;
    top: 361px;
    left: 490px;
    z-index: 1;
}

@media (max-width: 767px) {
	#pr_task5 .ttl {
		height: 140px;
	}
	#pr_task5.current .section_title {
		color: #0080ff;
	}
	#pr_task5 .section_title:before {
		background: url(../images/pr_task5_icon_xs.png) 0 0 no-repeat;
	}
}
/*** pr_task5 end ***/


/*** pr_task6 ***/
#pr_task6>.wrapper>.row>.col-md-6>.text {
	max-width: 795px;
	z-index: 1;
}
#pr_task6>.wrapper>.row>.col-md-6>.text>.txt {
	max-width: 625px;
}

@media (max-width: 1199px) and (min-width: 992px) {
	#pr_task6.ok>.wrapper>.row>.col-md-6>.img {
		top: -20px;
	}
}

@media (min-width: 992px) {
	#pr_task6.ok>.wrapper>.row>.col-md-6>.img {
		left: -500px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	#pr_task6 {
		margin-top: -75px;
		padding-top: 50px;
	}
}

@media (max-width: 767px) {
	#pr_task6 .ttl {
		height: 200px;
	}
	#pr_task6 .section_title {
		top: 45px;
	}
	#pr_task6 .section_title:before {
		background: url(../images/pr_task6_icon_xs.png) 0 0 no-repeat;
	}
}
/*** pr_task6 end ***/


/*** pr_task7 ***/
@media (min-width: 992px) {
	#pr_task7>.wrapper>.row>.col-md-6>.text {
		margin-top: 50px;
	}
	#pr_task7>.wrapper>.row>.col-md-6>.img_wrap>.img1>img {
		top: -255px;
	}
	#pr_task7>.wrapper>.row>.col-md-6>.img_wrap>.img1>a {
		top: -30px;
		left: calc(50% - 90px);
	}
	#pr_task7>.wrapper>.row>.col-md-6>.img_wrap>.img2>img {
		top: 50px;
		left: calc(50% - 250px);
	}
	#pr_task7>.wrapper>.row>.col-md-6>.img_wrap>.img2>a {
		top: 225px;
		left: calc(50% + 25px);
	}
}

@media (max-width: 767px) {
	#pr_task7 .section_title:before {
		background: url(../images/pr_task7_icon_xs.png) 0 0 no-repeat;
	}
}
/*** pr_task7 end ***/

/* performance_record end */


/* footer */
footer {
	color: #fff;
	background-color: #19344f;
}
footer>.wrapper {
	margin: 0 auto;
	max-width: 1200px;
}
footer .wrapper>.row>.col-sm-4.company>.title {
	color: #764ebe;
}
footer .wrapper>.row>.col-sm-4.product>.title {
	color: #ffaa00;
}
footer .wrapper>.row>.col-sm-4.support>.title {
	color: #0091ea;
}
footer .item {
	position: relative;
}
footer .item a {
	color: #fff;
}
footer .item .menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
footer .item .menu li {
	margin: 9px 0;
	line-height: 1;
}
footer .item .menu li:first-child {
	margin-top: 2px;
}
footer .item .menu li.active>.menu_item {
	text-decoration: underline;
}
footer .item .bottom {
	padding: 15px 0;
	border-top: 1px solid;
}
footer .company .item .bottom {
	border-color: #764ebe;
}
footer .product .item .bottom {
	border-color: #ffaa00;
}
footer .support .item .bottom {
	border-color: #0091ea;
}
footer .item .bottom .desc {
	font-size: 12px;
}
footer .item .bottom .phones {
	position: relative;
	padding: 7px 0 0 40px;
	min-height: 66px;
	line-height: 1;
}
footer .item .bottom .phones:before,
footer .item .bottom .email:before,
footer .item .bottom .video:before {
	content: '';
	position: absolute;
	top: 0;
	left: 5px;
	width: 25px;
	height: 51px;
	background: url(../images/sprite.png) -204px -275px no-repeat;
}
footer .item .bottom .phone {
	margin-bottom: 8px;
}
footer .item .bottom .phone.p1 {
	margin-left: 9px;
}
footer .item .bottom .phone:after {
	content: '';
	display: block;
	clear: both;
}
footer .item .bottom .email,
footer .item .bottom .video {
	position: relative;
	padding: 5px 0 0 50px;
	line-height: 31px;
}
footer .item .bottom .email:before {
	top: 5px;
	left: 0;
	width: 41px;
	height: 31px;
	background-position: -230px -297px;
}
footer .item .bottom .video,
footer .item .bottom .email.e2 {
	padding-top: 0;
}
footer .item .bottom .email.e2:before {
	top: 0;
	background-position: -334px -255px;
}
footer .item .bottom .video:before {
	left: 0;
	width: 43px;
	height: 31px;
	background-position: -272px -297px;
}

@media (min-width: 992px) {
	footer {
		padding: 80px 0 90px;
	}
	footer .wrapper>.row {
		margin: 0 -8px;
	}
	footer .wrapper>.row>.col-sm-4 {
		padding: 0 8px;
	}
	footer .wrapper>.row>.col-sm-4>.title {
		padding-left: 15px;
	}
	footer .item {
		padding: 10px 10px 15px 15px;
	}
	footer .item .menu li>.menu_item {
		font-size: 16px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	footer {
		padding: 25px 0 40px;
	}
	footer .wrapper {
		padding: 0 5px;
	}
	footer .wrapper>.row {
		margin: 0 -5px;
	}
	footer .wrapper>.row>.col-sm-4 {
		padding: 0 5px;
	}
	footer .wrapper>.row>.col-sm-4>.title {
		padding-left: 10px;
	}
	footer .item {
		padding: 10px 10px 15px;
	}
	footer .item .menu li>.menu_item {
		font-size: 15px;
	}
	footer .item .bottom .phones {
		padding-top: 0;
	}
	footer .item .bottom .phone.p2 {
		margin-bottom: 0;
	}
	footer .item .bottom .email {
		padding-top: 0;
		font-size: 14px;
	}
	footer .item .bottom .email:before {
		top: 0;
	}
	footer .item .bottom .phone.p2>.desc {
		display: inline-block;
		margin-left: 9px;
		min-width: 110px;
	}
}

@media (min-width: 768px) {
	footer .item {
		height: 231px;
		border: 1px solid #764ebe;
	}
	footer .product .item {
		border: 1px solid #ffaa00;
	}
	footer .support .item {
		border: 1px solid #0091ea;
	}
	footer .wrapper>.row>.col-sm-4>.title {
		padding-bottom: 8px;
		font-size: 22px;
	}
	footer .item .bottom {
		position: absolute;
		bottom: 0;
		left: 10px;
		width: calc(100% - 20px);
		font-size: 16px;
	}
	footer .item .bottom .phone {
		line-height: 0.8;
	}
}

@media (max-width: 767px) {
	footer {
		padding: 17px 0 20px;
	}
	footer .wrapper>.row>.title {
		padding: 0 0 0 12px;
		font-size: 24px;
	}
	footer .wrapper>.row>.col-sm-4 {
		padding: 0;
	}
	footer .wrapper>.row>.col-sm-4>.title {
		margin-bottom: 5px;
		font-size: 19px;
	}
	footer .item .menu {
		display: none;
	}
	footer .item .bottom {
		font-size: 18px;
	}
	footer .company .item .bottom,
	footer .product .item .bottom {
		border-color: #fff;
	}
	footer .item .bottom .phones {
		padding-left: 50px;
		min-height: 0;
		font-size: 20px;
		line-height: 0.8;
	}
	footer .item .bottom .phones:before {
		top: 50%;
		left: 20px;
		margin-top: -20px;
		width: 20px;
		height: 40px;
		background-position: -230px -255px;
	}
	footer .item .bottom .phone.p1 {
		margin: 0 0 12px 12px;
	}
	footer .item .bottom .desc {
		font-size: 15px;
	}
	footer .item .bottom .email,
	footer .item .bottom .video {
		padding-left: 62px;
	}
	footer .item .bottom .email:before,
	footer .item .bottom .video:before {
		top: 50%;
		left: 15px;
		margin-top: -11px;
		width: 31px;
		height: 23px;
		background-position: -316px -297px;
	}
	footer .item .bottom .video:before {
		width: 32px;
		background-position: -348px -297px;
	}
}

@media (max-width: 400px) {
	footer .item .bottom .phone.p2>.desc {
		display: inline-block;
		margin-left: 12px;
		min-width: 160px;
	}
}

/* footer end */


/* button */
.btn.btn_bdwhite,
.btn.btn_bdblue,
.btn.btn_bdlilac {
	padding: 9px 15px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	background: none;
	border: 1px solid #fff;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	outline: none;
}
.btn.btn_bdblue {
	color: #000;
	border: 1px solid #00a0ff;
}
.btn.btn_bdlilac {
	font-weight: 200;
	color: #673ab7;
	text-transform: none;
	border: 1px solid #512da8;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
/* button end */


/* form */
.form-group {
	margin-bottom: 7px;
}
label {
	font-weight: 400;
}
textarea {
	resize: vertical;
}
.form-control,
.form-control:focus {
	padding: 0 6px;
	height: 22px;
	border-color: #0087e3;
	outline: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
textarea.form-control,
textarea.form-control:focus {
	height: 106px;
}
.has-error .form-control,
.has-error .form-control:focus {
	border-color: #f44336;
}
.has-error select {
	color: #f44336 !important;
}
.placeholder {
	color: #bfbfbf;
}
.form-control:-moz-placeholder {
	color: #bfbfbf;
}
.form-control::-moz-placeholder {
	color: #bfbfbf;
}
.form-control::-webkit-input-placeholder {
	color: #bfbfbf;
}
.has-error .placeholder {
	color: #f44336;
}
.has-error .form-control:-moz-placeholder {
	color: #f44336;
}
.has-error .form-control::-moz-placeholder {
	color: #f44336;
}
.has-error .form-control::-webkit-input-placeholder {
	color: #f44336;
}
input.cphone {
  display: none;
}
.has-error .recaptcha {
 border: 1px solid #f44336;
}
/* form end */


/* sprite */
.sprite {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 20px;
	background: url(../images/sprite.png) 0 0 no-repeat;
}
.sprite.sprite_close {
	width: 14px;
	height: 14px;
	background-position: -41px 0;
}
.sprite.sprite_call {
	width: 20px;
	height: 40px;
	background-position: -251px -255px;
}
.active .sprite.sprite_call {
	background-position: -230px -255px;
}
.sprite.sprite_question {
	width: 30px;
    height: 41px;
    background-position: -303px -255px;
}
.active .sprite.sprite_question {
    background-position: -272px -255px;
}
.sprite.sprite_demo {
	width: 40px;
    height: 30px;
    background-position: -357px -223px;
}
.active .sprite.sprite_demo {
    background-position: -316px -223px;
}
/* sprite end */


/* modal */
.modal-content {
	border: 1px solid rgba(255,255,255,.25);
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.modal button.close {
	position: absolute;
	top: 4px;
	right: 4px;
	line-height: 14px;
	z-index: 8;
	filter: alpha(opacity=100);
    opacity: 1;
}

#modalForms .modal-content {
	background-color: #00418f;
}
#modalForms .modal-body {
	padding: 0;
}
#modalForms .modal-body:after {
	content: '';
	display: block;
	clear: both;
}
#modalForms .modal-body .nav-tabs {
	float: left;
	border: none;
}
#modalForms .modal-body .nav-tabs>li {
	float: none;
	margin: 0;
}
#modalForms .modal-body .nav-tabs>li>a {
	margin: 0;
	padding: 10px 0 0;
	width: 60px;
	height: 60px;
	text-align: center;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
#modalForms .modal-body .nav>li>a:focus,
#modalForms .modal-body .nav>li>a:hover {
	background-color: rgba(0, 159, 255, 0.4);
}
#modalForms .modal-body .nav-tabs>li>a[aria-controls="demo"] {
	padding-top: 15px;
}
#modalForms .modal-body .nav-tabs>li.active>a,
#modalForms .modal-body .nav-tabs>li.active>a:focus,
#modalForms .modal-body .nav-tabs>li.active>a:hover {
	background-color: #009fff;
	-webkit-box-shadow: -8px 0 8px rgba(0,0,0,.33);
	-moz-box-shadow: -8px 0 8px rgba(0,0,0,.33);
	box-shadow: -8px 0 8px rgba(0,0,0,.33);
}
#modalForms .modal-body .tab-content {
	float: right;
	width: 290px;
	min-height: 200px;
	color: #fffefe;
	background-color: #009fff;
	-webkit-box-shadow: 0 0 8px rgba(0,0,0,.33);
	-moz-box-shadow: 0 0 8px rgba(0,0,0,.33);
	box-shadow: 0 0 8px rgba(0,0,0,.33);
}
#modalForms .modal-body .tab-content>.tab-pane {
	padding: 11px 24px;
}
#modalForms .modal-body .tab-content>.tab-pane .title {
	font-size: 17px;
}
#modalForms .modal-body .tab-content>.tab-pane .subtitle {
	margin-bottom: 7px;
	font-size: 13px;
}
#modalForms .modal-body .tab-content>.tab-pane form textarea {
	margin-top: 13px;
}
#modalForms .modal-body .tab-content>.tab-pane form .btn.btn_bdwhite {
	margin-top: 4px;
	font-weight: 200;
	font-size: 16px;
}

#modalMessage .modal-body {
	color: #fff;
	background-color: #009fff;
}

@media (max-width: 767px) {
	#modalForms .modal-dialog {
		margin: 10px auto;
	}
}

@media (min-width: 400px) {
	#modalForms .modal-dialog {
		width: 352px;
	}
}

@media (max-width: 399px) {
	#modalForms .modal-dialog {
		width: 292px;
	}
	#modalForms .modal-body .nav-tabs {
		display: none;
	}
}

.modal.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 50%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  30%, 70% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 50%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  30%, 70% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
/* modal end */


/* helper classes */
.rel {
	position: relative;
}
.abs {
	position: absolute;
	top: 0;
	left: 0;
}
.block {
	display: block !important;
}
.dt {
	display: table !important;
	width: 100%;
	height: 100%;
}
.dt .cell {
	display: table-cell !important;
	vertical-align: middle;
}
.normal {
	font-weight: 400;
}
.bold {
	font-weight: 700;
}
.vat {
	vertical-align: top;
}
.vam {
	vertical-align: middle;
}
.ttu {
	text-transform: uppercase;
}
.tdn {
	text-decoration: none !important;
}
.fn {
	font-size: 11px;
}
/* helper classes end */