@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700,300);
/* LESS Document */
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 {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* COLORS */
/* FONTS */
.font-Light {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.font-Normal {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.font-Bold {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
/* END FONTS */
/* VARIABLES */
/* END VARIABLES */
/* MIXINS */
.inputStyle {
  display: block;
  width: 90%;
  box-sizing: border-box;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
  background: #e5e6e7;
  border: 0;
  box-shadow: inset 0 1px rgba(50, 51, 52, 0.2);
  padding: .5em 1em;
  font-size: 1em;
  border-radius: 5px;
}
.inputStyle:focus {
  background-color: #e0e1e2;
  outline: none;
}
/* END MIXINS */
html,
body {
  height: 100%;
}
::-webkit-input-placeholder {
  color: #323334;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #323334;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #323334;
}
:-ms-input-placeholder {
  color: #323334;
}
body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #545a5c;
}
a {
  text-decoration: none;
  color: inherit;
}
h1 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 2em;
  margin-bottom: 1em;
  color: #0099d5;
}
h2 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 1em 0;
}
p {
  line-height: 150%;
  margin-bottom: .5em;
}
p.no-margin {
  margin: 0;
}
p a {
  color: #0099d5;
}
p a:hover {
  text-decoration: underline;
}
strong {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
div.container {
  position: relative;
  width: 1280px;
  max-width: 90%;
  margin: 0 auto;
}
div.right {
  float: right;
}
div.clear {
  clear: both;
}
.gray {
  background: #e5e6e7;
}
/* PARTIALS */
header {
  position: relative;
  z-index: 40;
  padding: 0 0 2em 0;
  box-shadow: 0 1px 3px rgba(50, 51, 52, 0.2);
}
header div.top {
  background: #0099d5;
  overflow: hidden;
}
header div.top ul {
  overflow: hidden;
}
header div.top ul li {
  float: left;
}
header div.top ul li a {
  display: block;
  color: white;
  padding: 1em .5em;
}
header div.top ul li a:hover,
header div.top ul li a.active {
  background: white;
  color: #0099d5;
}
header div.navigation {
  margin-top: 1em;
  position: relative;
}
header div.navigation div.logo {
  min-width: 196px;
  width: 25%;
}
header div.navigation div.logo a {
  display: block;
}
header div.navigation div.logo img {
  display: block;
}
header div.navigation div.hamburger {
  position: absolute;
  right: 0;
  bottom: 1em;
  display: none;
}
@media only screen and (max-width: 468px) {
  header div.navigation div.hamburger {
    display: block;
  }
}
header div.navigation div.hamburger span {
  font-size: 2em;
  color: #0099d5;
  cursor: pointer;
}
header div.navigation nav {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 1024px) {
  header div.navigation nav {
    position: relative;
    margin: 2em 0 0 0;
  }
}
@media only screen and (max-width: 468px) {
  header div.navigation nav {
    position: fixed;
    left: 0;
    top: -2em;
    background: #0099d5;
    display: none;
    z-index: 40;
  }
}
header div.navigation nav div.close {
  display: none;
}
@media only screen and (max-width: 468px) {
  header div.navigation nav div.close {
    display: block;
    text-align: right;
    padding-right: 4em;
  }
  header div.navigation nav div.close span {
    color: white;
    font-size: 2em;
    cursor: pointer;
  }
}
header div.navigation nav ul:after {
  content: "";
  clear: both;
  display: block;
}
header div.navigation nav ul li {
  float: left;
  margin-right: 2em;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  header div.navigation nav ul li {
    width: 33.33333333%;
    margin-right: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 468px) {
  header div.navigation nav ul li {
    float: none;
    margin: 0 0 0 0;
    width: 100%;
    text-align: left;
    color: white;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-weight: 700;
  }
}
header div.navigation nav ul li:last-child {
  margin-right: 0;
}
header div.navigation nav ul li:hover > ul {
  display: block;
}
header div.navigation nav ul li a {
  display: block;
}
@media only screen and (max-width: 768px) {
  header div.navigation nav ul li a {
    padding: .5em 0;
  }
}
@media only screen and (max-width: 468px) {
  header div.navigation nav ul li a {
    padding: 1em 1em;
  }
}
header div.navigation nav ul li a:hover,
header div.navigation nav ul li a.active {
  color: #0099d5;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 468px) {
  header div.navigation nav ul li a:hover,
  header div.navigation nav ul li a.active {
    background: white;
  }
}
header div.navigation nav ul li a::after {
  display: block;
  content: attr(title);
  font-weight: bold;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}
header div.navigation nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 20;
  background: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 768px) {
  header div.navigation nav ul ul {
    top: 40%;
  }
}
@media only screen and (max-width: 468px) {
  header div.navigation nav ul ul {
    display: block;
    position: relative;
    background: transparent;
    margin-left: 2em;
  }
}
header div.navigation nav ul ul li {
  float: none;
  position: relative;
  margin-top: .5em;
}
@media only screen and (max-width: 768px) {
  header div.navigation nav ul ul li {
    width: 100%;
  }
}
@media only screen and (max-width: 468px) {
  header div.navigation nav ul ul li {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-weight: 400;
    margin: 0;
  }
}
header div.navigation nav ul ul li a {
  padding: .5em;
}
@media only screen and (max-width: 468px) {
  header div.navigation nav ul ul li a {
    padding: .75em .5em;
  }
}
section.breadcrumbs ul {
  padding: 1.25em 0;
}
section.breadcrumbs ul li {
  display: inline;
}
section.breadcrumbs ul li:after {
  content: '/';
  margin-left: .25em;
}
section.breadcrumbs ul li:last-child:after {
  content: '';
}
section.breadcrumbs ul li:last-child a {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #0099d5;
}
section.slider {
  margin-bottom: 2em;
}
section.slider div.slider-wrapper img {
  display: block;
  width: 100%;
}
section.slider div.slider-wrapper div {
  position: relative;
}
section.slider div.slider-wrapper div div.text {
  position: absolute;
  bottom: 30%;
  right: 10%;
  color: white;
  width: 25%;
  min-width: 280px;
}
@media only screen and (max-width: 1024px) {
  section.slider div.slider-wrapper div div.text {
    bottom: 10%;
    width: 30%;
  }
}
@media only screen and (max-width: 768px) {
  section.slider div.slider-wrapper div div.text {
    display: none;
  }
}
section.slider div.slider-wrapper div h1 {
  font-size: 4em;
  margin-bottom: .25em;
  text-shadow: 0 1px black;
  color: inherit;
}
@media only screen and (max-width: 768px) {
  section.slider div.slider-wrapper div h1 {
    font-size: 2em;
  }
}
section.slider div.slider-wrapper div h1 img {
  display: inline-block;
  width: auto;
  max-height: auto;
  vertical-align: bottom;
  margin-right: .125em;
}
@media only screen and (max-width: 768px) {
  section.slider div.slider-wrapper div h1 img {
    height: 1.5em;
  }
}
section.slider div.slider-wrapper div p {
  font-size: 2em;
  width: 100%;
  margin-bottom: 1em;
  text-shadow: 0 1px black;
  line-height: 120%;
}
section.slider div.slider-wrapper div a {
  display: inline-block;
  color: white;
  background: #0099d5;
  padding: 1em 2em;
  border-radius: 5px;
  border-bottom: 2px solid #0074a2;
  text-transform: uppercase;
}
section.slider div.slider-wrapper div a:hover {
  background: #09baff;
}
section.solution-intro {
  padding: 2em 0;
}
section.solution-intro img.cover {
  max-width: 100%;
}
section.solution-intro h2 {
  font-size: 1.5em;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
section.solution-intro div.slider-wrapper {
  position: relative;
  min-height: 150px;
}
section.solution-intro div.slider-wrapper div.other-solutions {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20%;
  background: rgba(255, 255, 255, 0.8);
  padding: 2em;
  box-sizing: border-box;
  z-index: 30;
}
@media only screen and (max-width: 1024px) {
  section.solution-intro div.slider-wrapper div.other-solutions {
    position: relative;
    width: 100%;
    padding: 0;
  }
}
section.solution-intro div.slider-wrapper div.other-solutions ul {
  margin: 1em 0;
}
section.solution-intro div.slider-wrapper div.other-solutions ul li {
  margin-bottom: 1em;
}
@media only screen and (max-width: 1024px) {
  section.solution-intro div.slider-wrapper div.other-solutions ul li {
    float: left;
    width: 25%;
    text-align: center;
  }
}
@media only screen and (max-width: 468px) {
  section.solution-intro div.slider-wrapper div.other-solutions ul li {
    width: 100%;
    float: none;
    margin: 0;
  }
}
@media only screen and (max-width: 1024px) {
  section.solution-intro div.slider-wrapper div.other-solutions ul li a {
    display: inline-block;
    color: white;
    background: #0099d5;
    padding: 1em 2em;
    border-radius: 5px;
    border-bottom: 2px solid #0074a2;
  }
  section.solution-intro div.slider-wrapper div.other-solutions ul li a:hover {
    background: #09baff;
  }
}
@media only screen and (max-width: 768px) {
  section.solution-intro div.slider-wrapper div.other-solutions ul li a {
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
  }
}
@media only screen and (max-width: 468px) {
  section.solution-intro div.slider-wrapper div.other-solutions ul li a {
    background: none;
    color: #545a5c;
    border: 0;
  }
}
section.solution-intro div.slider-wrapper div.other-solutions ul li a.active,
section.solution-intro div.slider-wrapper div.other-solutions ul li a:hover {
  color: #0099d5;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  section.solution-intro div.slider-wrapper div.other-solutions ul li a.active {
    display: inline-block;
    color: white;
    background: #545a5c;
    padding: 1em 2em;
    border-radius: 5px;
    border-bottom: 2px solid #3c4041;
  }
  section.solution-intro div.slider-wrapper div.other-solutions ul li a.active:hover {
    background: #6c7477;
  }
}
@media only screen and (max-width: 768px) {
  section.solution-intro div.slider-wrapper div.other-solutions ul li a.active {
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
  }
}
@media only screen and (max-width: 468px) {
  section.solution-intro div.slider-wrapper div.other-solutions ul li a.active {
    display: inline-block;
    color: white;
    background: #0099d5;
    padding: 1em 2em;
    border-radius: 5px;
    border-bottom: 2px solid #0074a2;
  }
  section.solution-intro div.slider-wrapper div.other-solutions ul li a.active:hover {
    background: #09baff;
  }
}
@media only screen and (max-width: 1024px) {
  section.solution-intro div.slider-wrapper div.slider {
    display: none;
  }
}
section.solution-intro div.slider-wrapper div.slider .slick-dots {
  right: 22%;
  bottom: 1.5em;
}
section.solution-intro div.slider-wrapper div.no-overlay .slick-dots {
  right: 3em;
  bottom: 1.5em;
}
section.text {
  padding: 2em 0;
  overflow: hidden;
}
section.text h2 {
  font-size: 1.5em;
  margin-bottom: .75em;
}
section.text div.text {
  float: left;
  width: 65%;
  margin-right: 5%;
}
@media only screen and (max-width: 468px) {
  section.text div.text {
    width: 100%;
    float: none;
  }
}
section.text div.text h2 {
  margin: .5em 0;
}
section.text div.text p {
  margin: 0 0 2em 0;
}
section.text div.text a {
  color: #0099d5;
}
section.text ul {
  margin-left: 1.5em;
}
section.text ul li {
  line-height: 150%;
  list-style-type: disc;
  list-style-position: outside;
}
section.text ul li em {
  font-weight: 700;
}
section.text div.links a {
  color: #0099d5;
}
section.text div.brochures {
  float: right;
  width: 30%;
}
@media only screen and (max-width: 468px) {
  section.text div.brochures {
    width: 100%;
    float: none;
  }
}
section.text div.brochures img {
  display: block;
  margin-bottom: 2em;
}
section.text div.brochures ul li a {
  text-decoration: underline;
  display: block;
  margin: .5em 0 1em 0;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
section.text div.brochures ul li a:hover {
  text-decoration: none;
}
section.text div.brochures ul li a span {
  margin-right: .5em;
}
section.customer-stories-slider {
  padding: 2em 0;
}
section.customer-stories-slider .slick-dots {
  bottom: 1em;
  right: 1em;
}
section.testimonials {
  padding: 2em 0;
}
section.testimonials img {
  float: left;
  margin-right: 5%;
  width: 15%;
}
section.testimonials div.text {
  float: left;
  width: 80%;
}
section.testimonials p {
  font-style: italic;
}
section.testimonials span {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1em;
}
section.testimonials div.testimonial {
  overflow: hidden;
  margin-bottom: 3em;
}
div.coverflow {
  padding: 2em 0;
  margin-bottom: 5em;
}
div.coverflow .cover {
  width: 200px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 468px) {
  div.coverflow {
    display: none;
  }
}
section.downloads {
  padding: 2em 0;
  overflow: hidden;
}
section.downloads h2 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  section.downloads h2 {
    background: #0099d5;
    color: white;
    padding: 1em 0;
    text-align: center;
  }
}
section.downloads img {
  float: left;
  margin-right: 1em;
}
@media only screen and (max-width: 768px) {
  section.downloads img {
    display: block;
    float: none;
    width: 100%;
  }
}
section.downloads p {
  margin-bottom: .5em;
}
section.downloads div.download {
  overflow: hidden;
  margin-bottom: 3em;
  float: left;
  width: 45%;
}
@media only screen and (max-width: 468px) {
  section.downloads div.download {
    float: none;
    width: 100%;
    text-align: center;
  }
}
section.downloads div.download:nth-child(odd) {
  margin-right: 5%;
}
@media only screen and (max-width: 468px) {
  section.downloads div.download:nth-child(odd) {
    margin: 0;
  }
}
section.downloads div.download:nth-child(even) {
  margin-left: 5%;
}
@media only screen and (max-width: 468px) {
  section.downloads div.download:nth-child(even) {
    margin: 0;
  }
}
section.downloads div.download a {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  section.downloads div.download a {
    text-decoration: none;
    display: block;
    padding: .5em 0;
    text-align: center;
  }
}
@media only screen and (max-width: 468px) {
  section.downloads div.download a {
    display: inline-block;
    color: white;
    background: #0099d5;
    padding: 1em 2em;
    border-radius: 5px;
    border-bottom: 2px solid #0074a2;
    margin: 0 0 1em 0;
  }
  section.downloads div.download a:hover {
    background: #09baff;
  }
}
section.downloads div.download a:hover {
  text-decoration: none;
}
section.downloads div.download a span {
  margin-right: .5em;
}
section.solutions {
  margin-bottom: 2em;
}
section.solutions div.solutions {
  overflow: hidden;
}
section.solutions div.solutions div.solution {
  position: relative;
  width: 22%;
  float: left;
  margin: 0 4% 2em 0;
}
@media only screen and (max-width: 768px) {
  section.solutions div.solutions div.solution {
    width: 47.5%;
    margin: 0 0 2em 0;
  }
  section.solutions div.solutions div.solution:nth-child(odd) {
    margin-right: 5%;
  }
}
@media only screen and (max-width: 468px) {
  section.solutions div.solutions div.solution {
    width: 100%;
  }
  section.solutions div.solutions div.solution:nth-child(odd) {
    margin-right: auto;
  }
}
section.solutions div.solutions div.solution:nth-child(4n) {
  margin-right: 0;
}
section.solutions div.solutions div.solution a {
  display: block;
}
section.solutions div.solutions div.solution a:hover > p {
  background: #0074a2;
  padding-bottom: 5em;
  text-transform: uppercase;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
section.solutions div.solutions div.solution img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 468px) {
  section.solutions div.solutions div.solution img {
    max-height: 200px;
  }
}
section.solutions div.solutions div.solution p {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  box-sizing: border-box;
  padding: .75em 1em;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
section.about-us {
  padding: 2em 0;
  overflow: hidden;
}
section.about-us div.logos {
  float: right;
}
section.about-us div.logos img {
  display: block;
  margin: 0 auto 1em auto;
  max-width: 200px;
}
section.contact form {
  margin: 2em 0;
}
section.contact form ul {
  overflow: hidden;
}
section.contact form ul li {
  width: 25%;
  float: left;
  height: auto;
  margin-bottom: 1em;
}
@media only screen and (max-width: 468px) {
  section.contact form ul li {
    width: 100%;
    float: none;
  }
}
section.contact form ul li.full {
  width: 100%;
}
section.contact form ul li.right {
  width: 97.5%;
  text-align: right;
}
@media only screen and (max-width: 468px) {
  section.contact form ul li.right {
    width: 100%;
  }
}
section.contact form ul li label {
  display: block;
  margin-bottom: .5em;
}
section.contact form ul li input,
section.contact form ul li select,
section.contact form ul li textarea {
  min-height: 35px;
  display: block;
  width: 90%;
  box-sizing: border-box;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
  background: #e5e6e7;
  border: 0;
  box-shadow: inset 0 1px rgba(50, 51, 52, 0.2);
  padding: .5em 1em;
  font-size: 1em;
  border-radius: 5px;
}
section.contact form ul li input:focus,
section.contact form ul li select:focus,
section.contact form ul li textarea:focus {
  background-color: #e0e1e2;
  outline: none;
}
@media only screen and (max-width: 468px) {
  section.contact form ul li input,
  section.contact form ul li select,
  section.contact form ul li textarea {
    width: 100%;
  }
}
section.contact form ul li input.error {
  box-shadow: inset 0 5px #dc1616;
}
section.contact form ul li select {
  width: auto;
}
@media only screen and (max-width: 468px) {
  section.contact form ul li select {
    width: 100%;
  }
}
section.contact form ul li select.reason {
  width: 90%;
}
@media only screen and (max-width: 468px) {
  section.contact form ul li select.reason {
    width: 100%;
  }
}
section.contact form ul li textarea {
  width: 97.5%;
  min-height: 100px;
  resize: none;
}
@media only screen and (max-width: 468px) {
  section.contact form ul li textarea {
    width: 100%;
  }
}
section.contact form ul li button {
  border: none;
  cursor: pointer;
}
section.contact form ul li button[type=submit] {
  display: inline-block;
  color: white;
  background: #0099d5;
  padding: 1em 2em;
  border-radius: 5px;
  border-bottom: 2px solid #0074a2;
  text-transform: uppercase;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
  padding: .75em 2em;
}
section.contact form ul li button[type=submit]:hover {
  background: #09baff;
}
footer {
  padding: 2em 0 0 0;
  background: #545a5c;
  color: white;
  overflow: hidden;
}
footer div.container {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
footer div.sub {
  float: left;
  width: 25%;
  min-width: 160px;
  overflow: hidden;
}
/*
@media only screen and (max-width: 768px) {
  footer div.sub {
    width: 50%;
  }
}
footer div.sub:first-child {
  width: 35%;
}
@media only screen and (max-width: 768px) {
  footer div.sub:first-child {
    width: 50%;
  }
}
footer div.sub:nth-child(2) {
  width: 25%;
}
@media only screen and (max-width: 768px) {
  footer div.sub:nth-child(2) {
    width: 50%;
  }
}
*/
footer div.sub h1 {
  color: inherit;
}
footer div.sub ul {
  float: left;
}
footer div.sub ul:first-of-type {
  margin-right: 5em;
}
footer div.sub ul li {
  margin-bottom: 1em;
}
footer div.sub ul li img {
  max-width: 30px;
  vertical-align: middle;
  margin-right: .5em;
}
footer div.sub ul li a {
  color: inherit;
}
footer div.sub ul li a:hover {
  text-decoration: underline;
}
footer div.solutions ul li a img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
}
footer div.solutions ul li a:hover img {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}
footer div.downloads ul li a {
  text-decoration: underline;
  display: block;
  margin-top: .5em;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
footer div.downloads ul li a:hover {
  text-decoration: none;
}
footer div.downloads ul li a span {
  margin-right: .5em;
}
footer div.connected ul li a:hover span {
  color: white;
}
footer div.connected ul li a:hover span.linkedin {
  background: #0077b5;
}
footer div.connected ul li a:hover span.youtube {
  background: #cc181e;
}
footer div.connected ul li a span {
  display: inline-block;
  width: 1em;
  line-height: 1em;
  text-align: center;
  padding: .25em;
  border-radius: 5px;
  margin-right: .5em;
  background: white;
  color: #565b5c;
  /*.transitionAll(.1s);*/
}
footer div.certificate{
  text-align: center;
}
footer div.certificate img{
  display: block; 
  height: 150px;
  margin: 0 auto 1em auto;
}
footer div.certificate a:hover{
  text-decoration: underline;
}
footer div.bottom {
  padding: 1em 0;
  text-align: center;
  background: #323334;
}
section.locations {
  overflow: hidden;
  padding: 4em 0;
}
section.locations div.location {
  width: 25%;
  margin-bottom: 0;
  min-height: 180px;
  float: left;
}
section.locations div.location:last-child {
  float: none;
}
@media only screen and (max-width: 468px) {
  section.locations div.location {
    float: none;
    width: 100%;
  }
}
section.locations div.location h2 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  margin-bottom: .75em;
}
section.locations div.location p {
  max-width: 90%;
}
section.locations div.location ul li {
  line-height: 150%;
}
section.locations div.location a:hover {
  color: #0099d5;
  text-decoration: underline;
}
section.locations div.map-mobile {
  display: none;
}
@media only screen and (max-width: 468px) {
  section.locations div.map-mobile {
    display: block;
  }
}
section.locations div.map-container div.map {
  width: 50%;
  float: right;
}
@media only screen and (max-width: 468px) {
  section.locations div.map-container div.map {
    display: none;
  }
}
section.locations div.map-container img {
  display: block;
  margin: 0 auto;
}
section.car-info {
  min-height: 500px;
  /* UI TABS */
}
section.car-info div.car-info {
  overflow: hidden;
}
section.car-info div.car-info div.car-image {
  position: relative;
  float: left;
  width: 25%;
  margin-right: 5%;
}
@media only screen and (max-width: 468px) {
  section.car-info div.car-info div.car-image {
    float: none;
    width: 100%;
    text-align: center;
  }
}
section.car-info div.car-info div.car-image img {
  width: 100%;
}
@media only screen and (max-width: 468px) {
  section.car-info div.car-info div.car-image img {
    width: 50%;
  }
}
section.car-info div.car-info div.car-image div.sticker-wrapper {
  position: absolute;
  top: 2em;
  right: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #0099d5;
  color: white;
  -ms-transform: rotate(20deg);
  /* IE 9 */
  -webkit-transform: rotate(20deg);
  /* Chrome, Safari, Opera */
  transform: rotate(20deg);
}
section.car-info div.car-info div.car-image div.sticker-wrapper div.sticker {
  position: relative;
  height: 100%;
}
section.car-info div.car-info div.car-image div.sticker-wrapper div.sticker p {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 2em;
  line-height: 100%;
}
section.car-info div.car-info div.car-image div.sticker-wrapper div.sticker em {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
section.car-info div.car-info div.car-tabs {
  float: left;
  width: 70%;
}
@media only screen and (max-width: 468px) {
  section.car-info div.car-info div.car-tabs {
    float: none;
    width: 100%;
  }
}
section.car-info div.car-info ul.list {
  margin: 0 0 1em 2em;
}
section.car-info div.car-info ul.list li {
  line-height: 150%;
  list-style-type: disc;
}
section.car-info div.car-info div.car-features {
  float: left;
  width: 50%;
  margin: 2em 5% 0 0;
}
@media only screen and (max-width: 468px) {
  section.car-info div.car-info div.car-features {
    float: none;
    width: 100%;
  }
}
section.car-info div.car-info div.car-price {
  float: left;
  width: 15%;
}
@media only screen and (max-width: 468px) {
  section.car-info div.car-info div.car-price {
    float: none;
    width: 100%;
  }
}
section.car-info div.car-info div.car-price span {
  display: block;
  font-size: 2em;
  color: #0099d5;
}
section.car-info div.car-info div.car-price span em {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
section.car-info div.car-info div.car-price p {
  margin: 1em 0 2em 0;
}
section.car-info div.car-info div.car-price a {
  display: inline-block;
  color: white;
  background: #0099d5;
  padding: 1em 2em;
  border-radius: 5px;
  border-bottom: 2px solid #0074a2;
  text-transform: uppercase;
}
section.car-info div.car-info div.car-price a:hover {
  background: #09baff;
}
section.car-info div.car-info div.downloads h2 {
  margin: 0 0 .5em 0;
}
section.car-info div.car-info div.downloads a {
  display: block;
  margin-top: .5em;
  text-decoration: underline;
}
section.car-info div.car-info div.downloads a:hover {
  text-decoration: none;
}
section.car-info div.car-info div.downloads a span {
  margin-right: .5em;
}
section.car-info .ui-tabs-nav {
  position: relative;
  overflow: hidden;
  top: 1px;
}
section.car-info .ui-tabs-panel {
  border-top: 1px solid #d8d9db;
  padding: 2em 0;
}
section.car-info .ui-state-default {
  float: left;
  background: #e5e6e7;
  color: rgba(84, 90, 92, 0.5);
  min-width: 200px;
  border: 1px solid #d8d9db;
  border-bottom: 0;
  box-sizing: border-box;
}
@media only screen and (max-width: 468px) {
  section.car-info .ui-state-default {
    min-width: 180px;
  }
}
section.car-info .ui-state-active {
  position: relative;
  z-index: 10;
  background: white;
  color: #545a5c;
  border-bottom: 1px solid white;
}
section.car-info .ui-tabs-anchor {
  display: block;
  color: inherit;
  padding: 1em;
}
section.car-info .ui-tabs-anchor:focus {
  outline: none;
}
section.choose-car {
  padding: 2em 0 0 0;
}
section.choose-car div.slider-wrapper {
  position: relative;
}
section.choose-car div.slider-wrapper button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border: none;
  z-index: 20;
  background: rgba(255, 255, 255, 0.5);
  color: rgba(0, 153, 213, 0.2);
  padding: 1.5em .5em;
  cursor: pointer;
  height: 60px;
}
section.choose-car div.slider-wrapper button:hover {
  background: white;
  color: #0099d5;
}
section.choose-car div.slider-wrapper button:focus {
  outline: none;
}
section.choose-car div.slider-wrapper button.car-right {
  right: 0;
}
section.choose-car div.car-slider {
  padding: 0 3%;
}
section.choose-car div.car-slider div.image-wrapper {
  background: white;
  min-height: 144px;
  position: relative;
  width: 90%;
}
@media only screen and (max-width: 468px) {
  section.choose-car div.car-slider div.image-wrapper {
    margin: 0 auto;
  }
}
section.choose-car div.car-slider div.slide img {
  opacity: .5;
}
section.choose-car div.car-slider div.slide:hover,
section.choose-car div.car-slider div.slide.active {
  cursor: pointer;
}
section.choose-car div.car-slider div.slide:hover img,
section.choose-car div.car-slider div.slide.active img {
  opacity: 1;
}
section.choose-car div.car-slider div.slide:hover > span,
section.choose-car div.car-slider div.slide.active > span {
  background: white;
  color: #0099d5;
}
section.choose-car div.car-slider img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: auto;
  max-height: 144px;
}
section.choose-car div.car-slider span {
  display: block;
  width: 90%;
  padding: 1em 0 3em 0;
  text-align: center;
}
@media only screen and (max-width: 468px) {
  section.choose-car div.car-slider span {
    margin: 0 auto;
  }
}
section.choose-car div.service-slider div.image-wrapper {
  background: none;
  min-height: 144px;
  position: relative;
  width: 90%;
}
section.choose-car div.service-slider div.slide img {
  opacity: 1;
}
section.choose-car div.service-slider div.slide:hover,
section.choose-car div.service-slider div.slide.active {
  cursor: auto;
}
section.extra-padding {
  padding-bottom: 2em;
}
section.app img.float-left {
  float: left;
  margin: 0 1em 1em 0;
}
section.app img.app {
  margin-right: 1em;
}
section.app p {
  margin: 0 0 2.35em 0;
}
section.app ul {
  float: left;
}
section.app ul li {
  list-style-position: inside;
  list-style-type: disc;
}
section.app ul li a {
  color: #0099d5;
}
section.accessories {
  overflow: hidden;
}
section.accessories div.menu {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  margin-right: 2%;
}
@media only screen and (max-width: 468px) {
  section.accessories div.menu {
    display: block;
    width: 100%;
  }
}
section.accessories div.menu ul {
  margin-left: 0;
}
section.accessories div.menu ul li {
  list-style-position: inside;
  list-style-type: none;
}
section.accessories div.menu ul li.first-level {
  background: no-repeat left top;
  padding-left: 25px;
  line-height: 20px;
  margin-bottom: .5em;
}
@media only screen and (max-width: 468px) {
  section.accessories div.menu ul li.first-level {
    line-height: 2em;
  }
}
section.accessories div.menu ul li.first-level:first-child {
  background-image: url(../images/small/ice.png);
}
section.accessories div.menu ul li.first-level:nth-child(2) {
  background-image: url(../images/small/truck.png);
}
section.accessories div.menu ul li.first-level:nth-child(3) {
  background-image: url(../images/small/data.png);
}
section.accessories div.menu ul li.first-level:nth-child(4) {
  background-image: url(../images/small/temperature.png);
}
section.accessories div.menu ul li.first-level:nth-child(5) {
  background-image: url(../images/small/fuel.png);
}
section.accessories div.menu ul li.open ul {
  display: block;
}
section.accessories div.menu ul li.open ul li {
  margin-bottom: .5em;
}
section.accessories div.menu ul li.open a span {
  opacity: 1;
}
section.accessories div.menu ul li.open a.active {
  color: #0099d5;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
section.accessories div.menu ul li a {
  display: block;
  cursor: pointer;
}
section.accessories div.menu ul li a:hover {
  text-decoration: underline;
}
section.accessories div.menu ul li a.active {
  color: #0099d5;
}
section.accessories div.menu ul li a span {
  float: right;
  color: #0099d5;
  opacity: 0.2;
}
section.accessories div.menu ul li ul {
  display: none;
  border: solid #e5e6e7;
  border-width: 1px 0;
  padding: .5em 0;
}
section.accessories div.content-wrapper {
  display: inline-block;
  width: 70%;
  vertical-align: top;
}
@media only screen and (max-width: 468px) {
  section.accessories div.content-wrapper {
    width: 100%;
  }
}
section.accessories div.content div.item img {
  float: right;
  margin: 0 0 1em 1em;
}
@media only screen and (max-width: 468px) {
  section.accessories div.content div.item img {
    display: block;
    float: none;
    margin: 0 auto 1em auto;
  }
}
section.accessories div.content div.item img.block {
  float: none;
  display: block;
  margin: 0 0 1em 0;
}
section.accessories div.content div.item p {
  margin-bottom: 1em;
}
section.accessories div.content div.item div.product-image {
  display: inline-block;
  vertical-align: middle;
  width: 45%;
  margin-right: 2%;
}
@media only screen and (max-width: 768px) {
  section.accessories div.content div.item div.product-image {
    display: block;
    width: 100%;
    margin: 1em 0;
  }
}
section.accessories div.content div.item div.product-image img {
  float: none;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  section.accessories div.content div.item div.product-image img {
    max-width: 50%;
    margin: 0 auto;
  }
}
section.accessories div.content div.item div.features {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  section.accessories div.content div.item div.features {
    width: 100%;
  }
}
section.accessories div.content div.item ul {
  margin-left: 1.5em;
}
section.accessories div.content div.item ul li {
  position: relative;
  line-height: 150%;
  margin-bottom: .5em;
  list-style-type: none;
}
section.accessories div.content div.item ul li ul li:before {
  background: white;
}
section.accessories div.content div.item ul li:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  left: -1.5em;
  top: 25%;
  background-color: #e5e6e7;
  border-radius: 50%;
}
/* THIRD PARTY */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  max-width: 100%;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  display: block;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  color: white;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:hover,
.slick-next:hover {
  color: #7ac143;
}
.slick-prev {
  left: 5em;
}
.slick-next {
  right: 5em;
}
.prev-right,
.next-right {
  color: black;
  top: 0;
  margin-top: 1.5em;
  width: 1em;
  text-align: center;
}
.prev-right {
  right: 3.25em;
  left: auto;
}
.next-right {
  right: 2em;
}
/* DOTS */
.slick-dots {
  position: absolute;
  bottom: 3em;
  right: 5em;
  display: block;
  width: auto;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: white;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-size: 48px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  color: #0099d5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: white;
}
