/*
Theme Name: Redux Tech
Description: Custom Styles.
--------------- basic styles start ---------
*/
@charset "utf-8";
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,700');
.Oswald {
	font-family: 'Oswald', sans-serif;
	/*
		light 300
		regular 400
		bold 700
	*/
}
@import url('https://fonts.googleapis.com/css?family=Droid+Sans:400,700');
.DroidSans {
	font-family: 'Droid Sans', sans-serif;
	/*
		regular 400
		bold 700
	*/
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/bebasneue.woff2') format('woff2'),
         url('../fonts/bebasneue.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
	font-family: 'Bebas Neue';
	src: url('../fonts/BebasNeue.eot');
	src: url('../fonts/BebasNeue.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/BebasNeue.woff2') format('woff2'),
		 url('../fonts/BebasNeue.woff') format('woff'),
		 url('../fonts/BebasNeue.ttf') format('truetype'),
		 url('../fonts/BebasNeue.svg#BebasNeue') format('svg');
	font-weight: normal;
	font-style: normal;
}
* {
	padding:0px;
	margin:0px;
	box-sizing:border-box;
}
ul, li, ol {
	list-style-type:none;
}
.clr {
	clear:both;
	display:block;
	width:100%;
	height:0px;
}
p {
	color: #333;
	margin-bottom:20px;
	margin-top: 5px;
}
p:empty {
	width:0px;
	height:0px;
	display:none;
}
select {
    outline:0px none;
    background:none!important;
    -webkit-appearance: none;
    -moz-appearance: none;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
   -moz-appearance:none;
   -webkit-appearance:none;
   cursor:pointer;
}
button {
    background: none;
    border: none;
    outline: none;
}
a {
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.5s ease-in-out 0.5s;
    -o-transition: all 0.5s ease-in-out 0.5s;
    transition: all 0.5s ease-in-out 0.5s;
}
a:hover {
    text-decoration: underline;
}
a:focus, a:active {
    outline: none;
}
a, a img {
	border:none;
}
img {
	max-width:100%;
}
.tac {
	text-align:center;
}
.tal {
	text-align:left;
}
.tar {
	text-align:right;
}
.fleft, .alignleft {
	float:left;
}
.fright, .alignright {
	float:right;
}
.displaycenter, .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.displayblock {
	display:block;
	clear:both;
}
.displayinline {
	display:inline-block;
	vertical-align:top;
}
.displaynone, .hide {
	display:none;
}
.vmid {
	vertical-align:middle !important;
}
.v_btm {
	vertical-align:bottom !important;
}
.video_container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}
.video_container iframe, .video_container object, .video_container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
[class^="fa-"]:before, [class*=" fa-"]:before {
	margin-right:10px;
}
.blocks {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	position:relative;
	width:100%;
}
.blocks.vtp {
	-ms-align-items: flex-start;
	align-items: flex-start;
}
.block, .block1, .block2, .block3, .block4 {
	position:relative;
	width:100%;
	padding:3px;
}
.block {
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
}
.block2 {
	-webkit-flex: 2;
	-moz-flex: 2;
	-ms-flex: 2;
	-o-flex: 2;
	flex: 2;
}
.block3 {
	-webkit-flex: 3;
	-moz-flex: 3;
	-ms-flex: 3;
	-o-flex: 3;
	flex: 3;
}
.block4 {
	-webkit-flex: 4;
	-moz-flex: 4;
	-ms-flex: 4;
	-o-flex: 4;
	flex: 4;
}
.order1 {
	-webkit-order: 1;
	-moz-order: 1;
	-ms-order: 1;
	-o-order: 1;
	order: 1;
}
.order2 {
	-webkit-order: 2;
	-moz-order: 2;
	-ms-order: 2;
	-o-order: 2;
	order: 2;
}
.order3
{
	-webkit-order: 3;
	-moz-order: 3;
	-ms-order: 3;
	-o-order: 3;
	order: 3;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Droid Sans', sans-serif;
	font-weight:400;
}
h1 {
	font-size:32px;
}
h2 {
	font-size:28px;
}
h3 {
	font-size:25px;
}
h4 {
	font-size:21px;
}
h5 {
	font-size:17px;
}
h6 {
	font-size:14px;
}
/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #686868;
	font-family: 'Droid Sans', sans-serif;
}
:-moz-placeholder {
	color: #686868;
	font-family: 'Droid Sans', sans-serif;
}
::-moz-placeholder {
	color: #686868;
	font-family: 'Droid Sans', sans-serif;
	opacity: 1;
}
:-ms-input-placeholder {
	color: #686868;
	font-family: 'Droid Sans', sans-serif;
}
/*--------------- basic styles end ---------*/
body {
	background:#fff;
	font-family: 'Droid Sans', sans-serif;
	font-weight:400;
	font-size:16px;
	color: #6A6A6A;
}
.mysitewidth {
	max-width:1200px;
	display:block;
	margin:0px auto;
	position:relative;
	clear:both;
	padding:0px 10px;
	box-sizing:border-box;
	width:100%;
}
.mysitewidth:after, .mysitewidth:before, .displayblock:after, .displayblock:before {
	content:'';
	display:block;
	clear:both;
	position:relative;
	width:100%;
}
.w100p, .site, .site-inner, .site-header, .site-header-main, .site-content, .site-footer, .site-info, .topHeaderSection, .s9Slider {
	width:100%;
}
input {
	line-height: normal;
}
button, button[disabled]:hover, button[disabled]:focus, input[type="button"], input[type="button"][disabled]:hover, input[type="button"][disabled]:focus, input[type="reset"], input[type="reset"][disabled]:hover, input[type="reset"][disabled]:focus, input[type="submit"], input[type="submit"][disabled]:hover, input[type="submit"][disabled]:focus {
	background: #1a1a1a;
	border: 0;
	border-radius: 2px;
	color: #fff;
	font-family: 'Droid Sans', sans-serif;
	font-weight: 700;
	letter-spacing: 0.046875em;
	line-height: 1;
	padding: 0.84375em 0.875em 0.78125em;
	text-transform: uppercase;
}
button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus {
	background: #007acc;
}
button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus {
	outline: thin dotted;
	outline-offset: -4px;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="tel"], input[type="number"], textarea {
	background: #f7f7f7;
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
	border: 1px solid #d1d1d1;
	border-radius: 2px;
	color: #686868;
	padding: 0.625em 0.4375em;
	width: 100%;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="tel"]:focus, input[type="number"]:focus, textarea:focus {
	background-color: #fff;
	border-color: #007acc;
	color: #1a1a1a;
	outline: 0;
}
.widget {
	padding: 15px 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.entry-title, .page-title {
	font-family: 'Droid Sans', sans-serif;
	font-size:18px;
	font-weight:400;
	color: rgb(51, 51, 51);
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
	margin-bottom: 1em;
}
.entry-title a {
	color: #1a1a1a;
}
.entry-title a:hover, .entry-title a:focus {
	color: #007acc;
}
.home .custom-header {
	padding-bottom: 50px;
}
#sliderArea, .site-footer {
	background-image: url(../images/sliderBG.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	background-color: #00A9E0;
	padding: 30px 0;	
}
.site-footer {
	padding: 0;
}
.site-footer .widget-area {
	color: #000;
}
#homeSlider img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 540px;
}
#homeSlider h2 {
	color: #ffffff;
	font-family: 'Oswald', sans-serif;
	font-size: 30px;
	line-height: normal;
	margin-bottom: 10px;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
#homeSlider p {
	font-size: 16px;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
	color: #ffffff;
	font-family: 'Droid Sans', sans-serif;
}
h2.widget-title {
	font-family: 'Droid Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #000;
}
.site-footer .widget-column a {
	color: #fff;
}
.site-info {
	padding: 10px 0;
	margin: 0;
	border-top: 1px solid #000;
	color: #000;
}
#fot-menu {
	display: block;
	text-align: right;
}
#fot-menu li {
	display: inline-block;
}
#fot-menu li a {
	color: #fff;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	background-image: url(../images/menu-dark_li.png);
	background-position: left center;
	background-repeat: no-repeat;
}
#fot-menu li.current_page_item>a, #fot-menu li a:hover{
	color: #fefe00;
	text-decoration: none;
}
#homeSlider.owl-theme .owl-controls .owl-page span {
	background-color: #fff;
}
#homeBlocks {
	display: block;
	clear: both;
}
#homeBlocks>div {
	padding: 30px 0;
}
#homeBlocks>div:nth-child(even) {
	background-color: #f2f2f2;
}
#homeBlocks>div#home2, .site-content {
	background-image: url(../images/mainpage_bg.png);
	background-repeat: repeat-x;
	background-position: top left;
	background-color: #fff;
}
div#home2 .block {
	padding: 5px 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
h3.rp_tittle, h3.rp_tittle a {
	font-family: Droid Sans,sans-serif;
	font-size: 22px;
	font-weight: 400;
	display: block;
	clear: both;
	margin-bottom: 10px;
	padding: 0;
	color: rgb(106, 106, 106);
	text-align: center;
}
.rp_content {
	color: rgb(51, 51, 51);
	font-family: Droid Sans,sans-serif;
	font-size: 16px;
}
#home1 {
	background-image: url(../images/middle_bg.png);
	background-repeat: repeat;
}
#home1 h2.pdftitles {
	color:#10b7ee;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 26px;
	font-weight:normal;
	text-transform: uppercase;
	line-height: normal;
}
.pdfITEM {
	text-align: center;
	width: 19%;
	display: inline-block;
	vertical-align: top;
}
#pdfSlider img {
	width: 100%;
	display: block;
	clear: both;
	max-width: 117px;
	margin: 0 auto;
}
#pdfSlider h2 {
	padding: 10px 0;
	font-family: Droid Sans,sans-serif;
	font-size: 15px;
	display: block;
	clear: both;
	color: rgb(106, 106, 106);
	margin: 0;
}
#pdfSlider a, #pdfSlider a:hover, .link-more a, .link-more a:hover, .bulbImg li a, .entry-content a, .socialLinks li a:hover {
	color: rgb(16, 183, 238);
	text-decoration: none;
}
.bulbImg li{
	background-image: url(../images/bullet.png);
	background-repeat: no-repeat;
	background-position: left 3px;
	padding: 0 15px 10px 15px;
	width: 100%;
	display: block;
	clear: both;
}
body:not(.home) #primary, body:not(.home) #secondary {
	padding: 5px 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body:not(.home) #primary {
	float: right;
	width: 80%;
}
body:not(.home) #secondary {
	float: left;
	width: 20%;
}
.sidepdfITEM {
	display: block;
	clear: both;
	margin-bottom: 15px;
}
.sidepdfITEM h2, .sidepdfITEM h2 a {
	font-family: Droid Sans,sans-serif;
	font-size: 13px;
	color: rgb(16, 183, 238);
	outline-color: rgb(16, 183, 238);
	margin: 0;
	padding: 0;
	display: block;
	clear: both;
	line-height: normal;
}
.entry-content h2 {
	font-size: 26px;
    color: #0396c7;
    font-family: 'Bebas Neue', sans-serif;
}
.socialLinks li {
	display: inline-block;
}
.phoneNUB {
	font-size: 22px;
	color: rgb(16, 183, 238);
	padding-bottom: 5px;
}
.menu-scroll-down {
	display: none !important;
}
.casestudyimg {
    margin-left: 10px;
    float: right;
}
.new ul{ 
	float:left !important;
	}
.cols-2 .column-1 {
    float: left;
    width: 48%;
}
div.blog h2{
	font-size: 18px;
	}
.cols-2 .column-2 {
    float: right;
    width: 48%;
}
.cols-2 .column-1 {
    float: left;
    width: 48%;
}
.menu-main-menu-container {
    float: right;
}
#home1 .rightdata {
    width: 82%;
    display: inline-block;
}
#home1 .new {
    width: 18%;
    float: left;
}
#home1 h2.pdftitles {
    text-align: left;
    line-height: 1.5em;
    font-weight: normal;
    float: left;
    padding-top: 25%;	
}
.treatment p.treat {
    font-size: 22px;
    color: #000;
    margin-bottom: 0;
}
.site-footer .widget-column.footer-widget-1 {
    width: 60%;
}
.water_treatment {
    text-align: justify;
    margin: 0px 10px 5px 0px;
    float: left;
}
.site-footer .widget-column.footer-widget-2 {
    width: 40%;
}
.conright {
    width: 55%;
    float: left;
}
.conleft {
    width: 45%;
    float: left;
}
#wpcf7-f25-p63-o1 input {
    width: 70%;
}
.observationsofdeposite input[type='checkbox'] {
    width: 4% !important;
}

/*.observationsofdeposite .wpcf7-checkbox {
    column-count: 2;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    width: 50%;
} 
.observationsofdeposite .wpcf7-list-item { display: block; }
.observationsofdeposite > span:nth-child(1) > span:nth-child(6) { 
 display: inline-block !important;
    margin-bottom: 20px;
    width: 100%;
 }*/

.checkboxaa .wpcf7-list-item, .discharge .wpcf7-list-item { display: block; }
#wpcf7-f25-p63-o1 .checkboxaa input, #wpcf7-f25-p63-o1 .conright .discharge input {
    width: auto;
}
#wpcf7-f25-p63-o1 .wpcf7-submit {
    width: 18%;
    background: #2a358f;
}
#wpcf7-f25-p63-o1  textarea {
    width: 65%;
    height: 200px;
}
#wpcf7-f25-p63-o1 .wpcf7-captchar {
    width: 20%;
}

#top-menu .current_page_item {
border-bottom: 3px solid #484948;
}