
f@charset "UTF-8";

/* GENERAL STYLESHEET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
}
em{
	font-style: italic;
}
ol, ul {
	list-style: none;
}
strong{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
iframe::-webkit-scrollbar {
	display: none;
}
::-webkit-input-placeholder { /* WebKit browsers */
	color: #000;
	opacity: .5 !important;
}
:-moz-placeholder { /* Firefox 18- */
   color: #000;
	opacity: .5 !important;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #000;
	opacity: .5 !important;
}

:-ms-input-placeholder {
  color: #000;
	opacity: .5 !important;
}

a, input{
	outline: none;
}
a{
	color: #1f93be;
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
fieldset{
	border: none;
}
input,
textarea{
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	background: #fafafa;
	border: 1px solid #d7d7d7;
	border-radius: 3px;
	padding: 0 10px;
	margin-bottom: 10px;
	-webkit-appearance:	none;
}
input:focus,
textarea:focus{
	border-color: #1f93be;
	outline: none;
}
input.error,
textarea.error{
	border-color: #d74100;
}
input{
	height: 40px;
}
textarea{
	height: 90px;
	padding-top: 10px;
}
.slct-styled{
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 40px;
	background: #fafafa;
	border-radius: 3px;
	padding: 0 10px;
}
.slct-styled select{
    border: none;
    height: 40px;
    font-family: 'Open Sans', sans-serif;
	font-size: 11px;
    box-shadow: none;
    cursor: pointer;
    padding: 0;
    width: 120%;
    border: none;
    box-shadow: none;
    outline: 0;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
}
.slct-styled:after{
	content: "";
	width: 0;
	height: 0;
	margin-left: 2px;
	vertical-align: middle;
	border-top: 5px solid #999;
	border-top: 5px solid\9;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	position: absolute;
	top: 50%;
	display: block;
	margin-top: -2px;
	z-index: 0;
	right: 15px;
}

.wide{
	width: 100%;
}
.hide{
	display: none;
}
.no-underline:hover{
	text-decoration: none;
	opacity: .8;
}
.col-3{
	width: 100%;
}

/** clear fix */
.cf:before,
.cf:after {
    content: ""; /* 1 */
    display: table; /* 2 */
}
.cf:after {
    clear: both;
}
.cf {
    zoom: 1;
}

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*{
	padding: 0;
	margin: 0;
}
/* General*/
html{
	height: 100%;
}
body{
	color: #333;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 14px;
	min-height: 100%;
	overflow-x: hidden;
}

body:after{
	content: "<480";
	display: none;
}
body.hide-overflow{
	overflow-y: hidden !important;
}
.center-block{
	width: 100%;
}
.center-inline{
	text-align: center;
}

.right-inline{
	text-align: right;
}
.left-inline{
	text-align: left;
}

.btn{
	-webkit-appearance:	none;
	display: inline-block;
	text-transform: uppercase;
	border-radius: 3px;
	border: none;
	padding: 0 20px;
	font-weight: 800;
	-webkit-transition: .8s;
	-moz-transition: .8s;
	-ms-transition: .8s;
	-o-transition: .8s;
	transition: .8s;
	cursor: pointer;
}
.btn:hover{
	box-shadow: inset 0 0 0 2em rgba(0,0,0,.1);
	text-decoration: none;
}
.primary-btn{
	background: #d5ec62;
	color: #3e3e3e;
}
.secondary-btn{
	border: 1px solid #bcd0df;
	color: #3577a9;
}
.l-btn{
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	padding: 0 60px;
}
.m-btn{
	height: 40px;
	line-height: 40px;
	font-size: 13px;
}
.xs-btn{
	font-size: 10px;
	height: 30px;
	line-height: 30px;
	padding: 0 15px;
}
.blue-btn{
	background: #1f93be;
	color: #fff;
}


.chk{
	display: inline-block;
	vertical-align: middle;
	width: 17px;
	height: 17px;
	background: #e5e5e5;
	cursor: pointer;
	position: relative;
	margin-right: 5px;
}
.chk input{
	display: none;
}
.chk label{
	position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    left: 0;
}
.chk label:before{
	display: none;
	content: "";
	position: absolute;
    cursor: pointer;
    top: 5px;
    left: 4px;
    width: 8px;
    height: 5px;
    line-height: 17px;
    text-align: center;
    border-left: 2px solid #3577a9;
    border-bottom: 2px solid #3577a9;

    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);

    transform-origin: center;
    -moz-transform-origin: center;
    -webkit-transform-origin: center;
}
.chk input:checked + label:before{
	display: block;
}
.chk input[disabled="disabled"] + label{
	cursor: default;
}

/* Modal */
.mdl{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
	background: rgba(0,0,0,.8);
	display: none;
}
.mdl-wrap{
	width: 100%;
	max-height: 90%;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 3px;
}
.demo-mdl .mdl-wrap{
	max-width: 480px;
}
.mdl-content{
	position: relative;
	height: 100%;
	text-align: center;
	opacity: 0;
}
.mdl-content h2{
	font-size: 26px;
	font-weight: 300;
	text-align: center;
	padding: 30px 20px;
}
.mdl-content p{
	font-size: 14px;
	padding: 0 30px 30px;
}
.mdl-content .close-btn{
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 5px;
	color: #999;
	font-size: 20px;
	z-index: 3;
}
.mdl-content .thank-you-note{
	position: absolute;
	z-index: 1;
	height: 100%;
	bottom: -100%;
	padding: 50px;
	background: #fff;
	font-weight: 300;
    font-size: 25px;
    -webkit-font-smoothing:  antialiased;

	-webkit-transition: -webkit-transform .3s ease-out;
	-moz-transition: -moz-transform .3s ease-out;
	-ms-transition: -ms-transform .3s ease-out;
	-o-transition: -o-transform .3s ease-out;
	transition: transform .3s ease-out;
}
.mdl-content .thank-you-note small{
	display: block;
    font-size: 14px;
    font-weight: 400;
    margin: 20px 0;
}

.thank-you-note.slideToView{
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
}

label.error{
	position: absolute;
    z-index: 1;
    background: #d74100;
    font-size: 10px;
    display: block;
    font-style: italic;
    color: #fff;
    line-height: 15px;
    padding: 0 3px;
    border-radius: 2px;
}

header > div,
footer > div{
	padding: 0 20px;
}

/* HEADER */
header{
	height: 60px;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f2f2f2;
    z-index: 2;
}

.overlay-content{
	background: none;
}
header.animate-menu{
	box-shadow: 0 4px 10px rgba(0,0,0,.2);
}
header h1{
	width: 100px;
	height: 60px;
	margin: 0 auto;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
header h1 svg{
	width: 100%;
	height: 100%;
}
html:not(.menu-is-open) header.overlay-content h1 svg *{
	fill: #fff;
}

body:not('.has-overlay-header') .wrapper{
	padding-top: 60px;
}

/* Offcanvas menu*/
body.mobile-menu.menu-is-open{
	height: 100%;
	overflow: hidden;
}
.mobile-menu.fixed-menu .wrapper{
	padding-top: 60px;
}
.mobile-menu .offcanvas-open-btn,
.mobile-menu .offcanvas-close-btn{
	display: block;
}
.offcanvas-menu .offcanvas-bg{
	display: none;
}
.mobile-menu .offcanvas-menu{
	position: fixed;
	padding-top: 60px;
	top: 0;
	left: -100%;
	height: 100%;
	width: 100%;
	z-index: 1000;
	text-align: center;
	background-color: #fff;
	-webkit-transition: all .3s ease-out;
	   -moz-transition: all .3s ease-out;
	    -ms-transition: all .3s ease-out;
	     -o-transition: all .3s ease-out;
	        transition: all .3s ease-out;
}
.mobile-menu.menu-is-open .offcanvas-menu{
	-webkit-transition-delay: .15s;
	   -moz-transition-delay: .15s;
	    -ms-transition-delay: .15s;
	     -o-transition-delay: .15s;
	        transition-delay: .15s;
	-webkit-transform: translateX(100%);
	   -moz-transform: translateX(100%);
	    -ms-transform: translateX(100%);
	     -o-transform: translateX(100%);
	        transform: translateX(100%);
}
.mobile-menu.menu-is-open header h1{
	z-index: 10001;
	position: relative;
}
.mobile-menu .main-menu{
	clear: both;
}
.offcanvas-open-btn,
.offcanvas-close-btn{
	font-size: 24px;
	padding: 0 10px;
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    display: none;
}
header:not(.overlay-content) .offcanvas-open-btn{
	color: #333;
}
.offcanvas-close-btn{
	color: #333;
}
.offcanvas-open-btn > i{
	display: block;
}
.mobile-menu.fixed-menu .offcanvas-open-btn{
	left: 0;
}
.mobile-menu .offcanvas-menu ul{
	width: 100%;
}
.mobile-menu .offcanvas-menu .main-menu{
	border-top: 1px solid #eee;
}
.mobile-menu .offcanvas-menu .main-menu li a {
    line-height: 70px;
    font-weight: 300;
    font-size: 20px;
    display: block;
    padding: 0;
    margin: 0;
}
.mobile-menu .offcanvas-menu .main-menu li a.business-clr{
	border-bottom-color: #2e767a;
}
.mobile-menu .offcanvas-menu .main-menu li a.culture-clr{
	border-bottom-color: #532831;
}
.mobile-menu .offcanvas-menu .main-menu li a.style-clr{
	border-bottom-color: #707f4d;
}
.offcanvas-menu #corporate-links{
	border-bottom: 1px solid #eee;
}
.offcanvas-menu #corporate-links a {
    color: #999;
}
.mobile-menu .offcanvas-menu dd{
	font-size: 14px;
    line-height: 50px;
    display: block;
}
.offcanvas-menu #corporate-links dt{
	display: none;
}
.offcanvas-menu .social-menu li {
    display: inline-block;
    float: none;
}

#main-intro{
	padding-top: 60px;
	color: #fff;
    position: relative;
}
#main-intro:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#main-intro.hp{
	height: 360px;
	background: #00afd2 url(../i/main.jpg) no-repeat bottom center;
    background-size: 100% auto;
}
#main-intro.hp:before{
	background: -moz-linear-gradient(top,  rgba(53,119,169,1) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(53,119,169,1) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(53,119,169,1) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3577a9', endColorstr='#007db9e8',GradientType=0 ); /* IE6-9 */
}

#newspress #main-intro{
	background: #3e4a5f;
}
#newspress #main-intro:before{
	background: -moz-linear-gradient(top,  rgba(138,163,203,0) 0%, rgba(138,163,203,0.4) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(138,163,203,0) 0%,rgba(138,163,203,0.4) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(138,163,203,0) 0%,rgba(138,163,203,0.4) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008aa3cb', endColorstr='#668aa3cb',GradientType=0 ); /* IE6-9 */
}

#main-intro h1{
	-webkit-font-smoothing: antialiased;
	font-size: 28px;
}
#main-intro.hp h1{
	font-size: 17px;
}
#main-intro h1 strong{
	display: block;
}
#main-intro p{
	line-height: 1.5em;
	margin: 20px 0;
}
#main-intro > div{
	position: relative;
}
#main-intro h2{
	font-size: 14px;
	margin: 30px 0;
}
#main-intro .left-block{
	padding: 20px 0 20px 55px;
}
#main-intro .left-block img{
	margin: 0 0 20px -55px;
}
#main-intro .ss{
    height: 100%;
    width: 100%;
    display: inline-block;
    vertical-align: bottom;
	max-width: 700px;
}

section > div{
	padding: 30px 20px;
}
.section-title{
	font-weight: 300;
	font-size: 26px;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

#products{
	font-size: 0;
}
#products-filters{
	margin: 10px 0 20px;
	font-size: 0;
}
#products-filters fieldset{
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	width: 33.33%
}
#products article{
	display: inline-block;
	vertical-align: top;
	width: 100%;
	padding: 5px;
	font-size: 14px;
}
#products article div{
	background: #f6f6f6;
	border-radius: 3px;
	box-shadow: 0 1px 0 #d9d9d9;
	padding: 20px;
}
#products img{
	height: 35px;
	image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
}
#products p{
	margin: 20px;
	font-weight: 300;
}

#services{
	background: #e9f3f8;
	font-size: 0;
}
#services .section-title{
	font-weight: 700;
}
#services article{
	display: inline-block;
	vertical-align: top;
	width: 50%;
	padding: 10px;
	font-size: 14px;
}
#services i{
	color: #1a97c1;
	font-size: 3em;
}
#services article h3{
	font-size: 18px;
	font-weight: 600;
	margin-top: 20px;
}
#clients{
	background: #354c55;
	color: #fff;
	font-size: 0;
}
#clients blockquote{
	display: inline-block;
	vertical-align: top;
	padding: 40px 50px 0;
	font-size: 15px;
	max-width: 416px;
}
#clients blockquote p{
	font-style: italic;
	color: rgba(255, 255, 255, .8);
}
#clients blockquote .by{
	text-transform: uppercase;
	font-size: 11px;
	color: rgba(255, 255, 255, .5);
	margin: 15px 0;
}
.clients-list{
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-top: 40px;
}
.clients-list img{
	margin: 0 20px;
	display: inline-block;
	vertical-align: middle;
	max-width: 120px;
	image-rendering: -moz-crisp-edges;         /* Firefox */
	image-rendering:   -o-crisp-edges;         /* Opera */
	image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
}

.txt-in-circle{
	width: 190px;
	height: 190px;
	margin: 0 auto 10px;
	border-radius: 100%;
	border: 3px solid #0991cd;
	text-align: center;
	font-weight: 300;
	font-size: 20px;
	padding-top: 42px;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}
.txt-in-circle > *{
	display: block;
}
.txt-in-circle span{
	font-size: 53px;
	line-height: 40px;
}
.txt-in-circle span small{
	font-size: .5em;
}
.txt-in-circle strong{
	font-size: 18px;
	color: #1f93be;
}
#aboutus p{
	margin: 20px 0;
}
#contactus > div,
footer > div{
	border-top: 1px solid #e5e5e5;
}
#contactus .col{
	padding-top: 20px;
}
#contact-info{
	font-weight: 300;
	font-size: 17px;
}
#contact-info p + p{
	margin-top: 20px;
}
#contactus form{
	max-width: 400px;
	position: relative;
}

footer > div{
	font-size: 11px;
	padding: 20px;
}
footer #sitemap,
footer svg{
	display: none;
}
footer #social{
		clear: both;
		padding: 10px 0;
	}
footer #social a{
	font-size: 30px;
	display: inline-block;
	-webkit-transition: .1s;
	-moz-transition: .1s;
	-ms-transition: .1s;
	-o-transition: .1s;
	transition: .1s;
}
.icon-facebook{
	color: #395690;
}
.icon-twitter{
	color: #0991cd;
}
.icon-linkedin{
	color: #387490;
}
.icon-youtube{
	color: #c22127;
}
footer #social a:hover{
	text-decoration: none;
	-webkit-transform: scale(0.95);
	-moz-transform: scale(0.95);
	-ms-transform: scale(0.95);
	-o-transform: scale(0.95);
	transform: scale(0.95);
}
#copy{
	color: #999;
	font-weight: 600;
}
#rd-wrap{
	background: #354c55;
}
#request-demo{
	position: relative;
	padding: 40px 0 30px;
	text-align: center;
}
#request-demo{
	max-width: 300px;
    margin: 0 auto;
}
#request-demo input,
#request-demo .slct-styled{
	display: block;
    margin-bottom: 10px;
}
.mdl-cancel{
	text-transform: uppercase;
	font-weight: 700;
	font-size: 11px;
	margin-top: 20px;
	color: #fff;
	display: inline-block;
	cursor: pointer;
}

.prod #main-intro > div{
	padding-top: 0;
	padding-bottom: 0;
}
#prod-highlights article + article{
	margin-top: 50px;
}
#prod-highlights article h2{
	font-size:  36px;
	margin:  20px 0;
	-webkit-font-smoothing: antialiased;
}
#prod-highlights article p{
	font-size: 14px;
	margin: 20px 0px;
}
#prod-highlights img{
	width: 100%;
}
#prod-highlights img.hqdefault{
	top: -53px;
}
#features{
	background: #354c55;
}

#features{
	color: #fff;
}
#features .col{
	padding: 30px 0 30px 0;
}
#features i{
	color: #d5ec62;
	font-size: 30px;
}
#features i + i{
	margin-left: 10px;
}
#features h3{
	font-weight: 600;
	font-size: 17px;
	margin: 5px 0;
}
#features p{
	font-size: 13px;
	color: rgba(255, 255, 255, .8);
	font-weight: 300;
}

#contactus .error-note{
	color: #d74100;
}
#contactus .thank-you-note{
	font-weight: 700;
}

/* video */
.ratio-16-9{
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	display: block;
}
.ratio-16-9 > *{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.video-container{
	width: 625px;
	height: 378px;
	padding: 30px;
}
.video-youtube{
	background: #000;
}
.video-youtube > a{
	display: block;
	position: relative;
}
.video-youtube > a:before{
	content: "\e913";
	font-family: "icomoon";
	font-size: 56px;
	position: absolute;
	top: 50%;
	left: 50%;
	color: #ff0000;
	background: rgba(0,0,0,.3);
	padding: 10px;
	border-radius: 3px;
	z-index: 1;
	opacity: .8;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.video-youtube > a:hover:before{
	opacity: 1;
}

#main-intro .right-block.has-video{
	bottom: auto;
	top: 40px;
	width: 50%;
}
#main-intro .right-block{
	display: block;
	text-align: right;
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: center;
	width: 67%;
}
@media screen and (min-width: 480px){
	.txt-in-circle{
		display: inline-block;
		margin: 0 2px;
	}
	#products-filters fieldset{
		width: auto;
	    margin: 0 10px;
	}
	#products article{
		width: 50%;
	}
}

@media screen and (max-width: 767px){
	input,
	textarea,
	.slct-styled select{
		font-size:  16px;
	}
	#contact-info.right-inline{
		text-align: left;
	}
	.show-hide-demo{
		display: none;
	}
	#prod-highlights .right-inline{
		text-align:  left;
	}
	.demo-mdl .mdl-wrap{
		width: 100%;
		height: 100%!important;
		max-height: none;
	}
}

@media screen and (min-width: 768px){
	body:after{
		content: ">=768";
		display: none;
	}
	body:not('.has-overlay-header') .wrapper{
		padding-top: 70px;
	}
	header{
		height: 70px;
	}
	header.overlay-content{
		height: auto;
	}
	header li.show-hide-demo{
	    width: 0;
	    overflow: hidden;
	    white-space: nowrap;
	    -webkit-transition: width 0.4s ease-out;
	    -moz-transition: width 0.4s ease-out;
	    -ms-transition: width 0.4s ease-out;
	    -o-transition: width 0.4s ease-out;
	    transition: width 0.4s ease-out;
	}
	header.animate-menu li.show-hide-demo{
		width: 180px;
	}
	header h1{
		float: left;
		width: 135px;
		height: 70px;
	}
	header.overlay-content h1{
		width: 175px;
		height: 100px;
	}

	header nav{
		text-align: right;
		font-size: 13px;
		line-height: 70px;
	}
	header.overlay-content nav{
		line-height: 100px;
		font-weight: 300;
		font-size: 15px;
	}

	header nav li{
		display: inline-block;
		vertical-align: top;
	}
	header nav li + li{
		padding-left: 30px;
	}
	header a{
		color: #333;
	}
	header.overlay-content a:not(.btn){
		color: #fff;
		line-height: 35px;
	}
	header a.selected{
		color: #1f93be;
	}
	section > div{
		padding: 40px 20px;
	}
	#main-intro.hp{
		padding-top: 110px;
		height: 520px;
	}
	#main-intro{
		padding-top: 100px
	}
	#main-intro h1{
		font-size: 35px;
	}
	#main-intro h2{
		font-size: 18px;
		margin: 30px 0 50px;
	}
	.prod #main-intro > div{
		height: 100%;
		overflow: hidden;
    	position: relative;
		display: flex;
		align-items: center;
	}
	#main-intro .left-block{
		float: left;
		width: 50%;
		max-width: 400px;
		padding: 0 0 20px 55px;
	}
	#products article{
		width: 33.33%;
		padding: 10px;
	}
	#products p{
		height: 57px;
		overflow: hidden;
	}
	#services article{
		width: 33.33%;
		padding: 10px;
	}
	.txt-in-circle{
		margin: 0 10px;
	}
	.col{
		float: left;
	}
	.reverse-float .col{
		float: right ;
	}
	.col-2,
	.col-3{
		width: 50%;
	}
	#products-filters fieldset{
		font-size: 13px;
	    margin: 0 20px;
	}
	#services i{
		font-size: 5em;
	}
	#clients blockquote{
		width: 33.33%;
		padding: 70px 50px 30px;
	}
	#contactus .col{
		padding: 40px 50px 0;
	}
	footer > div{
		clear: both;
		padding: 40px 20px 20px;
		text-align: justify;
	}
	footer > div:after{
		content: '';
        display: inline-block;
        width: 100%;
        height: 0;
        font-size:0;
        line-height:0;
	}
	footer #sitemap,
	footer svg{
		display: block;
	}
	footer #sitemap,
	footer #nl{
		display: inline-block;
		vertical-align: bottom;
	}
	footer dl{
		display: inline-block;
		vertical-align: top;
		color: #000;
		margin-right: 50px;
	}
	footer dt{
		font-weight: 700;
		text-transform: capitalize;
	}
	footer dd{
		margin-top: 8px;
	}
	footer a{
		color: #666;
	}
	footer svg{
		opacity: .2;
		width: 138px;
		height: 46px;
		float: right;
	}
	#prod-highlights{
		padding-top: 30px;
	}
	#prod-highlights article{
		margin: 0 -20px;
	}
	#prod-highlights article .col{
		padding: 0 20px;
	}
	#features .col{
		padding: 30px 120px 30px 0;
	}
}

@media screen and (min-width: 1024px){
	.col-3{
		width: 33.33%;
	}
	#main-intro.hp{
	    height: 606px;
	}
	#main-intro h1{
		font-size: 36px;
	}
	#main-intro.hp h1{
		font-size: 44px;
	}
	#aboutus p{
		max-width: 800px;
		margin: 30px auto;
	}
	.txt-in-circle{
		margin: 0 50px;
	}
	#services article{
		width: 20%;
		padding: 40px 40px 0;
    	max-width: 250px;
	}
	#main-intro .left-block{
		width: 40%;
		padding: 30px 0 50px 55px;
	}
	#prod-highlights article{
		margin: 0 -40px;
	}
	#prod-highlights article .col{
		padding: 0 40px;
	}

}

@media screen and (min-width: 1250px){
	.center-block{
		max-width: 1250px;
		margin: 0 auto;
	}
	#products > div{
		padding: 40px 100px;
	}
	#products article{
		width: 25%;
		padding: 15px;
	}
}
@media screen and (max-width: 990px){
	#main-intro .right-block{
		display: none;
	}
	#main-intro .left-block{
		width: 100%;
		max-width: 100%;
	}
}

.success-img{
	width: 560px;
	height: 315px;
	background-color: #000
}