:root {
	--main-color: #9f1d20;
	--accent-color: #09649C;
}

body {
	line-height: 1.5;
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
}

.hr1 {
	margin-top: 10px;
	margin-bottom: 3px;
	border-top: 1px solid #909090;
}

.text-info {
	color: #019eac !important;
}

.color-main {
	color: var(--main-color);
}

.color-accent {
	color: var(--accent-color);
}

.bg-light {
	background-color: #f1f1f1 !important;
}

.py-100 {
	padding: 5rem 0;
}

.py-120 {
	padding: 7.5rem 0;
}

.mb-80 {
	margin-bottom: 5rem !important;
}

.sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 130px;
	-webkit-transition: ease all 0.3s;
	transition: ease all 0.3s;
}
.header .logo img {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.active-overlay {
	background-color: rgba(0, 0, 0, 0.5);
}

/* ==================

	 HEADER

=================== */
.header {
	border-bottom: 1px solid #f5f5f5;
	padding: 6px 0;
	z-index: 9999 !important;
	background-color: #ffffff;
	-webkit-transition: ease all 0.3s;
	transition: ease all 0.3s;
}

.header .logo img {
	width: 300px;
}

.header .main-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 991px) {
	.header .main-menu ul {
		position: fixed;
		left: -260px;
		top: 0;
		width: 260px;
		background: #fff;
		padding: 30px;
		height: 100vh;
		-webkit-transition: ease all 0.3s;
		transition: ease all 0.3s;
	}
}

.header .main-menu ul li {
	display: inline-block;
}

@media (max-width: 991px) {
	.header .main-menu ul li {
		display: block;
	}
}

@media (max-width: 991px) {
	.header .main-menu ul li.lan-flg {
		border: 1px solid #eee;
		border-radius: 4px;
		margin-top: 50px;
	}
}

.header .main-menu ul li.lan-flg img {
	width: 64%;
}

@media (max-width: 991px) {
	.header .main-menu ul li.lan-flg img {
		width: 35%;
	}
}

.header .main-menu ul li a {
	display: block;
	line-height: 22px;
	padding: 11px 10px;
	color: #444;
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	text-decoration: none;
	-webkit-transition: ease all 0.3s;
	transition: ease all 0.3s;
}

.header .main-menu ul li a:hover {
	color: var(--main-color);
}

.header .main-menu ul .lan-flag img {
	width: 70%;
}

@media (max-width: 991px) {
	.header .main-menu ul .lan-flag img .lan-flg {
		border: 1px solid #eee;
		border-radius: 4px;
		text-align: center;
		margin-top: 34px;
	}
}

.header .menu-troggler {
	display: none;
}

@media (max-width: 991px) {
	.header .menu-troggler {
		display: block;
		z-index: 999999;
	}
}

.sidebar-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-menu ul li {
	display: block;
}

.sidebar-menu ul li a {
	display: block;
	line-height: 22px;
	padding: 14px 10px;
	color: #000;
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	text-decoration: none;
	-webkit-transition: ease all 0.3s;
	transition: ease all 0.3s;
}

.sidebar-menu ul li a:hover {
	color: var(--main-color);
}

.active {
	left: 0 !important;
	z-index: 9999;
}

.mobile-body-overly {
	width: 100%;
	height: 100%;
	z-index: 997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(0, 0, 0, 0.7);
	display: none;
}

.mobile-body-overly.active-overlay {
	display: block;
}

/* ==================

	 SECTION TITLE

=================== */
.subtitle {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "Poppins", sans-serif;
}

.section-title {
	margin-bottom: 50px;
}

.divider {
	width: 95px;
	height: 5px;
	background-color:var(--main-color);
}

/* ==================

	 TIMELINE

=================== */
ul.timeline {
	list-style-type: none;
	position: relative;
	padding: 0;
}

ul.timeline:before {
	content: " ";
	background: #d4d9df;
	display: inline-block;
	position: absolute;
	left: 9px;
	width: 2px;
	height: 100%;
	z-index: 400;
}

ul.timeline > li {
	margin: 20px 0;
	padding-left: 40px;
}

ul.timeline > li:before {
	content: " ";
	background: white;
	display: inline-block;
	position: absolute;
	border-radius: 50%;
	border: 3px solid #92c41d;
	left: 0px;
	width: 20px;
	height: 20px;
	z-index: 400;
}

.header-sticky {
	position: fixed;
	-webkit-box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
					box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
	z-index: 9999 !important;
	background-color: #ffffff;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	padding: 10px 0;
}

@media (min-width: 991px) {
	.header-sticky {
		width: 1140px;
		margin: auto;
	}
}

#scrollTopBtn {
	position: fixed;
	right: 10px;
	bottom: 30px;
	width: 45px;
	height: 45px;
	opacity: 0;
	z-index: 1000;
	font-size: 20px;
	border-radius: 4px;
	color: #ffffff;
	background-color: #333;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	line-height: 45px;
	text-align: center;
}

#scrollTopBtn.actived {
	right: 30px;
	opacity: 1;
}

iframe.embed-responsive-item {
	width: 100%;
}

.text-green {
	color: var(--main-color);
}

@media (min-width: 991px) {
	.w-lg-50 {
		width: 75%;
	}
}

.g-layout-boxed {
	background-image: url(../img/bkg.png);
	background-attachment: fixed;
	/*background-size: 20% 20%;*/
}

.g-layout-boxed main {
	position: relative;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1200px) {
	.g-layout-boxed main {
		width: 1140px;
	}
}
/*# sourceMappingURL=style.css.map */


/**/

@font-face {
	font-family: 'Fireheart';
	src: url('../assets/fonts/FireheartDemo-8My5n.eot');
	src: url('../assets/fonts/FireheartDemo-8My5n.eot?#iefix') format('embedded-opentype'),
		 url('../assets/fonts/FireheartDemo-8My5n.woff2') format('woff2'),
		 url('../assets/fonts/FireheartDemo-8My5n.woff') format('woff'),
		 url('../assets/fonts/FireheartDemo-8My5n.ttf')	format('truetype'),
		 url('../assets/fonts/FireheartDemo-8My5n.svg#Fireheart Demo') format('svg');
}

.g-layout-boxed {
	background-image: url("../img/bg1.png");
}
/*html[lang="en"] .header .main-menu ul li a {
	font-size: 11px;
}*/
.header .main-menu ul li.lan-flg img {
	width: auto;
	max-height: 18px;
}
 
section.home-pg-banner {
 /*	 background: url("../img/header_image01.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;*/
	padding: 00px 0;	position: relative;
	color:#fff;
}
.home-pg-banner img {
	width: 100%;
	vertical-align: middle;
	height: auto;
}
/*section.home-pg-banner::before {
	content: "";
	display: inline-block;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #000;
	opacity: .20;
}*/

 
section.home-pg-banner .container {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
}
section.home-pg-banner h1 {
	margin: 0px;
	display: inline-block;
	padding: 2px 30px 7px 30px;
	background-color: rgb(0 0 0 / 20%);
	line-height: normal;
	letter-spacing:-1px;
}

.new-block {
	margin-bottom: 40px;
}
.g-layout-boxed main {
	border-top: 5px solid --main-color;
}
body { font-size:18px; line-height: 1.75;}

.py-5.second-div {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.col-md-3.d-none.d-md-block.side-bar-new {
	background: #eef1f1;
	padding-bottom: 10px;
	padding-top:20px;
}

.sidebar-menu ul li	{margin:2px 0;}

.sidebar-menu ul li a {
	font-size: 12px;
	padding: 8px 20px 8px 0px;	 
	border-bottom: 1px solid #b0b0b0;
	position: relative;
}
.sidebar-menu ul li a::before {
	content: "";
	display: inline-block;
	width: 100%;
	background-color: #fff;
	position: absolute;
	top: 100%;
	height: 1px;
	margin-top: -1px;
}
.sidebar-menu ul li:last-child a, .sidebar-menu ul li:last-child a::before {
	border-bottom: 0;
	content: none;
}
.sidebar-menu ul li a::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 0;
	top: 9px;
		content: "\e606";
	font-family: 'simple-line-icons';
		font-size: 10px;
}

iframe.embed-responsive-item {
	min-height: 164px;
}

.Content-bar-new ul li {
	margin-bottom: 9px;
	letter-spacing: normal;
}

footer.footer {
	background-color: var(--main-color) !important;
	border-top: 3px solid #000;
}

footer.footer .py-5.text-center.text-white {
	padding: 10px 0 !important;
}

.section-title {
	margin-bottom: 30px;
}

h2 {
	font-size: 1.5rem;
	margin-bottom: 10px !important;
	line-height: 2em;
	color: var(--accent-color);
}

.header .main-menu ul li.lan-flg img {
	width: auto;
	max-height: 15px;
	border:1px solid #ddd;
}

.small1{
	font-size:0.75em;
}

ul {
	list-style: circle;
}

ul.main-nav-flag {
	margin: 0;
	padding: 0;
	display: inline-block;
}
ul.main-nav-flag li {
	display: inline-block;
	margin: 0;
	padding: 0;
}
ul.main-nav-flag li img {
	width: auto;
	max-height: 20px;
	border: 1px solid #ddd;
	vertical-align: sub;
}
ul.main-nav-flag li a {
	color: #000;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	display: flex;
	align-items: center;
}
ul.main-nav-flag li img {
	width: auto;
	max-height: 16px;
	border: 1px solid #ddd;
	margin-right: 5px;
	vertical-align: middle;
	margin-top: 2px;
}

nav.main-menu {
	background-color: var(--main-color);
	vertical-align: middle;
	width: 100%;
	box-shadow: -2px 2px 33px -11px rgba(0,0,0,0.64) inset;
-webkit-box-shadow: -2px 2px 33px -11px rgba(0,0,0,0.64) inset;
-moz-box-shadow: -2px 2px 33px -11px rgba(0,0,0,0.64) inset;
}

.header .main-menu ul li a {
	color: #fff;
	font-size: 14px;
}
header.header {
	padding-bottom: 0;
	border-bottom: 0;
}
header.header .container {
	padding: 0 ;
}
header.header .container .d-flex.align-items-center.justify-content-between {
	padding: 0 15px 10px 15px;
}
.header .main-menu ul li a:hover {
	background-color: var(--accent-color);
	color: #fff;
}

.author-signature {
	background-color: var(--accent-color);
	border: 1px solid var(--accent-color);
	text-align: center;
	color: #fff;
	box-shadow: 0 10px 10px rgb(147 196 29 / 13%);
	border-radius: 10px;
	font-size: 13px;
}
.author-signature img { border-radius: 10px !important; }

.col-md-3.d-none.d-md-block.side-bar-new {
	background: var(--main-color)40;
}
.new-block p {
	margin-bottom: 40px;
	font-family: "Shuei Mincho M JIS2004", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	margin: 0 0 10px 0;
}
.new-block {
	margin-bottom: 40px;
}
 
 .new-block p {
	font-size: 20px;
	font-weight: bold;
	color: #333;
}
.col-md-8.left-to-author {
	width: 75%;
}
.col-md-4.author-signature-main {
	width: 25%;
}
.author-signature span {
	display: inline-block;
	width: 100%;
	padding: 6px 0;
}
ul.mb-0.big-size-text li:last-child {
	margin-bottom: 0;
}
.col-md-9.Content-bar-new {
	background-color: #fff;
	background: linear-gradient(0deg, rgb(0 159 175 / 11%)	0%,	rgb(147 196 29 / 0%) 100%) ,
	url(../img/new-content-bg.jpg) ;
}
.new-block {
	background-color: var(--accent-color);
	border-radius: 10px;
	padding: 0;
	text-align: left;
	border: 1px dashed var(--accent-color);
	overflow: hidden;
}
.new-block .section-title {
	margin: 0 !important; padding:5px	15px;
}
.new-block .section-title h4 {
	margin: 0 !important;
	color: #fff !important;
}
.new-block-content {
	background-color: #ffffff;
	border-radius: 5px;
	vertical-align: middle;
	padding: 15px;
}
.new-block .section-title .divider {
	display: none;
}
.sidebar-menu h2 {
	color: #fff;
	background-color: var(--accent-color);
	font-size: 21px;
	padding: 10px 20px;
	margin: 0px -12px 0 -23px;
	position: relative;
}
.sidebar-menu h2::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 100%;
	border-top: 10px solid #64890c;
	border-left: 10px solid transparent;
}
.sidebar-menu h2 i.icons.icon-info {
	float: right;
}
ul.mb-0.big-size-text {
	padding-left: 22px;
}

h3.size_font_sm {
	font-size: 1.4rem;
}
h2.underline {
	text-decoration: underline;
	text-underline-offset: 10px;
	padding-bottom: 20px;
	text-decoration-thickness: 5px;
}
h2.underline.this {
	line-height: 60px;
	margin-bottom: 0px!Important;
}
@media (max-width: 1199px) {
	.g-layout-boxed main ,	.header-sticky {
		 max-width: 960px;
	}
	.header-sticky {
		width: 100%;
	}
}

@media (max-width: 991px) {
	.g-layout-boxed main ,
	.header-sticky	{max-width: calc(100% - 80px);	 margin: 0 auto;}
	.container, .container-md, .container-sm	{	max-width: 100%;}

	.header .menu-troggler {order: -2;}
	body {
		font-size: 16px;
		line-height: 1.70;
	}
	.new-block p.typesquare_option {
		font-size: 17px;
	}
	.col-md-4.author-signature-main {
		width: 100%;
		max-width: 180px;
		margin-top: 20px; 
	}
	.col-md-8.left-to-author {
		width: 100%;
	}
	.sticky {
		top: 80px;
	}
	.header .main-menu ul li a {	
		padding: 8px 0;
	}
	.header .main-menu ul {	z-index: 9999999 !important; background: var(--main-color);}
}

ul.timeline {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
	align-items: flex-start;
}
ul.timeline li {
	width: 42%;
	float: left;
	text-align: left;
	margin: 0;
	padding: 0 0px;
	position: relative;
}
ul.timeline li:nth-child(2n+1) {
	text-align: right;
}

ul.timeline::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 100%;
	background-color: #000;
	position: absolute;
	left: 50%;
	top: -10px;
	background: rgb(147,196,29);
	background: linear-gradient(0deg, rgba(147,196,29,1) 0%, rgb(0 159 175) 37%, rgb(147 196 29) 68%, rgb(4 160 176) 100%);
	border-radius: 5px;
}

ul.timeline > li:before { display: none; }
ul.timeline li p {
	margin-bottom: 0;
}

ul.timeline li h5 {
	width: 60px;
	height: auto;
	color: #fff;
	display: flex;
	align-content: center;
	justify-content: center;
	font-weight: 600;
	font-size: 17px;
	flex-wrap: wrap;
	background-color: var(--accent-color);
	position: absolute;
	left: -87px;
	z-index: 999;
	padding: 2px 0;
	top: 0;
	box-shadow: -2px 2px 33px -11px rgb(0 0 0 / 64%) inset;
	-webkit-box-shadow: -2px 2px 33px -11px rgb(0 0 0 / 64%) inset;
	-moz-box-shadow: -2px 2px 33px -11px rgba(0,0,0,0.64) inset;
}
ul.timeline li:nth-child(2n+1) h5 {
	right: -87px;
	left: auto;
}
ul.timeline li h5::before {
	content: "";
	display: inline-block;
	border-left: 14px solid var(--accent-color);
	border-bottom: 12px solid transparent;
	border-top: 12px solid transparent;
	position: absolute;
	right: auto;
	top: 0;
	left: 100%;
		
}
ul.timeline li:nth-child(2n+1) h5 {
	background-color: #009eae;
}
ul.timeline li:nth-child(2n+1) h5::before {
	border-right: 14px solid #009eae;
	right: 100%;
	left: auto;
	border-left: 14px solid transparent;
}

.patent-number {
	background-color: var(--accent-color);
	border: 1px solid var(--accent-color);
	border-radius: 10px;
	overflow: hidden;
}
.patent-number .section-title {
	margin: 0 !important;
}
.patent-number .section-title h4 {
	color: #fff;
	margin: 0 !important;
	padding: 7px 15px;
}
.patent-number .section-title	.divider {
	display: none;
}
.patent-content {
	display: inline-block;
	width: 100%;
	padding: 20px;
	background-color: #fff;
	border-radius: 5px;
}
.company-pro-content {
	margin: 0;
}

.company-pro-content .card {
	background-color: transparent;
	border: 0;
}
.company-pro-content .card .card-body {
	padding: 0;
}
.company-pro-content h5.card-title {
	margin: 0;
	color: var(--main-color);
}
.company-pro.patent-number {
	background-color: var(--main-color);
	border-color: var(--main-color);
	margin-bottom: 30px !important;
}

.three-with-vdo iframe {
	width: 100%;
	height: 100%;
}

.new-product-sec h3 {
	font-size: 15px;
	background-color: var(--main-color);
	color: #fff;
	margin: 0;
	padding: 10px;
}
	
.product-sec-inner {
	border: 1px solid var(--main-color);
	border-radius: 5px;
	height: 100%;
}

.img-brder img {
	border: 1px solid var(--accent-color);
}

.row.center-content {
	align-items: center;
}

p.under-img {
	background-color: #bfe7eb;
	border-radius: 0 0 5px 5px;
	text-align: center;
	padding: 7px 0;
}
.process-box p {
	font-size: 20px;
	color: #00697c !important;
	line-height: normal;
	font-weight: 300;
}
.process-box {
	border-left: 5px solid var(--main-color);
	background-color: #fff;
	padding: 15px;
}

.process-box h6 {
	font-size: 19px;
}

.bg-steps p {
	font-size: 16px;
}

.header .main-menu ul li { position: relative; margin-right: 2px; }

.header .main-menu ul li::after {
	border-right: 1px solid #fff;
	content: "";
	display: inline-block;
	position: absolute;
	right: 100%;
	background-color: #fff;
	height: 16px;
	top: 14px;
	margin-right: 2px;
}

header.header.header-sticky .logo img {
	width: auto;
}

.header .logo a { text-decoration: none !important; }
.header .logo img.logo-text {	max-height: 28px;}
.header .logo img {	width: auto;	vertical-align: middle;}
.header .logo img.logo-icon {	max-height: 73px;}
header.header.header-sticky .logo img.logo-icon {	max-height: 41px;}


.bg-blue-box {
	background-color: var(--accent-color);
	border: 1px solid var(--accent-color);
	margin-bottom: 30px !important;
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
}

.bg-blue-box h4 {
	padding: 10px 20px;
	border-bottom: 1px solid #fff;
}
.bg-blue-box ul {
	padding: 0 20px;
}

.box-howpaste {
	background-color: var(--main-color);
	border-radius: 10px;
	border:1px solid var(--main-color);
	overflow: hidden;
}
.box-howpaste-content {
	background-color: #fff;
	border-radius: 5px;
	padding: 10px 15px;
}
.box-howpaste h4 {
	color: #fff;
	padding: 6px 14px;
	margin-bottom: 0 !important;
}
.bg-steps img {
	border: 1px solid var(--main-color); border-radius: 0px !important;
}
.box-howpaste.grenbox-howpaste {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}
span.steps-number {
	display: block;
	background-color: var(--main-color);
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	border-radius: 5px 5px 0 0 ;
}

.company-pro-content .card .card-body .b-content strong {
	font-weight: normal;
	min-width: 40%;
	display: inline-block;
}
.company-pro-content .card .card-body .b-content {
	display: flex;
}

 
.process-box::after, .process-box h6::after {
	content: "";
	display: inline-block;
	width: 30px;
	height: 50px;
	background: url("../img/down-arrow.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 10%;
	top: -39px;
	z-index: 9;
}
.process-box h6::after {
	top: 100%;
	left: calc(10% - 10px);
}
.process-box {
	position: relative;
	margin: 35px 0 !important;
}
.process-box h6 {
	
	position: relative;
	margin-bottom: 50px !important;
}

 
h2.design-h4 {
	font-size: 1.5rem;
	color: #000;
}
.size_font_h3{font-size: 1.40em;}
section.home-pg-banner h1.size_h1 {
	padding: 2px 10px 7px 10px;
	font-size: 2.45rem;
}
.field {
	width: 50%;
}
button.btn-send {
	background: #eee;
	border: 1px solid #d5d5d5;
}
body.g-layout-boxed.contact_us {
	height: 101vh;
	overflow-y: scroll;
}


.header .main-menu ul li a:hover {
	background: transparent;
}

.header .main-menu ul li a::before {content: "";width: 0%;background: var(--accent-color);height: 3px;position: absolute;bottom: 8px;left: 50%;right: 50%;margin: auto;transform: translateX(-50%);transition: 0.5s;}

.header .main-menu ul li a {
	position: relative;
}

.header .main-menu ul li a::after {content: "";width: 0%;height: 10px;background: url(../img/menuArrow.png);position: absolute;bottom: 0px;left: 50%;right: 50%;margin: auto;transform: translateX(-50%);background-repeat: no-repeat;background-position: center;transition: 0.5s;}

.header .main-menu ul li a:hover::after {
	width: 100%;
}

.header .main-menu ul li a:hover::before {
	width: 100%;
}
.header .main-menu ul li.active a::before {
	width: 100%;
}

.header .main-menu ul li.active a::after {
	width: 100%;
}
@media (max-width: 1199px){
	section.home-pg-banner h1.size_h1 {
	padding: 2px 10px 7px 10px;
	font-size: 1.9rem;
}
}
@media (max-width: 991px) {
	ul.timeline li h5 {
		width: 47px;
		font-size: 15px;
		left: -63px;
		padding: 3px 0;
	}
	ul.timeline li:nth-child(2n+1) h5 {
		right: -63px;
		left: auto;
	}
	.three-with-vdo img {
		margin-bottom: 10px;
	}
	.three-with-vdo iframe {
		height: 33vw;
	}
	.pb-5 {
		padding-bottom: 2rem!important;
	}
	.new-product-sec .col-lg-4 {
		margin-bottom: 10px;
	}
}

 @media (max-width: 767px) {
	.g-layout-boxed main , .header-sticky	{max-width: 100%;	 margin: 0 auto;}

	 
	.col-md-9.Content-bar-new {
		background: transparent;
	}
	.g-layout-boxed main {
		background: transparent;
		box-shadow: none;
	}
	section.home-pg-banner h1 {
		font-size: 16px;
		padding: 2px 10px 5px 10px;
	}
	ul.main-nav-flag li a {
		font-size: 14px;
	}
	.new-block-content {
		background-color: #ddede9;
	}
	.Content-bar-new .p-4 {
		padding: 20px 0px !important;
	}
	.col-md-4.author-signature-main {
		margin: 20px auto 0;
	}
	.header .logo img.logo-icon {	max-height: 57px;}
	.header .logo img.logo-text {	max-width: 165px;}
	header.header.header-sticky .logo img.logo-icon {	max-height: 40px;} 

	.header .main-menu ul li::after { display: none; }

	ul.timeline li h5::before {
		display: none;
	}
	ul.timeline li h5 {
		font-size: 0;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		left: -32px;
	}
	ul.timeline li:nth-child(2n+1) h5 {
		right: -36px;
		left: auto;
	}
	.mb-80 {
		margin-bottom: 2rem !important;
	}
	.h4, h4 {
		font-size: 19px;
	}
	.company-pro-content {
		padding: 4px 10px;
	}
	.h5, h5 {
		font-size: 17px;
	}
	.process-box h6 {
		font-size: 17px;
	}
	.three-with-vdo iframe {
		height: 53vw;
	}
	.mb-5 {
		margin-bottom: 1.5rem!important;
	}
	.py-5 {
		padding-top: 1.5rem!important;
		padding-bottom: 1.5rem!important;
	}
	.bg-steps img {
		width: 100%;
	}
	.header .main-menu ul li a {
		border-bottom: 1px solid #b0b0b0;
		position: relative;
	}
	.header .main-menu ul li a::before {
		content: "";
		display: inline-block;
		width: 100%;
		background-color: #ffffffba;
		position: absolute;
		top: 100%;
		height: 1px;
		margin-top: -1px;
	}
	.header .main-menu ul li a:hover {
		background-color: transparent;
		color: #f1f1f1;
	}
	.header .main-menu ul li:last-child a ,
	.header .main-menu ul li:last-child a::before { border: 0px; content: none; }
	.company-pro-content .card .card-body .b-content {
		flex-wrap: wrap;
	}
}

@media (max-width: 589px){
	section.home-pg-banner h1.size_h1 {
	padding: 2px 10px 7px 10px;
	font-size: 0.96rem;
	}
}

#sync1 .item {text-align: center;}
#sync2 .item {cursor: pointer;}
#sync2 .item h1 {font-size: 18px;}
#sync2 .current .item {background: #0c83e7;}

.owl-theme .owl-nav {
	/*default owl-theme theme reset .disabled:hover links */
}
.owl-theme .owl-nav [class*=owl-] {
	transition: all 0.3s ease;
}
.owl-theme .owl-nav [class*=owl-].disabled:hover {
	background-color: #D6D6D6;
}

#sync1.owl-theme {position: relative;}
#sync1.owl-theme .owl-next, #sync1.owl-theme .owl-prev {
	width: 22px;
	height: 40px;
	margin-top: -20px;
	position: absolute;
	top: 50%;
}
#sync1.owl-theme .owl-prev {left: 10px;}
#sync1.owl-theme .owl-next {right: 10px;}
div#sync2 .owl-stage {margin: auto;}

form#frmContact input, form#frmContact textarea {
	background: #d8e9ea;
}

form#frmContact input:focus ,form#frmContact textarea:focus {
	background: #bfe7eb;
	box-shadow: 1px 0px 5px #009aa9;
}
form#frmContact .field {
	margin-bottom: 10px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #a3c0d6!important;
}
::-moz-placeholder { /* Firefox 19+ */
	color: #a3c0d6!important;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #a3c0d6!important;
}
:-moz-placeholder { /* Firefox 18- */
	color: #b0c6b0!important;
}