@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-family: "Poppins", sans-serif; */

h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, ul, ol, li {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:top;
	background:transparent;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}

html, body {
	/*height: 100%;*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: normal;
	color: #000;
	padding: 0;
	margin: 0;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	overflow-x: hidden;
	font-optical-sizing: auto;
}
body.body-lock {
	overflow: hidden;
}
*,
:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	display:block;
	max-width:100%;
}
a {
	color: #000;
	text-decoration: none;
	padding: 0;
	outline: none;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
a:hover {
	color: #0095da;
	text-decoration: none !important;
}


.title {
	margin-bottom: 80px;
}
h1 {
	font-family: "Poppins", sans-serif;
	font-size: 50px;
	font-weight: 600;
	line-height: 1.1;
	text-transform: uppercase;
	margin-bottom: 40px;
}
h2 {
	font-family: "Poppins", sans-serif;
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
	color: #0095da;
	text-transform: uppercase;
	margin-bottom: 24px;
}
h2 span {
	font-size: 18px;
	display: block;
	color: #000;
}
h3 {
	font-family: "Poppins", sans-serif;
	font-size: 68px;
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
	margin-bottom: 16px;
}
h4 {
	font-family: "Poppins", sans-serif;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
	margin-bottom: 16px;
}
h5 {
	font-family: "Poppins", sans-serif;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.45;
	margin-bottom: 16px;
}
h6,
.th6 {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.1;
	margin-bottom: 16px;
	color: #0095da;
}
p {
	margin-bottom: 30px;
}
p:empty { display:none; }
.title:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
	margin-bottom: 0;
}
.text-center {
	text-align: center;
}
.d-flex{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}
.align-center {
    align-items:center;
    -webkit-align-items:center;
    -ms-align-items:center;
}
.align-start {
    align-items:start;
    -webkit-align-items:start;
    -ms-align-items:start;
}
.align-end {
	align-items: flex-end;
    -webkit-align-items: flex-end;
    -ms-align-items: flex-end;
}
.space-between {
	justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
}
.btn {
	font-size: 16px;
	line-height: 1;
	padding: 17px 40px 17px 20px;
	position: relative;
	border: 0;
	display: inline-block;
}
.btn.primary-btn {
	background: #0095da;
	color: #fff;
}
.btn.primary-btn:hover {
	background: #000;
}
.btn.primary-btn:hover i {
	right: 15px;
}
.btn.primary-btn i {
	position: absolute;
	right: 20px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.site-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 124px;
}
.container {
	margin: 0 auto;
	max-width: 1700px;
	width: 100%;
	padding-left: 50px;
	padding-right: 50px;
	position: relative;
}

.s-pt,
.s-py {
	padding-top: 60px;
}
.s-pb,
.s-py {
  padding-bottom: 60px;
}
.s-pt-half,
.s-py-half {
	padding-top: 30px;
}
.s-pb-half,
.s-py-half {
  padding-bottom: 30px;
}
.bg-grey {
	background: #f1f1f1;
}
.ml-auto,
.mx-auto {
	margin-left: auto;
}
.mr-auto,
.mx-auto {
	margin-right: auto;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.mb-10 {
	margin-bottom: 10px !important;
}

.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
}
.space-between {
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}
.space-center {
	justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
}
.align-start {
	align-items: flex-start;
	-webkit-align-items: flex-start;
	-ms-align-items: flex-start;
}
.align-center {
	align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
}
.align-end {
	align-items: flex-end;
	-webkit-align-items: flex-end;
	-ms-align-items: flex-end;
}

.site-header {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 0;
	border-top: 4px solid #0095da;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.site-header.fixed {
	padding: 15px 0;
	background: rgba(255, 255, 255, 0.9);
}
.site-header .logo {
	width: 160px;
}
.site-header .btn,
.site-header .main-nav { display: inline-block; }
.mobile-menu{
	width: 30px;
	height: 30px;	
	display: none;
}
.mobile-menu span,
.mobile-menu span:before,
.mobile-menu span:after{
	background: #0c2452;
	width: 30px;
	height: 3px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	transition: all 0.15s linear
}
.mobile-menu span:before,
.mobile-menu span:after{
	content: '';
	position: absolute;
}
.mobile-menu span:before{
	transform: translateY(-7px);
}
.mobile-menu span:after{
	transform: translateY(7px);
}
.mobile-menu.open span{
	background: transparent;
}
.mobile-menu.open span:before{
	transform: rotate(45deg);
}
.mobile-menu.open span:after{
	transform: rotate(-45deg);
}
.menu {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    list-style: none;
}
.menu li {
	margin-right: 32px;
}
.menu li:last-child {
	margin-right: 0;
}
.menu li a {
	font-family: "Red Hat Display", sans-serif;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
}
.menu-btn { text-transform: uppercase; color: #ef3a24; padding: 20px 0 20px 35px; float: right; position: relative; display: none; }
.menu-btn:hover { opacity: 0.7; color: #39b577; }
.menu-line { display: block; top: 50%; margin-top: -2px; transition-duration: 0.3s; transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.menu-line, .menu-line::before, .menu-line::after { width: 25px; height: 3px; background-color: #818285; border-radius: 1px; -webkit-border-radius: 1px; -moz-border-radius: 1px; position: absolute; left: 0; transition-property: -webkit-transform; transition-property: transform; transition-property: transform, -webkit-transform; transition-duration: 0.15s; transition-timing-function: ease; }
.menu-line::before, .menu-line::after { content: ""; display: block; }
.menu-line::before { top: -7px; transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
.menu-line::after { bottom: -7px; transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.menu-btn.active .menu-line { background-color: #0095da; -webkit-transform: rotate(225deg); transform: rotate(225deg); transition-delay: 0.14s; transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.menu-btn.active .menu-line::before { background-color: #0095da; top: 0; opacity: 0; transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
.menu-btn.active .menu-line::after { background-color: #0095da; bottom: 0; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }
.main-menu li { display: inline-block; position: relative; }
.main-menu .submenu-button { position: absolute; right: 5px; line-height: 45px; color: #818285; }
/*.main-menu li.has-sub > a:before { display:none; width:8px; height:5px; position:absolute; top:29px; right:-28px; content:""; background:url(../images/down-arrow-white.svg) center no-repeat; }*/

.main-menu { width:100%; text-align:right; }
.main-menu li { margin: 0 5px 0 0; }
.main-menu li:last-child.active a:before { display:none; }
.main-menu li.has-sub > a { padding:0 20px 0 15px; }
.main-menu li a { display: block; padding:0 15px; margin:0; font-size:16px; line-height: 45px; font-weight: 600; text-transform: uppercase; color:#818285; }
.main-menu li a:before,
.main-menu li.active a:before { display:none; position:absolute; content:""; left:0; bottom:0; width:0; height:3px; background:#ef3a24; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; }
/*.main-menu li a:hover:before,*/
.main-menu li.active a:hover:before,
.main-menu li.active a:before { width:100%; }
.main-menu li.active a { color: #0095da; }
.main-menu li a:hover { color: #0095da; }
.main-menu li:last-child { margin-right:0; }
.main-menu li:last-child a { background-color: #0095da; color: #fff !important; }
.main-menu li:last-child a:hover { background-color: #000; color: #fff !important; }
.main-menu li ul { padding: 0; display:none; position: absolute; width: 250px; background:#0095da; top:26px; left: 0; opacity:0; visibility:hidden;  -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; 
 -webkit-box-shadow: 0 0 5px 1px rgba(0,0,0,.1); -moz-box-shadow: 0 0 5px 1px rgba(0,0,0,.1); box-shadow: 0 0 5px 1px rgba(0,0,0,.1);}
.main-menu li:last-child ul { right: 0; left: auto; width: 200px; }
.main-menu li:hover > ul { display:block; top:40px; opacity:1; visibility: visible; }
.main-menu li ul li .submenu-button { display: none; }
.main-menu li ul li ul { display: none; position: absolute; width:220px; top: 0; left: 100%; }
.main-menu li ul li:hover ul { display: block; top:0; }
.main-menu li ul li { display: block; text-align: left; margin:0; }
.main-menu li ul li a { display: block; padding:0 10px; font-size:14px; text-transform: none; font-weight:400; margin: 0; line-height: 36px; color: #fff; }
.main-menu li.active ul li a { background: #000; color:#fff; }
.main-menu li ul li:hover > a, .main-menu li ul li a:hover { background:#000; color: #fff; }
.main-menu li ul li a:after, .main-menu li ul li a:before { display: none; }

.slider { position: relative; }
.slider .item { position: relative; }
/*.slider .item:before { position: absolute; content: ""; width: 100%; height: 100%; left: 0; top: 0; background: rgba(0, 0, 0, .1); }*/
.slider .slick-dots { position: absolute; bottom: 20px; right: 20px; width: 100%; margin: 0; z-index: 1; }
.slick-dots { list-style: none; text-align: right; margin-top: 74px; }
.slick-dots li { display: inline-block; vertical-align: top; margin-right: 10px; }
.slick-dots li:last-child { margin-right: 0; }
.slick-dots li button { width: 30px; height: 8px; font-size: 0;	border: 0; cursor: pointer;	background: #818285; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; transition: all 0.3s ease; -webkit-transition: all 0.3s ease;	-moz-transition: all 0.3s ease; }
.slick-dots li button:focus-visible { outline: none; }
.slick-dots li.slick-active button,
.slick-dots li button:hover { background-color: #0095da; }
.slick-arrow { position: absolute; right: 0; bottom: 20px; z-index: 1; font-family: Font Awesome\ 5 Free;  font-weight: 700; }
.slick-arrow { font-size: 0; border: 1px solid #818285; color: #818285; background: transparent; width: 35px; height: 35px; cursor: pointer; transition: all 0.3s ease; -webkit-transition: all 0.3s ease;	-moz-transition: all 0.3s ease; }
.slick-arrow:hover { background: #0095da; color: #fff; border-color: #0095da; outline: none; }
.slick-prev { right: 80px; }
.slick-next { right: 35px; }
.slick-prev:before { content: "\f053"; font-size: 20px; }
.slick-next:before { content: "\f054"; font-size: 20px; }
/*
.main-menu ul {
	list-style: none;
}
.main-menu li {
	display: inline-block;
	margin-right: 5px;
}
.main-menu li:last-child {
	margin-right: 0;
}
.main-menu li:last-child a {
	background-color: #0095da;
	color: #fff;
}
.main-menu li:last-child a:hover {
	background-color: #000;
	color: #fff;
}
.main-menu li a {
	font-size: 16px;
	color: #818285;
	font-weight: 500;
	display: block;
	padding: 10px 15px;
}
.main-menu li a:hover {
	color: #0095da;
}*/

.top-text-slider {
	background-size: 517px auto;
	background-position: right top;
	background-repeat: no-repeat;
	padding-top: 50px;
	padding-bottom: 30px;
}
.text-slider .item {
	-webkit-flex-flow: nowrap;
	flex-flow: nowrap;
}
.text-slider .left-block {
	padding-right: 50px;
}
.text-slider .right-block {
	width: 250px;
}
.text-slider h6 {
	color: #0095da;
	position: relative;
	padding-left: 65px;
}
.text-slider h6::after {
	content: "";
	background: url('../images/valve-icon.svg') center center repeat;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 19px;
}
.text-slider h2 {
	font-size: 30px;
}
.text-slider .right-block p {
	font-size: 15px;
	line-height: 1.3;
	color: #818285;
}
.text-slider .right-block p span {
	font-weight: 700;
	font-size: 18px;
	color: #0095da
}

.hero-section {
	padding: 80px 0;
	min-height: 700px;
	background-size: cover;
	background-position: center; top;
	background-repeat: no-repeat;
}
.hero-section .hero-content {
	max-width: 50%;
	width: 630px;
}
.hero-section .hero-content h1 {
	color: #000;
	margin-bottom: 20px;
}
.hero-section .hero-content p {
	max-width: 548px;
	line-height: 30px;
	color: #818285;
}
.welcome-section {
	padding-bottom: 50px;
}
.welcome-section .figures {
	padding: 32px 40px 32px 0;
	margin-top: -60px;
	margin-bottom: 100px;
	background: #0095da;
	color: #fff;
	font-weight: 600;
	position: relative;
	max-width: 960px;
	width: 100%;
}
.welcome-section .figures::after {
	content: "";
	background: #0095da;
	position: absolute;
	pointer-events: none;
	top: 0;
	right: 100%;
	width: 2000px;
	height: 100%;
}
.welcome-section .figures .item {
	width: 25%;
}
.welcome-section .figures .numbers,
.welcome-section .figures .label.same {
	font-size: 40px;
	font-weight: 600;
}
.welcome-section .figures .label {
	font-size: 24px;
	font-weight: 600;
}
.welcome-content {
	margin: 0 -50px;
}
.welcome-content p {
	font-size: 18px;
}
.welcome-content b {
	font-weight: 600;
}
.welcome-content .content-block,
.welcome-content .img-block {
	width: 50%;
	padding: 0 50px;
}

.valve-section .innovation-block {
	width: 70%;
}
.innovation-block .box {
	padding: 50px;
	background: #fff;
	background-position: center bottom;
	background-size: 90% auto;
	background-repeat: no-repeat;
}
.innovation-block .box .accordion {
	position: relative;
}
.innovation-block .box .accordion-item {
	padding-right: 300px;
}
.accordion-item .accordion-title {
	padding: 12px 0;
	cursor: pointer;
}
.accordion-item .accordion-title h4 {
	font-size: 24px;
	font-weight: 700;
	display: inline-block;
	position: relative;
	padding-right: 30px;
}
.accordion-item .accordion-title h4:after {
	content: "";
	width: 11px;
	height: 17px;
	position: absolute;
	top: 6px;
	right: 0;
	background: url('../images/right-arrow-blue.svg') center center repeat;
	background-size: 100% auto;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.accordion-item.active .accordion-title h4:after {
	opacity: 1;
	visibility: visible;
}
.accordion-item .accordion-content {
	padding: 10px 0 20px 0;
	display: none;
}
.accordion-item:first-child .accordion-content {
	display: block;
}
.innovation-block .box .accordion-item .image {
	position: absolute;
	right: 0;
	top: 0;
	width: 173px;
	max-width: 300px;
	background: #fff;
}
.valve-section .capability-block {
	width: 30%;
}


.export { background: #f1f1f1; padding: 30px 0 150px 0; position: relative; }
.export:before { position: absolute; content: ""; width: 100%; height: 100%; left: 0; top: 0; background:url(../images/worldmap-dot.svg) 50% 50% no-repeat; background-size: 1020px; opacity: 0.5; }
.export:after { position: absolute; content: ""; width: 100%; height: 100%; left: 0; bottom: 0; background:url(../images/vehicle.svg) 50% 100% no-repeat; background-size: 1600px; opacity: 0.5; }
.export .info { width: 55%; }
.export .airport { width: 30%; padding-left: 70px; position: relative; margin-top: 50px; }
.export .airport:before { position: absolute; content: ""; width: 50px; height: 100%; left: 0; top: 0; background:url(../images/flight.svg) 50% 0 no-repeat; background-size: contain; }
.export .seaport { width: 15%; padding-left: 70px; position: relative; margin-top: 50px; }
.export .seaport:before { position: absolute; content: ""; width: 50px; height: 100%; left: 0; top: 0; background:url(../images/ship.svg) 50% 0 no-repeat; background-size: contain; }


.site-footer { margin-top: auto; }
.site-footer .footer-top { background: #0095da; padding: 40px 0; color: #fff; }
.site-footer .footer-top a { color: #fff; }
.site-footer .footer-top a:hover { color: #000; }
.site-footer .footer-top .info { width: 30%; font: 16px; line-height: 30px; }
.site-footer .footer-top .info .logo { width: 143px; margin-bottom: 20px; }
.site-footer .footer-top .address,
.site-footer .footer-top .phone,
.site-footer .footer-top .web { padding-left: 35px; position: relative; margin-bottom: 20px; }
.site-footer .footer-top .address:before { position: absolute; content: ""; width: 26px; height: 100%; left: 0; top: 0; background:url(../images/location-icon.svg) 50% 0 no-repeat; background-size: contain; }
.site-footer .footer-top .phone:before { position: absolute; content: ""; width: 26px; height: 100%; left: 0; top: 0; background:url(../images/phone-icon.svg) 50% 0 no-repeat; background-size: contain; }
.site-footer .footer-top .web:before { position: absolute; content: ""; width: 26px; height: 100%; left: 0; top: 0; background:url(../images/web-icon.svg) 50% 0 no-repeat; background-size: contain; }
.site-footer .footer-top .links { margin-top:50px; padding-left: 20px; }
.site-footer .footer-top .links ul { list-style: none; font-size: 16px; line-height: 36px; font-weight: 600; }
.site-footer .footer-top .links ul ul { list-style: none; }
.site-footer .footer-top .links ul ul li { font-weight: 400; }
.site-footer .footer-top .links ul li a:hover { color: #000; }
.site-footer .footer-top .links ul ul li a { position: relative; padding-left: 15px; }
.site-footer .footer-top .links ul ul li a:before { position: absolute; content: "-"; left: 0; }

.site-footer .footer-bottom { background: #fff; padding: 30px 0; font-size: 14px; color: #818285; }
.site-footer .footer-bottom .copyright b { color: #0095da; }

.hero-section.inner { min-height: 400px; }

.breadcrumb { padding: 15px 0; font-size: 14px; }
.breadcrumb ul { margin-left:0; margin-bottom: 0; }
.breadcrumb li { list-style: none; display: inline-block; margin-right: 10px; color: #0095da; font-weight: 600; }
.breadcrumb li a { display: block; position:relative; color: #818285; padding-right:15px; font-weight: 400; }
.breadcrumb li a:hover { color: #000; }
.breadcrumb li a:before { content: ">"; position: absolute; top: 1px; right: 0; }

.search-result { padding: 30px 0; }
.search-result .leftpart { width: 75%; padding-right: 50px; }
.search-result .leftpart .slist .item { border: 1px solid #e2e2e2; margin-bottom: 40px; line-height: 30px; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }
.search-result .leftpart .slist .item:hover { -webkit-box-shadow: 0px 2px 20px rgba(0, 149, 218, .4);
    -moz-box-shadow: 0px 2px 20px rgba(0, 149, 218, .4);
    box-shadow: 0px 2px 20px rgba(0, 149, 218, .4); }
.search-result .leftpart .slist .item .mtitle { font-size: 30px; color: #ffffff; font-weight: 600; text-transform: uppercase; text-align: center; background: #0095da; padding: 15px 10px; }
.mtable table { width: 100%; text-align: left; border: 1px solid #fff; border-collapse: collapse; }
.mtable th, .mtable td { padding: 5px 10px; border: 1px solid #fff; line-height: normal; }
.mtable th { background: #cceaf8; font-size: 18px; font-weight: 600; color: #000000; text-transform: uppercase; }
.mtable td { font-size: 14px; color: #666666; }
.mdetail .in { width: 50%; }
.mdetail .ex { width: calc(50% + 1px); margin-left: -1px; }
.dtitle { font-size: 18px; color: #ffffff; font-weight: 600; text-transform: uppercase; text-align: center; border-left: 1px solid #fff; border-right: 1px solid #fff; background: #909090; padding: 5px 10px; }
.dtable table { width: 100%; text-align: left; border: 1px solid #fff; border-collapse: collapse; }
.dtable th, .dtable td { padding: 5px 10px; border: 1px solid #fff; }
.dtable th { background: #e2e2e2; font-size: 14px; font-weight: 600; color: #000000; text-transform: uppercase; line-height: normal; }
.dtable td { font-size: 14px; color: #666666; }
.dtable th.highlight { color: #0095da; }
.dtable td.highlight { color: #0095da; font-weight: 700; }
.search-result .rightpart { width: 25%; }
.search-result .rightpart .searchbox { background: #f1f1f1; padding: 30px; }
.search-result .rightpart .searchbox .form-group { margin-bottom: 25px; }
.search-result .rightpart .searchbox .form-group:last-child { margin-bottom: 0; }
.search-result .rightpart .searchbox label { display: block; font-size: 14px; font-weight: 600; color: #000; text-transform: uppercase; padding-bottom: 5px; }
.search-result .rightpart .searchbox .form-group .text-field {  width: 100%; background: #fff;	font-size: 14px; line-height: 40px; color: #000; font-weight: 500; width: 100%; height: 40px; border: 0; -webkit-text-shadow: none; -moz-text-shadow: none;	text-shadow: none; padding: 0 10px;	-webkit-border-radius: 5px;	-moz-border-radius: 5px; border-radius: 5px; -webkit-box-shadow: none; -moz-box-shadow: none; transition: all 0.3s ease; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;	outline: none; }
.search-result .rightpart .searchbox .i-outer { position: relative; }
.search-result .rightpart .searchbox .searchicon { position: absolute; right: 0; top: 0; background: url(../images/search-icon.png) 50% 50% no-repeat; border: 0; width: 40px; height: 40px; cursor: pointer; outline: none; }
.search-result .rightpart .searchbox .search-btn { position: relative; }
.search-result .rightpart .searchbox .search-btn .btn { width: 100%; padding: 0 40px; line-height: 40px; font-size: 14px; font-weight: 600; color: #fff; text-transform: uppercase; cursor: pointer; -webkit-border-radius: 5px; -moz-border-radius: 5px;	border-radius: 5px; }
.search-result .rightpart .sticky { position: sticky; top:125px; }

.randd .blocks { margin: 0 -30px; align-items: end; }
.randd .blocks .leftpart,
.randd .blocks .rightpart { width: 50%; padding: 0 30px; }
.randd .blocks .rightpart {}
.randd .blocks .rightpart .links { list-style: none; margin-left: -30px; font-size: 24px; font-weight: bold; }
.randd .blocks .rightpart .links li { width: calc(50% - 30px); margin-left: 30px; margin-top: 30px; }
.randd .blocks .rightpart .links li a { border: 2px solid #0095da; display: block; padding: 20px; min-height: 115px; }
.randd .blocks .rightpart .links li a:hover { background: #0095da; color: #fff; }
/*.randd .blocks .rightpart .links li a span { display: inline-block; position: relative; padding-right: 30px; }
.randd .blocks .rightpart .links li a span:after { position: absolute; content: ""; width: 12px; height: 100%; right: 0; top: 10px; background:url(../images/right-arrow-blue.svg) 50% 0 no-repeat; background-size: contain; }*/

.list-valve li { position: relative; list-style: none; padding-left: 70px; font-size: 18px; font-weight: 600; line-height: 24px; margin: 6px 0; }
.list-valve li:before { position: absolute; content: ""; width: 50px; height: 100%; left: 0; top: 3px; background:url(../images/valve-icon.svg) 50% 0 no-repeat; background-size: contain; }

.valve-list{ display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; flex-flow: row wrap; }
.valve-list li { margin-top: 10px; display: flex; flex-wrap: wrap; transition: all 0.3s ease; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; }
.valve-list li .data { width: 70%; background: #f1f1f1; padding: 40px 50px; position: relative; }
.valve-list li .data:before { position: absolute; content: ""; left: 0; top: 0; width: 100%; height: 100%; background:url(../images/logo-outline.svg) 40px 50% no-repeat; background-size: 500px; pointer-events: none; }
.valve-list li .img { width: 30%; padding: 0 0 0 60px; }
.valve-list li .data .th5 { font-size: 24px; color: #000000; font-weight: 700; padding-bottom: 20px; }
.valve-list li .data p { font-size: 18px; line-height: 36px; color: #000; margin-bottom: 0; }

.types { margin: 50px 0; padding: 50px 0; }
.types-block { margin: 0 -50px; }
.types-block .left-block,
.types-block .right-block { width: 50%; padding: 0 50px; }
.arrow-list li { position: relative; list-style: none; padding-left: 20px; font-size: 18px; line-height: 24px; margin: 6px 0; }
.arrow-list li:before { position: absolute; content: ">"; color: #0095da; width: 50px; height: 100%; left: 0; top: 2px; }
.f-16,
.f-16 li { font-size: 16px; }
.f-01 { font-size: 18px; font-weight: 500; line-height: 36px; }

/**** FORM FIELDS:- INPUTS, SELECT, RADIO, CHECKBOX, BUTTONS ****/
.form-list { margin: 0 -15px;	list-style: none; }
.form-list li { width: calc(50% - 30px); margin-left: 15px;	margin-right: 15px;	margin-bottom: 30px; }
.form-list li:last-child { margin-bottom: 0; }
.form-list li.w-full { width: 100%; }
.text-field { font-family: "Poppins", sans-serif;	font-size: 14px; line-height: 1.2; color: #000; font-weight: 400; width: 100%; height: 46px; background-color: #f5f4f4; border: 1px solid #ddd;	-webkit-text-shadow: none; -moz-text-shadow: none; text-shadow: none; padding: 5px 15px; -webkit-border-radius: 0; -moz-border-radius: 0;	border-radius: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; outline: none; }
.text-field:focus { outline: none; }
.text-field::placeholder { color: #000; }
textarea.text-field { resize: none;	height: 200px; padding-top: 10px; }
.form-list .btn { font-size: 18px; font-weight: 700; padding: 15px 40px; text-transform: uppercase; background: #0095da; color: #fff; -webkit-border-radius: 0; -moz-border-radius: 0;	border-radius: 0; transition: all 0.3s ease; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; cursor: pointer;	}
.form-list .btn:hover { background: #000; }


.faq .left_block { width: 70%; }
.faq .right_block { width: 25%; margin: 0 0 0 auto; }
.faq .cta { background: #0095da; }
.faq .cta img { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; }
.faq .cta .data { padding: 30px; }
.faq .cta .data .th5 { font-size: 24px; font-weight: 600; color: #fff; text-transform: none; margin-bottom: 20px; }
.faq .cta .btn { background: #000; padding: 15px 20px; font-size: 16px; color: #fff; }
.faq .cta .btn:hover { background: #fff; color: #0095da; }

.sticky { position:bkit-sticky; position: sticky; top: 150px; }

.contact-us .info { width: 50%; font: 16px; line-height: 30px; }
.contact-us .info .logo { width: 143px; margin-bottom: 20px; }
.contact-us .address,
.contact-us .phone,
.contact-us .web { padding-left: 35px; position: relative; margin-bottom: 20px; }
.contact-us .address:before { position: absolute; content: ""; width: 26px; height: 100%; left: 0; top: 0; background:url(../images/location-icon.svg) 50% 0 no-repeat; background-size: contain; }
.contact-us .phone:before { position: absolute; content: ""; width: 26px; height: 100%; left: 0; top: 0; background:url(../images/phone-icon.svg) 50% 0 no-repeat; background-size: contain; }
.contact-us .web:before { position: absolute; content: ""; width: 26px; height: 100%; left: 0; top: 0; background:url(../images/web-icon.svg) 50% 0 no-repeat; background-size: contain; }
.contact-us .map { width: 50%; }
.contact-us .map iframe { border:1px solid #eeefef; padding:3px; height: 400px; }

.infra-list { margin-left: -30px; margin-top: -30px; }
.infra-list .item { width: calc(20% - 30px); margin-left: 30px; margin-top: 30px; transition: all 0.3s ease; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; }
.infra-list .item img { width: 100%; }
.infra-list .item .th6 { font-size: 20px; font-weight: 700; color: #0095da; padding-top: 15px; }

.two-col { margin: 0 -50px; }
.two-col .left-block,
.two-col .right-block { width: 50%;	padding: 0 50px; }
.size-30 { width: 30% !important; }
.size-40 { width: 40% !important; }
.size-60 { width: 60% !important; }
.size-70 { width: 70% !important; }

.bor-01 { border: 1px solid #dedede; padding: 4px; }
.application-models-list { font-size: 0; }
.application-models-list li { display: inline-block; width: 25%; position: relative; list-style: none; font-size: 16px; font-weight: 600; line-height: 24px; margin: 5px 0; }
.application-models-list li a { position: relative; display: block; padding-left: 15px; margin-right: 20px; }
.application-models-list li a:before { position: absolute; content: ">"; font-size: 20px; color: #0095da; left: 0; top: 0; }

.dvalve-list { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; flex-flow: row wrap; }
.dvalve-list li { margin-top: 10px; display: flex; flex-wrap: wrap; transition: all 0.3s ease; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; }
.dvalve-list li .img1 { width: 20%; padding: 0 20px 0 0; }
.dvalve-list li .img2 { width: 20%; padding: 0 0 0 20px; }
.dvalve-list li .data { width: 60%; background: #f1f1f1; padding: 20px; position: relative; }
.dvalve-list li .data .th5 { font-size: 18px; color: #000000; font-weight: 700; padding-bottom: 20px; }
.dvalve-list li .data p { font-size: 16px; line-height: 24px; color: #000; }

.page-id-46 .hero-section.inner { background-position: 50% 100%; }

.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) { margin-bottom: 0 !important; }
.main-menu li ul li:hover > a, .main-menu li ul li a:hover { color: #fff !important; }
/*.main-menu li li:last-child a { background: inherit !important; color: #000 !important; }
.main-menu li li:last-child a:hover { background: #000 !important; color: #fff !important; }*/
.wp-block-navigation .wp-block-navigation__submenu-icon { display: none !important; }