/*=====================================================*/
/* Variables */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
/*=====================================================*/
/* Global Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
html,
body {
  height: 100%;
}
html,
body {
  margin: 0;
  padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
a:hover,
a:active {
  outline: 0;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}
img:not([alt]),
img[alt=""] {
  border: 1px solid red;
}
#map_canvas img {
  max-width: none;
}
button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
}
button,
input {
  *overflow: visible;
  line-height: normal;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
/*=====================================================*/
/* Global Definitions */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  height: 100%;
}
body {
  font-size: 62.5%;
  background: #ffffff;
  font-family: "AvantGarde-Medium";
  color: #747474;
  font-size: 14px;
  padding-top: 44px;
}
.content {
  width: 976px;
  margin: 0 auto;
  position: relative;
  *zoom: 1;
}
.content:before,
.content:after {
  display: table;
  content: "";
}
.content:after {
  clear: both;
}
.container {
  max-width: 976px;
  margin: 0px auto;
  *zoom: 1;
}
.container:before,
.container:after {
  display: table;
  content: "";
}
.container:after {
  clear: both;
}
a {
  text-decoration: none;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  color: #244681;
}
a:hover {
  text-decoration: underline;
}
p {
  color: #747474;
  font-size: 13px;
  line-height: 22px;
}
p.mt {
  margin-top: 47px;
}
h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  h2 {
    margin-top: 20px;
  }
}
.screenoff {
  display: none;
}
.keyboard-nav {
  position: absolute;
  top: 0px;
  left: 0px;
}
.keyboard-nav a {
  position: absolute;
  left: 0;
  top: -20em;
  display: block;
  padding: 5px 15px;
  background: #fff;
  color: #000;
  font: bold 2em "AvantGarde-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.keyboard-nav a:focus {
  top: 0;
}
@media only screen and (max-width: 767px) {
  .sm {
    display: none;
  }
}
.left {
  float: left;
}
.right {
  float: right;
}
input {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
/* 12 = 100%
	6 = 50%
	4 = 33% etc

	<div class="col-6">
		<div class="col-4">
		</div>
	</div
assuming full width = 1000px, above example will give a half width div (1000 / 2 = 500px) with a 33% div (500 / 3 = 166px) inside that 
*/
.row {
  padding-left: 20px;
  padding-right: 20px;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.333333%;
}
.col-6 {
  width: 50%;
}
.col-8 {
  width: 66.666666666%;
}
.col-12 {
  width: 100%;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  *zoom: 1;
  float: left;
}
.col-1:before,
.col-2:before,
.col-3:before,
.col-4:before,
.col-5:before,
.col-6:before,
.col-7:before,
.col-8:before,
.col-9:before,
.col-10:before,
.col-11:before,
.col-12:before,
.col-1:after,
.col-2:after,
.col-3:after,
.col-4:after,
.col-5:after,
.col-6:after,
.col-7:after,
.col-8:after,
.col-9:after,
.col-10:after,
.col-11:after,
.col-12:after {
  display: table;
  content: "";
}
.col-1:after,
.col-2:after,
.col-3:after,
.col-4:after,
.col-5:after,
.col-6:after,
.col-7:after,
.col-8:after,
.col-9:after,
.col-10:after,
.col-11:after,
.col-12:after {
  clear: both;
}
.xs {
  display: none;
}
@media only screen and (max-width: 767px) {
  .xs {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .col-4 {
    width: 50%;
  }
  .col-xs-6 {
    width: 50%;
  }
  .col-xs-12 {
    width: 100%;
  }
  .col-8 {
    width: 100%;
  }
  .col-xs-8 {
    width: 75%;
  }
  .xs-left {
    float: left !important;
  }
}
@media only screen and (min-width: 768px) {
  .col-sm-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-sm-12 {
    width: 75%;
  }
}
@media only screen and (min-width: 768px) {
  .circle {
    position: absolute;
    z-index: 1;
    top: 282px;
    left: 0px;
    width: 110px;
    height: 260px;
    background: url(/img/circle.png) no-repeat;
    display: block;
  }
  .svg .circle {
    background-size: 100% 100%;
    background-image: url(/img/circle.svg);
  }
}
.details {
  margin-top: 57px;
}
#main .details {
  margin-top: 40px;
}
.details p {
  color: #244681;
}
.details.sm.fixed {
  position: fixed;
}
.services {
  *zoom: 1;
}
@media only screen and (min-width: 768px) {
  
}
@media only screen and (min-width: 1200px) {
  .services {
    margin-left: -1.55em;
  }
}
.services:before,
.services:after {
  display: table;
  content: "";
}
.services:after {
  clear: both;
}
.services .service {
  text-align: center;
  margin-top: 45px;
  height: 117px;
}
.services .service h3 {
  font-weight: bold;
  color: #747474;
  font-size: 13px;
  line-height: 1.2em;
  margin-bottom: 27px;
}
.services .service .icon {
  background-size: 100% 100%;
  width: 55px;
  height: 55px;
  display: block;
  margin: 0px auto;
}
.services .service .icon.drain {
  background-image: url(/img/drain.png);
}
.svg .services .service .icon.drain {
  background-image: url(/img/drain.svg);
}
.services .service .icon.camera {
  background-image: url(/img/camera.png);
}
.svg .services .service .icon.camera {
  background-image: url(/img/camera.svg);
}
.services .service .icon.gas {
  background-image: url(/img/gas.png);
}
.svg .services .service .icon.gas {
  background-image: url(/img/gas.svg);
}
.services .service .icon.renovation {
  background-image: url(/img/renovation.png);
}
.svg .services .service .icon.renovation {
  background-image: url(/img/renovation.svg);
}
.services .service .icon.tap {
  background-image: url(/img/tap.png);
}
.svg .services .service .icon.tap {
  background-image: url(/img/tap.svg);
}
.services .service .icon.new {
  background-image: url(/img/new.png);
}
.svg .services .service .icon.new {
  background-image: url(/img/new.svg);
}
.services .service .icon.maintenance {
  background-image: url(/img/maintenance.png);
}
.svg .services .service .icon.maintenance {
  background-image: url(/img/maintenance.svg);
}
#form {
  margin-top: 50px;
  padding-top: 50px;
  *zoom: 1;
  background: #244681;
  z-index: 100;
}
#form:before,
#form:after {
  display: table;
  content: "";
}
#form:after {
  clear: both;
}
#form .row {
  margin-bottom: 25px;
  padding: 0px;
}
#form .row.xs-padding {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  #form .row {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 767px) {
  #form p.intro {
    margin-bottom: 30px;
  }
}
#form div {
  position: relative;
  *zoom: 1;
}
#form div:before,
#form div:after {
  display: table;
  content: "";
}
#form div:after {
  clear: both;
}
#form div.col-6 {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #form div.col-6 {
    width: 100%;
  }
  #form div.col-6.mr {
    width: 100%;
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px) {
  #form div.col-6.mr {
    margin-right: 3%;
    width: 47%;
  }
}
#form p {
  font-size: 13px;
  line-height: 22px;
  color: #ffffff;
}
#form input,
#form textarea,
#form button {
  border: 1px solid #244681;
  border-radius: 10px;
  padding: 8px 15px;
  color: #333333;
  width: 100%;
  font-family: "AvantGarde-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  z-index: 11;
  background: #ffffff 80% center no-repeat;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
@media only screen and (max-width: 767px) {
  #form input,
  #form textarea,
  #form button {
    margin-bottom: 25px;
  }
}
#form input:focus,
#form textarea:focus,
#form button:focus {
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
  background: #eeeeee;
}
#form input.error,
#form textarea.error,
#form button.error {
  border: 1px solid #f00;
  background: #ffffff url(../img/template/failed.png) no-repeat 98% center;
  -webkit-background-size: 12px;
  -moz-background-size: 12px;
  -o-background-size: 12px;
  background-size: 12px;
}
.svg #form input.error,
.svg #form textarea.error,
.svg #form button.error {
  border: 1px solid #f00;
  background-image: url(../img/template/failed.svg);
}
#form input.valid,
#form textarea.valid,
#form button.valid {
  border: 1px solid #0f0;
  background: #ffffff url(../img/template/passed.png) no-repeat 98% center;
  -webkit-background-size: 12px;
  -moz-background-size: 12px;
  -o-background-size: 12px;
  background-size: 12px;
}
.svg #form input.valid,
.svg #form textarea.valid,
.svg #form button.valid {
  border: 1px solid #0f0;
  background-image: url(../img/template/passed.svg);
}
#form textarea {
  height: 100px;
}
#form button {
  width: 80px;
  color: #244681;
  margin-top: 25px;
  text-align: left;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
@media only screen and (max-width: 767px) {
  #form button {
    margin-top: 0px;
  }
}
#form button.loading {
  width: 100px;
  background: #ffffff;
}
#form button.loading:focus,
#form button.loading:hover {
  background: #ffffff;
}
#form button.loading:before {
  background: #ffffff url(/img/template/ajax-loader.gif) no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  display: block;
  content: "";
  right: 10px;
}
#form .form-error {
  position: absolute;
  bottom: -18px;
  left: 10px;
  font-size: 12px;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  #form .form-error {
    bottom: 9px;
  }
}
#form p.success {
  padding: 10px;
  background: #d7ffd3 url(../img/template/passed.png) no-repeat 98% center;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #0f0;
}
#form p.error {
  padding: 10px;
  background: #ffdada url(../img/template/failed.png) no-repeat 98% center;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #f00;
  margin-bottom: 20px;
}
#form p.error ul li {
  margin-bottom: 10px;
}
/*=====================================================*/
/* Header Styles */
header {
  position: relative;
  /*.phone {
		display: none;
		@media @xs {
			display: block;
			position: absolute;
			width:16px;
			height:16px;
			right:40px;
			top:9px;

			background:url(/img/phone.png) no-repeat;
			background-size:16px 16px;

		}
	}*/

}
header .logo {
  width: 160px;
  height: 45px;
  display: block;
  background: url(/img/logo.png) no-repeat;
  background-size: 100% 100%;
}
.svg header .logo {
  background-image: url(/img/logo.svg);
}
header .xs-phone a:hover,
header .xs-phone a:focus {
  text-decoration: none;
}
/*=====================================================*/
/* Footer Styles */
footer {
  background: #244681;
  padding: 50px 0px;
  color: #ffffff;
  font-size: 12px;
  line-height: 22px;
}
/*=====================================================*/
/* Content Styles */
