@charset "UTF-8";
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;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
  font-size: 14px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

:root {
  --blue: #3591cf;
  --border: #EEE;
}

/*------------------------------------------------------------------------- BASE STYLES
*/
html {
  box-sizing: border-box;
  font-size: 1vw;
  scroll-behavior: smooth;
}
@media screen and (min-width: 1800px) {
  html {
    font-size: 18px;
  }
}
@media screen and (max-width: 1180px) {
  html {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 800px) and (max-width: 1180px) {
  html {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 16px;
  }
}

*, *:before, *:after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: #595958;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#container {
  overflow: hidden;
}

body {
  color: #000;
  background: #FFF;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  color: #595958;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  width: 100%;
}

p, q, h1, h2, h3, h4, a, li, button, label, input, select, textarea {
  color: #595958;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
  font-style: inherit;
  font-weight: inherit;
}
a:not([href]) {
  padding-top: 140px;
  margin-top: -140px;
  z-index: -1;
  position: relative;
}

p a[href], q a[href], h1 a[href], h2 a[href], h3 a[href], h4 a[href], li a[href] {
  color: #3591cf;
  font-weight: 400;
}

em {
  font-style: italic;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  text-align: inherit;
}

strong {
  font-weight: 700;
  font-style: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: inherit;
}

span {
  font-weight: inherit;
  font-style: inherit;
  color: inherit;
  line-height: inherit;
  text-align: inherit;
}

a {
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  text-decoration: none;
  text-align: inherit;
}

sup {
  font-size: smaller;
  position: relative;
  bottom: 0.3em;
  color: inherit;
  font-weight: inherit;
}

sub {
  font-size: smaller;
  position: relative;
  top: 0.3em;
  color: inherit;
  font-weight: inherit;
}

button {
  cursor: pointer;
  background: transparent;
}

blockquote {
  border-left: 5px solid #3591cf;
  padding: 30px 60px !important;
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
  margin-top: 32px;
}
@media screen and (max-width: 1440px) {
  blockquote {
    padding: 30px 40px !important;
  }
}
@media screen and (max-width: 800px) {
  blockquote {
    padding: 20px 5%;
  }
}
blockquote *:last-child {
  padding-bottom: 0 !important;
}
blockquote:before, blockquote:after {
  content: "";
  width: 20px;
  height: 5px;
  background: #3591cf;
  position: absolute;
  top: 0;
  left: 0;
}
blockquote:after {
  top: auto;
  bottom: 0;
}

@media screen and (max-width: 800px) {
  .desktop_dispaly {
    display: none !important;
  }
}

@media screen and (min-width: 800px) {
  .mobile_display {
    display: none !important;
  }
}

.popup_overlay, .popup_form {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0ms ease 0ms, visibility 0ms ease 0ms;
}

.popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 6000;
  cursor: zoom-out;
  transition: opacity 600ms ease 0ms, visibility 0ms ease 600ms;
}
@media screen and (max-width: 1180px) {
  .popup_overlay {
    background: rgba(255, 255, 255, 0.95);
  }
}
.popup_overlay.shown {
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms ease 0ms, visibility 0ms ease 0ms;
}
.popup_overlay:after, .popup_overlay:before {
  display: inline-block;
  content: "";
  width: 50px;
  height: 2px;
  background: #3591cf;
  position: absolute;
  top: 2.5vw;
  right: 2.5vw;
  transform: rotate(45deg);
}
@media screen and (max-width: 1180px) {
  .popup_overlay:after, .popup_overlay:before {
    top: 5vw;
    right: 5vw;
  }
}
.popup_overlay:after {
  transform: rotate(-45deg);
}

.fullscreen_image {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0ms ease 0ms, visibility 0ms ease 0ms;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 7000;
  transition: opacity 600ms ease 0ms, visibility 0ms ease 600ms;
  transform: translate(-50%, -50%);
  width: auto !important;
  height: auto !important;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 2px 1px 13px 0px rgba(0, 0, 0, 0.1);
}
.fullscreen_image.shown {
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms ease 0ms, visibility 0ms ease 0ms;
}

::-moz-selection {
  background: #3591cf; /* WebKit/Blink Browsers */
  color: #FFF;
}

::selection {
  background: #3591cf; /* WebKit/Blink Browsers */
  color: #FFF;
}

::-moz-selection {
  background: #3591cf; /* Gecko Browsers */
  color: #FFF;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #aeafaf;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #aeafaf;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #aeafaf;
}

:-moz-placeholder { /* Firefox 18- */
  color: #aeafaf;
}

#wrapper {
  position: relative;
  width: 100%;
}

.page {
  width: 100vw;
  height: auto;
  position: relative;
}

#content {
  padding-top: 320px;
  margin-top: -320px;
}

.wrapper {
  width: 90%;
  width: 95vw;
  max-width: 1540px;
  display: block;
  margin: auto;
  height: auto;
}
@media screen and (max-width: 800px) {
  .wrapper {
    width: 90vw;
  }
}
.wrapper:after {
  clear: both;
}
.wrapper:after {
  content: "";
  display: table;
  clear: both;
}
.wrapper.product {
  padding: 40px 0;
}
@media screen and (max-width: 800px) {
  .wrapper.product {
    padding: 30px 0;
  }
}

.page > .wrapper:first-child {
  padding-top: 60px;
}
@media screen and (max-width: 1440px) {
  .page > .wrapper:first-child {
    padding-top: 40px;
  }
}
@media screen and (max-width: 800px) {
  .page > .wrapper:first-child {
    padding-top: 30px;
  }
}

.column {
  width: 47.5%;
  display: inline-block;
  float: left;
  margin-right: 5%;
}
.column:nth-of-type(2n) {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .column {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .column:not(:last-child) {
    padding-bottom: 30px;
  }
}
.column.thirds {
  width: 31.66%;
  margin-right: 2.5%;
}
.column.thirds:nth-of-type(3n) {
  margin-right: 0;
}
.column.thirds.two {
  width: 65.82%;
  margin-right: 2.5%;
}
.column.thirds.two:nth-of-type(2n) {
  margin-right: 0;
}
.column.thirds.two + .thirds {
  margin-right: 0;
}
.column.thirds.three {
  width: 100%;
}
.column.quarters {
  width: 23.125%;
  margin-right: 2.5%;
}
.column.quarters:nth-of-type(4n) {
  margin-right: 0;
}
.column.quarters.two {
  width: 48.75%;
  margin-right: 2.5%;
}
.column.quarters.two:nth-of-type(2n) {
  margin-right: 0;
}
.column.quarters.three {
  width: 74.375%;
  margin-right: 2.5%;
}
.column.quarters + .two + .quarters {
  margin-right: 0;
}
.column.quarters.two + .two {
  margin-right: 0;
}
.column.quarters.two + .quarters + .quarters {
  margin-right: 0;
}
.column.quarters.three + .quarters {
  margin-right: 0;
}
.column.quarters + .three {
  margin-right: 0;
}

.button, form button, form input[type=submit] {
  background: #3591cf;
  display: inline-block;
  padding: 12px 24px;
  margin-bottom: 20px;
  border-radius: 50px;
  color: #FFF;
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: nowrap;
  transition: background 300ms ease, color 300ms ease;
}
@media screen and (max-width: 1440px) {
  .button, form button, form input[type=submit] {
    padding: 10px 18px;
  }
}
@media screen and (max-width: 1180px) {
  .button, form button, form input[type=submit] {
    font-size: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .button, form button, form input[type=submit] {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 800px) {
  .button:hover, form button:hover, form input[type=submit]:hover {
    background: #1375b7;
    color: #FFF;
  }
}
.button.border, form button.border, form input[type=submit].border {
  background: transparent;
  border: 1px solid #3591cf;
  color: #3591cf;
}
.button.border:hover, form button.border:hover, form input[type=submit].border:hover {
  color: #FFF;
  background: #3591cf;
}
.button a, form button a, form input[type=submit] a {
  text-decoration: none !important;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 0.6em;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 400;
}
@media screen and (max-width: 1180px) {
  h1 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 800px) {
  h1 {
    font-size: 1.6rem;
  }
}

h2, p.title {
  font-size: 2rem;
  margin-bottom: 0.6em;
  line-height: 1.2;
}
@media screen and (max-width: 1180px) {
  h2, p.title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 800px) {
  h2, p.title {
    font-size: 1.4rem;
  }
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 1em;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  h3 {
    font-size: 1.2rem;
  }
}

h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  h4 {
    font-size: 1rem;
    font-weight: 400;
  }
}

p {
  font-size: 1rem;
  margin-bottom: 1.2em;
  line-height: 1.5;
}
@media screen and (max-width: 1440px) {
  p {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 800px) {
  p {
    font-size: 1rem;
    margin-bottom: 1.1em;
  }
}
p.emph {
  color: #3591cf;
  font-weight: 400;
}
@media screen and (max-width: 1180px) {
  p.emph {
    font-size: 1.1rem;
  }
}

img.allow_fullscreen {
  cursor: zoom-in;
}

.slick-initialized {
  position: relative;
}
.slick-initialized .slick-dots {
  width: auto;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  list-style: none;
  width: 90%;
  width: 95vw;
  max-width: 1540px;
  display: block;
  margin: auto;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .slick-initialized .slick-dots {
    width: 90vw;
  }
}
.slick-initialized .slick-dots:after {
  clear: both;
}
@media screen and (max-width: 1180px) {
  .slick-initialized .slick-dots {
    bottom: 20px;
  }
}
.slick-initialized .slick-dots li {
  display: inline-block;
}
.slick-initialized .slick-dots li button {
  width: 20px;
  height: 20px;
  border: 1px solid #FFF;
  text-indent: -9999px;
  border-radius: 50%;
  margin: 0 6px;
  position: relative;
}
.slick-initialized .slick-dots li button:after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #FFF;
  border-radius: 50%;
  transition: transform 400ms ease;
}
.slick-initialized .slick-dots li.slick-active button:after {
  transform: translate(-50%, -50%) scale(1);
}
.slick-initialized .slick-arrow {
  position: absolute;
  top: 50%;
  left: 2.5%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  text-indent: -9999px;
  z-index: 10;
  background: url(../images/icons/arrow_left_white.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  .slick-initialized .slick-arrow {
    background-size: 14px;
  }
}
@media screen and (max-width: 1180px) {
  .slick-initialized .slick-arrow {
    background-size: 10px;
    left: 0;
  }
}
@media screen and (max-width: 800px) {
  .slick-initialized .slick-arrow {
    background-size: 12px;
  }
}
.slick-initialized .slick-arrow.slick-next {
  left: auto;
  right: 2.5%;
  background-image: url(../images/icons/arrow_right_white.svg);
}
@media screen and (max-width: 1180px) {
  .slick-initialized .slick-arrow.slick-next {
    right: 0;
  }
}

.hero_container,
.featured_projects {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-bottom: 4px solid #FFF;
}
.hero_container .slick-arrow,
.featured_projects .slick-arrow {
  top: 20%;
}
.hero_container .hero, .hero_container .project,
.featured_projects .hero,
.featured_projects .project {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  display: inline-block;
  float: left;
}
.hero_container .hero:not(:first-of-type), .hero_container .project:not(:first-of-type),
.featured_projects .hero:not(:first-of-type),
.featured_projects .project:not(:first-of-type) {
  display: none;
}
.hero_container .hero img, .hero_container .project img,
.featured_projects .hero img,
.featured_projects .project img {
  width: 100%;
  height: auto;
  display: inline-block;
  float: left;
}
@media screen and (max-width: 1180px) {
  .hero_container .hero img, .hero_container .project img,
  .featured_projects .hero img,
  .featured_projects .project img {
    width: 125%;
    max-width: 125%;
    transform: translateX(-12.5%);
  }
}
.hero_container .hero .banner_content, .hero_container .project .banner_content,
.featured_projects .hero .banner_content,
.featured_projects .project .banner_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  transform: translateX(-20%);
  opacity: 0;
  transition: transform 800ms ease 800ms, opacity 800ms ease 800ms;
}
@media screen and (max-width: 800px) {
  .hero_container .hero .banner_content, .hero_container .project .banner_content,
  .featured_projects .hero .banner_content,
  .featured_projects .project .banner_content {
    position: static;
    display: inline-block;
    transform: none;
    width: 100%;
  }
}
.hero_container .hero .banner_content:before, .hero_container .project .banner_content:before,
.featured_projects .hero .banner_content:before,
.featured_projects .project .banner_content:before {
  content: "";
  width: 55%;
  height: 100%;
  background: url(../images/hero-bg.svg);
  background-size: cover;
  background-position: right top;
  position: absolute;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  opacity: 0.9;
}
@media screen and (max-width: 800px) {
  .hero_container .hero .banner_content:before, .hero_container .project .banner_content:before,
  .featured_projects .hero .banner_content:before,
  .featured_projects .project .banner_content:before {
    display: none;
  }
}
.hero_container .hero .banner_content .wrapper, .hero_container .project .banner_content .wrapper,
.featured_projects .hero .banner_content .wrapper,
.featured_projects .project .banner_content .wrapper {
  padding-right: 1100px;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .hero_container .hero .banner_content .wrapper, .hero_container .project .banner_content .wrapper,
  .featured_projects .hero .banner_content .wrapper,
  .featured_projects .project .banner_content .wrapper {
    padding-right: 60vw;
  }
}
@media screen and (max-width: 1180px) {
  .hero_container .hero .banner_content .wrapper, .hero_container .project .banner_content .wrapper,
  .featured_projects .hero .banner_content .wrapper,
  .featured_projects .project .banner_content .wrapper {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 800px) {
  .hero_container .hero .banner_content .wrapper, .hero_container .project .banner_content .wrapper,
  .featured_projects .hero .banner_content .wrapper,
  .featured_projects .project .banner_content .wrapper {
    position: static;
    width: 80%;
    padding-right: 0;
    text-align: center;
    padding-top: 30px;
  }
}
.hero_container .hero .banner_content .wrapper *, .hero_container .project .banner_content .wrapper *,
.featured_projects .hero .banner_content .wrapper *,
.featured_projects .project .banner_content .wrapper * {
  color: #FFF;
}
@media screen and (max-width: 800px) {
  .hero_container .hero .banner_content .wrapper *, .hero_container .project .banner_content .wrapper *,
  .featured_projects .hero .banner_content .wrapper *,
  .featured_projects .project .banner_content .wrapper * {
    color: #595958;
  }
}
.hero_container .hero .banner_content .wrapper p, .hero_container .project .banner_content .wrapper p,
.featured_projects .hero .banner_content .wrapper p,
.featured_projects .project .banner_content .wrapper p {
  font-size: 1.4rem;
}
@media screen and (max-width: 1440px) {
  .hero_container .hero .banner_content .wrapper p, .hero_container .project .banner_content .wrapper p,
  .featured_projects .hero .banner_content .wrapper p,
  .featured_projects .project .banner_content .wrapper p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1180px) {
  .hero_container .hero .banner_content .wrapper p, .hero_container .project .banner_content .wrapper p,
  .featured_projects .hero .banner_content .wrapper p,
  .featured_projects .project .banner_content .wrapper p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .hero_container .hero .banner_content .wrapper p, .hero_container .project .banner_content .wrapper p,
  .featured_projects .hero .banner_content .wrapper p,
  .featured_projects .project .banner_content .wrapper p {
    font-size: 1rem;
  }
}
.hero_container .hero .banner_content .wrapper .button, .hero_container .project .banner_content .wrapper .button,
.featured_projects .hero .banner_content .wrapper .button,
.featured_projects .project .banner_content .wrapper .button {
  font-size: 1rem !important;
  background: transparent;
  border: 1px solid #FFF;
  line-height: 1;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 800px) {
  .hero_container .hero .banner_content .wrapper .button, .hero_container .project .banner_content .wrapper .button,
  .featured_projects .hero .banner_content .wrapper .button,
  .featured_projects .project .banner_content .wrapper .button {
    font-size: 0.9rem !important;
    border: 1px solid #3591cf;
    color: #3591cf;
  }
}
@media screen and (min-width: 800px) {
  .hero_container .hero .banner_content .wrapper .button:hover, .hero_container .project .banner_content .wrapper .button:hover,
  .featured_projects .hero .banner_content .wrapper .button:hover,
  .featured_projects .project .banner_content .wrapper .button:hover {
    color: #3591cf;
    background: #FFF;
  }
}
.hero_container .project .banner_content:before,
.featured_projects .project .banner_content:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
}
.hero_container .slick-dots,
.featured_projects .slick-dots {
  text-align: left;
}
.hero_container.slick-initialized .hero, .hero_container.slick-initialized .project,
.featured_projects.slick-initialized .hero,
.featured_projects.slick-initialized .project {
  display: inline-block;
}
.hero_container.slick-initialized .hero.slick-current .banner_content, .hero_container.slick-initialized .project.slick-current .banner_content,
.featured_projects.slick-initialized .hero.slick-current .banner_content,
.featured_projects.slick-initialized .project.slick-current .banner_content {
  transform: translateX(0);
  opacity: 1;
}
.hero_container:not(.slick-initialized) > * .banner_content,
.featured_projects:not(.slick-initialized) > * .banner_content {
  transform: translateX(0) !important;
  opacity: 1 !important;
}
.hero_container:not(.slick-initialized) > *:not(:first-child),
.featured_projects:not(.slick-initialized) > *:not(:first-child) {
  display: none;
}
.hero_container:not(.slick) .hero .banner_content, .hero_container:not(.slick) .project .banner_content,
.featured_projects:not(.slick) .hero .banner_content,
.featured_projects:not(.slick) .project .banner_content {
  transform: translateX(0);
  opacity: 1;
}

.side_nav {
  position: sticky;
  top: 320px;
  left: 0;
  padding-bottom: 60px;
}
@media screen and (max-width: 1440px) {
  .side_nav {
    padding-bottom: 40px;
    top: 280px;
  }
}
@media screen and (max-width: 1180px) {
  .side_nav {
    top: 220px;
  }
}
@media screen and (max-width: 800px) {
  .side_nav {
    display: none;
  }
}
.side_nav > li {
  padding: 14px 0 4px;
  border-bottom: 1px solid #d9dada;
}
.side_nav > li.subnav {
  background: url(../images/icons/dropdown.svg);
  background-position: right top 22px;
  background-size: 16px;
  background-repeat: no-repeat;
  padding-right: 30px;
  cursor: pointer;
}
.side_nav > li.subnav:first-of-type {
  padding-top: 0 !important;
  background-position: right top 8px;
}
@media screen and (max-width: 1440px) {
  .side_nav > li {
    background-size: 12px;
  }
}
.side_nav > li > a {
  font-size: 1.1rem;
  display: inline-block;
  font-weight: 400;
  padding-bottom: 10px;
  width: 100%;
}
.side_nav > li > ul {
  padding-bottom: 12px;
}
.side_nav li, .side_nav a {
  display: inline-block;
  width: 100%;
}
.side_nav a {
  width: auto;
  color: #595958 !important;
  transition: color 300ms ease;
}
.side_nav a:hover, .side_nav a.active {
  color: #3591cf !important;
}
.side_nav a:hover[title="Sign Out"], .side_nav a.active[title="Sign Out"] {
  color: #f91720 !important;
}
.side_nav a:hover:before, .side_nav a.active:before {
  background: #3591cf !important;
}
.side_nav a:hover.evalon, .side_nav a.active.evalon {
  color: #3591cf !important;
}
.side_nav a:hover.evalon:before, .side_nav a.active.evalon:before {
  background: #3591cf !important;
}
.side_nav a:hover.evalastic, .side_nav a.active.evalastic {
  color: #87AF0A !important;
}
.side_nav a:hover.evalastic:before, .side_nav a.active.evalastic:before {
  background: #87AF0A !important;
}
.side_nav a[target=_BLANK]:after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-size: 0.5em;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-image: url(../images/icons/external_blue.svg);
  margin-left: 8px;
}
.side_nav ul {
  display: none;
  width: 100%;
}
.side_nav ul li.subsubnav > a {
  font-size: 0.9rem;
  display: inline-block;
  padding-bottom: 4px;
}
@media screen and (max-width: 1180px) {
  .side_nav ul li.subsubnav > a {
    font-size: 1rem;
  }
}
.side_nav ul li.subsubnav ul {
  padding-top: 0;
  display: inline-block !important;
}
.side_nav ul li.subsubnav ul a {
  font-size: 0.9rem;
  padding-left: 22px;
  position: relative;
  transition: color 300ms ease;
}
@media screen and (max-width: 1180px) {
  .side_nav ul li.subsubnav ul a {
    font-size: 1rem;
    padding: 3px 0 2px 22px;
  }
}
.side_nav ul li.subsubnav ul a:before {
  content: "";
  width: 12px;
  height: 1px;
  background: #d9dada;
  position: absolute;
  left: 0;
  top: 50%;
  transition: background 300ms ease;
}
.side_nav ul li.subsubnav + li.subsubnav > a {
  padding-top: 6px;
}

div.intro {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 800px) {
  div.intro {
    padding-left: 60px;
    padding-right: 60px;
  }
}
div.intro .social_share {
  margin-bottom: 40px;
}
div.intro * {
  text-align: center;
}
div.intro .button {
  position: absolute;
  top: 4px;
}
@media screen and (max-width: 800px) {
  div.intro .button {
    text-indent: -9999px;
    padding: 0 !important;
    width: 40px;
    height: 40px;
    top: 0;
  }
}
div.intro .button:after {
  content: "";
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/icons/arrow_right_blue.svg);
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  filter: grayscale(0) brightness(1);
  transition: filter 300ms ease;
}
@media screen and (max-width: 800px) {
  div.intro .button:after {
    width: 40px;
    height: 40px;
    background-size: 8px;
  }
}
div.intro .button:hover:after {
  filter: grayscale(100%) brightness(5);
}
div.intro .button.next {
  right: 0;
  padding-right: 40px;
}
div.intro .button.next:after {
  right: 20px;
}
@media screen and (max-width: 800px) {
  div.intro .button.next:after {
    left: 0;
  }
}
div.intro .button.prev {
  left: 0;
  padding-left: 40px;
}
div.intro .button.prev:after {
  left: 20px;
  background-image: url(../images/icons/arrow_left_blue.svg);
}
@media screen and (max-width: 800px) {
  div.intro .button.prev:after {
    right: 0;
  }
}
div.intro .date {
  margin-top: -0.5em;
  text-align: center;
}

.services_container, .solutions {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.services_container .slick-arrow, .solutions .slick-arrow {
  background-image: url(../images/icons/arrow_left_blue.svg);
  top: 22vw;
  transform: none;
  left: 1%;
}
@media screen and (max-width: 1440px) {
  .services_container .slick-arrow, .solutions .slick-arrow {
    top: 21vw;
  }
}
@media screen and (max-width: 1180px) {
  .services_container .slick-arrow, .solutions .slick-arrow {
    left: 0;
    top: 18.6vw;
  }
}
@media screen and (max-width: 800px) {
  .services_container .slick-arrow, .solutions .slick-arrow {
    top: 61vw;
  }
}
.services_container .slick-arrow.slick-next, .solutions .slick-arrow.slick-next {
  background-image: url(../images/icons/arrow_right_blue.svg);
  right: 20px;
}
@media screen and (max-width: 1180px) {
  .services_container .slick-arrow.slick-next, .solutions .slick-arrow.slick-next {
    right: 0;
  }
}
.services_container .service, .services_container .solution, .solutions .service, .solutions .solution {
  width: 33.33%;
  display: inline-block;
  float: left;
  border-left: 2px solid #FFF;
  border-right: 2px solid #FFF;
}
@media screen and (max-width: 800px) {
  .services_container .service, .services_container .solution, .solutions .service, .solutions .solution {
    width: 100%;
  }
}
.services_container .service .image_wrapper, .services_container .solution .image_wrapper, .solutions .service .image_wrapper, .solutions .solution .image_wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
}
.services_container .service .image_wrapper img, .services_container .solution .image_wrapper img, .solutions .service .image_wrapper img, .solutions .solution .image_wrapper img {
  width: 100%;
  height: auto;
}
.services_container .service .image_wrapper .title, .services_container .solution .image_wrapper .title, .solutions .service .image_wrapper .title, .solutions .solution .image_wrapper .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 20px 30px;
}
.services_container .service .image_wrapper .title h2, .services_container .solution .image_wrapper .title h2, .solutions .service .image_wrapper .title h2, .solutions .solution .image_wrapper .title h2 {
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.services_container .service .banner_content, .services_container .solution .banner_content, .solutions .service .banner_content, .solutions .solution .banner_content {
  text-align: center;
  padding: 30px 30px 40px;
}
@media screen and (max-width: 1180px) {
  .services_container .service .banner_content, .services_container .solution .banner_content, .solutions .service .banner_content, .solutions .solution .banner_content {
    padding: 30px 30px 30px;
  }
}
.services_container .service .banner_content > *:last-child, .services_container .solution .banner_content > *:last-child, .solutions .service .banner_content > *:last-child, .solutions .solution .banner_content > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.services_container .service .banner_content h3, .services_container .solution .banner_content h3, .solutions .service .banner_content h3, .solutions .solution .banner_content h3 {
  color: #3591cf;
  font-size: 1.2rem;
  margin-bottom: 0.6em;
}
.services_container .service .banner_content ul, .services_container .solution .banner_content ul, .solutions .service .banner_content ul, .solutions .solution .banner_content ul {
  margin-bottom: 30px;
}
.services_container .service .banner_content li, .services_container .solution .banner_content li, .solutions .service .banner_content li, .solutions .solution .banner_content li {
  padding: 10px 0;
  border-bottom: 1px solid #d9dada;
  font-size: 0.9rem;
}
@media screen and (max-width: 1440px) {
  .services_container .service .banner_content li, .services_container .solution .banner_content li, .solutions .service .banner_content li, .solutions .solution .banner_content li {
    font-size: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .services_container .service .banner_content li, .services_container .solution .banner_content li, .solutions .service .banner_content li, .solutions .solution .banner_content li {
    font-size: 0.9rem;
  }
}
.services_container .service .banner_content li:before, .services_container .solution .banner_content li:before, .solutions .service .banner_content li:before, .solutions .solution .banner_content li:before {
  content: "";
  background: url(../images/icons/tick_blue.svg);
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 6px;
  position: relative;
  top: 2px;
}
.services_container .service .banner_content .button, .services_container .solution .banner_content .button, .solutions .service .banner_content .button, .solutions .solution .banner_content .button {
  background: transparent;
  border: 1px solid #3591cf;
  color: #3591cf;
  margin-bottom: 0;
}
.services_container .service .banner_content .button:hover, .services_container .solution .banner_content .button:hover, .solutions .service .banner_content .button:hover, .solutions .solution .banner_content .button:hover {
  background: #3591cf;
  color: #FFF;
}
.services_container .service .banner_content a[target=_BLANK] .button:after, .services_container .solution .banner_content a[target=_BLANK] .button:after, .solutions .service .banner_content a[target=_BLANK] .button:after, .solutions .solution .banner_content a[target=_BLANK] .button:after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-size: 0.6em;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-image: url(../images/icons/external_blue.svg);
  margin-left: 6px;
}
.services_container:not(.slick-initialized) .service, .solutions:not(.slick-initialized) .service {
  display: none;
}
.services_container:not(.slick-initialized) .service:nth-of-type(1), .services_container:not(.slick-initialized) .service:nth-of-type(2), .services_container:not(.slick-initialized) .service:nth-of-type(3), .solutions:not(.slick-initialized) .service:nth-of-type(1), .solutions:not(.slick-initialized) .service:nth-of-type(2), .solutions:not(.slick-initialized) .service:nth-of-type(3) {
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .services_container:not(.slick-initialized) .service:nth-of-type(2), .services_container:not(.slick-initialized) .service:nth-of-type(3), .solutions:not(.slick-initialized) .service:nth-of-type(2), .solutions:not(.slick-initialized) .service:nth-of-type(3) {
    display: none;
  }
}
.services_container .solution, .solutions .solution {
  width: 25%;
}
@media screen and (max-width: 1180px) {
  .services_container .solution, .solutions .solution {
    width: 33.33%;
  }
}
@media screen and (max-width: 800px) {
  .services_container .solution, .solutions .solution {
    width: 100%;
  }
}

.solutions:not(.slick-initialized) .solution:nth-of-type(4n + 1) {
  clear: left;
}
@media screen and (max-width: 1180px) {
  .solutions .slick-arrow {
    top: 55%;
  }
}
@media screen and (max-width: 800px) {
  .solutions .slick-arrow {
    top: 65%;
  }
}

/*--------------------------------------------------------------------------HEADER
*/
#access {
  display: none;
}

#header {
  position: sticky;
  top: 0;
  left: 0;
  background: #FFF;
  z-index: 5555;
  border-bottom: 1px solid #d9dada;
}
#header .wrapper {
  position: relative;
}
@media screen and (max-width: 800px) {
  #header {
    top: -40px;
  }
}
#header .notifications {
  width: 100%;
  border-bottom: 1px solid #d9dada;
  height: 44px;
  line-height: 44px;
}
@media screen and (max-width: 1440px) {
  #header .notifications {
    height: 40px;
    line-height: 40px;
  }
}
@media screen and (max-width: 800px) {
  #header .notifications {
    position: relative;
  }
}
#header .notifications p, #header .notifications a {
  display: inline-block;
  float: left;
  margin-bottom: 0;
  line-height: 44px;
  font-size: 0.9rem;
  transition: color 300ms ease;
  position: relative;
  z-index: 500;
}
@media screen and (max-width: 1440px) {
  #header .notifications p, #header .notifications a {
    line-height: 40px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 1180px) {
  #header .notifications p, #header .notifications a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 800px) {
  #header .notifications p, #header .notifications a {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
  }
  #header .notifications p a, #header .notifications a a {
    width: auto;
  }
}
#header .notifications p.account, #header .notifications a.account {
  float: right;
  display: inline-block;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  #header .notifications p.account, #header .notifications a.account {
    display: none;
  }
}
#header .notifications p a, #header .notifications a a {
  float: none;
}
#header .notifications p img, #header .notifications a img {
  width: auto !important;
  height: 24px !important;
  display: inline-block;
  margin-left: 4px;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 1180px) {
  #header .notifications p img, #header .notifications a img {
    height: 20px !important;
  }
}
#header .notifications a:hover {
  color: #3591cf;
}
#header .header_promo {
  width: 35%;
  display: inline-block;
  float: left;
  position: relative;
  margin-top: 6px;
  overflow: hidden;
}
@media screen and (max-width: 1180px) {
  #header .header_promo {
    width: 30%;
  }
}
@media screen and (max-width: 800px) {
  #header .header_promo {
    display: none;
  }
}
#header .header_promo .header_promo_wrapper {
  width: 100%;
  display: inline-block;
  position: relative;
}
#header .header_promo .header_promo_wrapper .header_promo_banner {
  display: block;
  max-width: 400px;
  width: auto;
  height: auto;
  float: left;
}
@media screen and (max-width: 1440px) {
  #header .header_promo .header_promo_wrapper .header_promo_banner {
    max-width: 320px;
  }
}
@media screen and (max-width: 1180px) {
  #header .header_promo .header_promo_wrapper .header_promo_banner {
    max-width: 210px;
    margin-top: 0;
  }
}
#header .header_promo .header_promo_wrapper .header_promo_banner img {
  width: 100%;
  height: auto;
}
#header .header_promo .header_promo_wrapper .header_promo_banner:not(:first-of-type) {
  position: absolute !important;
  top: 0;
  left: 0;
}
#header .header_promo .header_promo_wrapper:not(.slick-initialized) .header_promo_banner {
  display: none;
}
#header .header_promo .header_promo_wrapper:not(.slick-initialized) .header_promo_banner:first-child {
  display: inline-block;
}
#header .logo_container {
  width: 30%;
  height: auto;
  padding: 12px 0;
  display: inline-block;
  float: left;
  position: relative;
  z-index: 3;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  #header .logo_container {
    padding: 0.8vw 0 0;
  }
}
@media screen and (max-width: 1180px) {
  #header .logo_container {
    width: 40%;
  }
}
@media screen and (max-width: 800px) {
  #header .logo_container {
    width: 60%;
    padding: 3vw 0;
    text-align: left;
  }
}
#header .logo_container.extra_padding {
  padding: 26px 0 34px;
}
@media screen and (max-width: 1440px) {
  #header .logo_container.extra_padding {
    padding: 20px 0 28px;
  }
}
@media screen and (max-width: 1180px) {
  #header .logo_container.extra_padding {
    padding: 12px 0 18px;
  }
}
#header .logo {
  margin: 0 !important;
}
#header .logo a {
  width: 90%;
  height: 3.2vw;
  display: inline-block;
  float: left;
  background: url(../images/icb_waterproofing.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  text-indent: -9999px;
  margin: 0 5%;
  border-bottom: 2px solid #d9dada;
}
@media screen and (max-width: 1440px) {
  #header .logo a {
    height: 3.2vw;
  }
}
@media screen and (max-width: 1180px) {
  #header .logo a {
    height: 4vw;
    width: 80%;
    margin: 0 10%;
  }
}
@media screen and (max-width: 800px) {
  #header .logo a {
    height: 46px;
    width: 100%;
    margin: 0;
  }
}
#header .tagline {
  display: inline-block;
  width: 100%;
  float: left;
  height: auto;
  vertical-align: baseline;
  height: auto;
  z-index: 3;
  padding-top: 0.4vw;
}
@media screen and (max-width: 1440px) {
  #header .tagline {
    padding-top: 0.8vw;
  }
}
@media screen and (max-width: 1180px) {
  #header .tagline {
    padding-top: 0.4vw;
  }
}
@media screen and (max-width: 800px) {
  #header .tagline {
    padding-top: 1.6vw;
    width: 100%;
  }
}
#header .tagline * {
  font-size: 0.9rem;
  line-height: 1.4;
  display: inline-block;
  height: auto;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  #header .tagline * {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1180px) {
  #header .tagline * {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 800px) {
  #header .tagline * {
    font-size: 0.65rem;
  }
  #header .tagline * br {
    display: none;
  }
}
#header .trusted_by {
  width: 100%;
  height: 30px;
  position: relative;
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 1440px) {
  #header .trusted_by {
    margin-top: 2px;
  }
}
#header .trusted_by p {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  font-size: 0.9rem;
  margin-bottom: 0;
  color: #3591cf;
  transition: opacity 300ms ease;
}
#header .trusted_by p.shown {
  opacity: 1;
}
#header .trusted_by:not(.init) p:first-child {
  opacity: 1;
}
#header .header_cta {
  width: 35%;
  display: inline-block;
  float: left;
  padding-left: 80px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1180px) {
  #header .header_cta {
    display: none;
  }
}
#header .header_cta p {
  font-size: 1.1rem;
  color: #595958;
  margin-bottom: 0;
  display: inline-block;
  width: 100%;
  transition: filter 300ms ease, color 300ms ease;
}
#header .header_cta p:first-of-type {
  margin-bottom: 16px;
}
#header .header_cta p.email {
  margin-bottom: 10px;
  background: url(../images/icons/email.svg);
  background-size: 20px;
  background-position: left center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}
#header .header_cta p.phone, #header .header_cta p.message {
  margin-bottom: 10px;
  background: url(../images/icons/phone.svg);
  background-size: 20px;
  background-position: left top;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}
#header .header_cta p.message {
  background-image: url(../images/icons/message.svg);
  background-size: 22px;
  background-position: left top 1px;
}
#header .header_cta p a {
  font-size: 0.9rem;
  padding-left: 34px;
  display: inline-block;
  float: left;
  width: 100%;
  color: inherit;
  line-height: 1;
}
#header .header_cta p a span {
  display: inline-block;
  width: 100%;
  font-size: 0.7rem;
  opacity: 0.6;
}
#header .header_cta p.email a {
  min-height: 20px;
  line-height: 20px;
}
#header .header_cta p.message a {
  min-height: 22px;
  line-height: 22px;
}
#header .header_cta p:hover {
  filter: grayscale(0);
  color: #3591cf;
}
#header .brochure_download {
  float: right;
  color: #FFF;
  padding: 20px 0;
  width: 12%;
  font-size: 1rem;
  text-align: center;
  padding-right: 40px;
  padding-left: 20px;
  background: url(../images/icons/download_white.svg);
  background-position: right 24px center;
  background-size: 20px;
  background-repeat: no-repeat;
  position: relative;
  transition: background-color 300ms ease;
}
@media screen and (max-width: 1440px) {
  #header .brochure_download {
    padding: 16px 30px 16px 0;
  }
}
@media screen and (max-width: 1180px) {
  #header .brochure_download {
    position: absolute;
    bottom: 100%;
    right: 0;
    color: #3591cf;
    font-weight: 500;
    padding-right: 26px;
    text-align: right;
    background-position: right center;
    background-image: url(../images/icons/download_blue.svg);
  }
}
@media screen and (max-width: 800px) {
  #header .brochure_download {
    width: 35%;
    padding-right: 34px;
    background-position: right 10px center;
    background-size: 16px;
    font-size: 0.8rem;
    margin-bottom: 46px;
  }
}
#header .brochure_download:before {
  content: "";
  display: inline-block;
  width: 210%;
  height: 270px;
  background: red;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(25%);
  background: url(../images/brochure_min.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  #header .brochure_download:before {
    height: 210px;
    transform: translateX(26%);
  }
}
@media screen and (max-width: 1180px) {
  #header .brochure_download:before {
    height: 160px;
    transform: translateX(-2%);
    bottom: -26px;
  }
}
@media screen and (max-width: 800px) {
  #header .brochure_download:before {
    width: 120%;
    bottom: 15%;
    transform: translateX(10%);
  }
}
#header .brochure_download.lazy-bg-loaded:before {
  background-image: url(../images/brochure.png);
}
@media screen and (min-width: 1180px) {
  #header .brochure_download:hover {
    background-color: #1375b7;
  }
}
#header .nav {
  width: 100%;
  background: #3591cf;
}
@media screen and (max-width: 800px) {
  #header .nav .wrapper {
    width: 100% !important;
  }
}
#header .nav .opening_times {
  font-size: 0.76rem;
  text-align: right;
  margin-bottom: 1vw;
}
#header .nav .phone {
  float: right;
  font-size: 1.4rem;
  width: 100%;
  text-align: right;
  position: relative;
  z-index: 3;
  margin-top: 1.5vw;
  margin-bottom: 1vw;
}
@media screen and (max-width: 1440px) {
  #header .nav .phone {
    margin-top: 1.2vw;
    margin-bottom: 0.6vw;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1180px) {
  #header .nav .phone {
    margin-top: 1.8vw;
    margin-bottom: 0.6vw;
  }
}
@media screen and (max-width: 800px) {
  #header .nav .phone {
    font-size: 1rem;
    margin: 0 !important;
    float: right;
    text-align: left;
    width: auto;
  }
  #header .nav .phone span {
    display: none;
  }
}
#header .nav .phone a {
  padding-left: 38px;
  margin-left: 14px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 300ms ease, opacity 300ms ease;
  background: url(../images/icons/phone_red.svg);
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  #header .nav .phone a {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1180px) {
  #header .nav .phone a {
    padding-left: 30px;
  }
}
@media screen and (max-width: 800px) {
  #header .nav .phone a {
    width: 40px;
    height: 40px;
    display: inline-block;
    text-indent: -9999px;
    padding: 0;
    margin: 0;
    background-size: 26px;
    background-position: center;
  }
}
#header .nav .phone a:hover {
  opacity: 1;
  filter: grayscale(0);
}
#header .nav #nav {
  display: inline-block;
  list-style: none;
  float: left;
  margin-top: 2px;
  white-space: nowrap;
}
@media screen and (min-width: 800px) {
  #header .nav #nav {
    display: inline-block !important;
  }
}
@media screen and (max-width: 800px) {
  #header .nav #nav {
    display: none;
    right: 0;
    width: 100vw;
    background: #FFF;
    height: auto;
    overflow: auto;
    z-index: 9999;
    border-top: 1px solid #d9dada;
    margin-top: 0;
    max-height: 80vh;
    max-height: calc(100vh - 210px);
  }
}
#header .nav #nav a[target=_BLANK]:after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-size: 0.6em;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-image: url(../images/icons/external_white.svg);
  margin-left: 6px;
}
#header .nav #nav > li {
  display: inline-block;
  float: left;
  transition: background 300ms ease;
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li {
    width: 100%;
  }
}
#header .nav #nav > li > a {
  padding: 16px 26px;
  display: inline-block;
  position: relative;
  z-index: 3;
  font-size: 0.9rem;
  transition: color 300ms ease;
  color: #FFF;
}
@media screen and (max-width: 1440px) {
  #header .nav #nav > li > a {
    font-size: 1rem;
    padding: 12px 20px;
  }
}
@media screen and (max-width: 1180px) {
  #header .nav #nav > li > a {
    padding: 12px 16px;
  }
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li > a {
    width: 100%;
    font-size: 0.9rem;
    border-bottom: 1px solid #d9dada;
    color: #3591cf;
  }
}
#header .nav #nav > li.subnav > a {
  padding-right: 36px;
  background: url(../images/icons/dropdown_white.svg);
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: right 16px center;
}
@media screen and (max-width: 1440px) {
  #header .nav #nav > li.subnav > a {
    background-size: 10px auto;
  }
}
@media screen and (max-width: 1180px) {
  #header .nav #nav > li.subnav > a {
    background-size: 10px auto;
    padding-right: 34px;
  }
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li.subnav > a {
    background-size: 14px auto;
    background-image: url(../images/icons/dropdown_blue.svg);
  }
}
#header .nav #nav > li > ul {
  position: absolute;
  background: #1375b7;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  padding: 30px 40px 16px;
  transition: opacity 300ms ease 0ms, visibility 0ms ease 300ms;
}
@media screen and (max-width: 1180px) {
  #header .nav #nav > li > ul {
    padding: 20px 30px 8px;
  }
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li > ul {
    visibility: visible !important;
    opacity: 1 !important;
    position: static;
    display: none;
    padding: 0;
  }
}
#header .nav #nav > li > ul a {
  font-size: 0.9rem;
  padding-bottom: 18px;
  display: inline-block;
  color: #FFF;
  transition: color 300ms ease;
}
@media screen and (max-width: 1440px) {
  #header .nav #nav > li > ul a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li > ul a {
    width: 100%;
    text-align: left;
    padding: 12px 16px !important;
    font-weight: 400;
    border-bottom: 1px solid #FFF;
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 800px) {
  #header .nav #nav > li > ul a:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 800px) {
  #header .nav #nav > li.first a {
    text-indent: -9999px;
    display: inline-block;
    background: url(../images/icons/home.svg);
    background-size: 26px;
    background-repeat: no-repeat;
    background-position: left center;
    filter: grayscale(100%);
    width: 50px;
  }
}
@media screen and (min-width: 800px) and (max-width: 1180px) {
  #header .nav #nav > li.first a {
    width: 40px;
    background-size: 22px;
  }
}
#header .nav #nav > li .custom_subnav {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  padding-top: 6%;
  background: #FFF;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  border-bottom: 1px solid #d9dada;
  padding-bottom: 30px;
  transition: opacity 600ms ease 0ms, visibility 0ms ease 600ms;
}
@media screen and (max-width: 1440px) {
  #header .nav #nav > li .custom_subnav {
    padding-top: 8%;
  }
}
@media screen and (min-width: 800px) {
  #header .nav #nav > li .custom_subnav {
    display: inline-block !important;
  }
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li .custom_subnav {
    visibility: visible !important;
    opacity: 1 !important;
    position: static;
    display: none;
    padding-top: 0;
    padding-bottom: 0;
    background: red;
  }
}
#header .nav #nav > li .custom_subnav .wrapper {
  position: relative;
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li .custom_subnav .wrapper {
    width: 100%;
  }
}
#header .nav #nav > li .custom_subnav .installer {
  width: 40%;
  display: inline-block;
  float: left;
  padding-top: 60px;
  padding-right: 15%;
  padding-bottom: 40px;
  background: url(../images/map-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right 0 center;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1180px) {
  #header .nav #nav > li .custom_subnav .installer {
    top: 55%;
    width: 25%;
    padding-right: 0;
    padding-top: 180px;
    text-align: center;
    background-size: auto 140px;
    background-position: center top 20px;
  }
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li .custom_subnav .installer {
    display: none;
  }
}
#header .nav #nav > li .custom_subnav .installer h3 {
  color: #3591cf;
}
#header .nav #nav > li .custom_subnav .installer p {
  display: inline-block;
  float: left;
  color: #3591cf;
}
#header .nav #nav > li .custom_subnav .installer .button {
  float: left;
  clear: both;
  background: transparent;
  border: 1px solid #3591cf;
  color: #3591cf;
}
@media screen and (max-width: 1180px) {
  #header .nav #nav > li .custom_subnav .installer .button {
    float: none;
  }
}
#header .nav #nav > li .custom_subnav .installer .button:hover {
  background: #3591cf;
  color: #FFF;
}
#header .nav #nav > li .custom_subnav .wrapper > ul {
  width: 60%;
  display: inline-block !important;
  float: right;
}
@media screen and (max-width: 1180px) {
  #header .nav #nav > li .custom_subnav .wrapper > ul {
    width: 75%;
  }
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li .custom_subnav .wrapper > ul {
    width: 100%;
  }
}
#header .nav #nav > li .custom_subnav .wrapper > ul li {
  text-align: right;
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li .custom_subnav .wrapper > ul li {
    text-align: left;
    padding: 12px 16px !important;
  }
}
#header .nav #nav > li .custom_subnav .wrapper > ul li a {
  font-size: 0.9rem;
  padding-bottom: 8px;
  display: inline-block;
  color: #595958;
  transition: color 300ms ease;
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li .custom_subnav .wrapper > ul li a {
    padding-bottom: 0;
    color: #FFF;
    width: 100%;
  }
}
@media screen and (min-width: 800px) {
  #header .nav #nav > li .custom_subnav .wrapper > ul li a:hover {
    color: #f91720;
  }
  #header .nav #nav > li .custom_subnav .wrapper > ul li a:hover[title=Evalon®] {
    color: #3591cf;
  }
  #header .nav #nav > li .custom_subnav .wrapper > ul li a:hover[title=Evalastic®] {
    color: #87AF0A;
  }
}
#header .nav #nav > li .custom_subnav .wrapper > ul > li {
  display: inline-block;
  float: left;
  width: 25%;
  padding-bottom: 20px;
  padding-left: 5%;
}
#header .nav #nav > li .custom_subnav .wrapper > ul > li:nth-last-of-type(3):nth-of-type(4n + 1) {
  margin-left: 25%;
}
#header .nav #nav > li .custom_subnav .wrapper > ul > li:nth-last-of-type(2):nth-of-type(4n + 1) {
  margin-left: 50%;
}
@media screen and (max-width: 1180px) {
  #header .nav #nav > li .custom_subnav .wrapper > ul > li {
    padding-left: 3%;
  }
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li .custom_subnav .wrapper > ul > li {
    width: 100%;
    height: auto;
    margin-left: 0 !important;
  }
  #header .nav #nav > li .custom_subnav .wrapper > ul > li:not(:last-child) {
    border-bottom: 1px solid #FFF;
  }
}
#header .nav #nav > li .custom_subnav .wrapper > ul > li > a {
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li .custom_subnav .wrapper > ul > li > a {
    font-weight: 400;
    background: url(../images/icons/dropdown_white.svg);
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: right 2px center;
  }
}
#header .nav #nav > li .custom_subnav .wrapper > ul > li:nth-of-type(4n + 1) {
  clear: left;
}
@media screen and (max-width: 800px) {
  #header .nav #nav > li .custom_subnav .wrapper > ul > li ul {
    display: none;
  }
  #header .nav #nav > li .custom_subnav .wrapper > ul > li ul li {
    padding: 8px 0 2px !important;
  }
}
@media screen and (min-width: 800px) {
  #header .nav #nav > li:not(.first):hover {
    background-color: #1375b7;
  }
  #header .nav #nav > li:not(.first):hover .custom_subnav, #header .nav #nav > li:not(.first):hover > ul {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transition: opacity 600ms ease 0ms, visibility 0ms ease 0ms;
  }
}
#header .nav .get_in_touch {
  float: right;
  margin-left: 20px;
  position: relative;
  z-index: 3;
  margin-top: 4px;
}
@media screen and (max-width: 1440px) {
  #header .nav .get_in_touch {
    margin-bottom: 16px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 1180px) {
  #header .nav .get_in_touch {
    margin-left: 12px;
  }
}
@media screen and (max-width: 800px) {
  #header .nav .get_in_touch {
    display: none;
  }
}
#header .mobile_menu {
  display: none;
  width: 100%;
  height: auto;
  background: #3591cf;
  padding: 4px 5vw;
}
@media screen and (max-width: 800px) {
  #header .mobile_menu {
    display: inline-block;
  }
}
#header .mobile_menu .account {
  float: left;
  line-height: 40px;
  color: #FFF;
  font-weight: 500;
  font-size: 0.9rem;
}
#header .mobile_menu .menu {
  width: 40px;
  height: 40px;
  display: inline-block;
  float: right;
  margin-left: 20px;
  position: relative;
}
#header .mobile_menu .menu span, #header .mobile_menu .menu:before, #header .mobile_menu .menu:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #FFF;
  display: inline-block;
  text-align: left;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: width 0ms ease 200ms, top 200ms ease 200ms, transform 200ms ease 0ms;
}
#header .mobile_menu .menu:before {
  top: 28%;
}
#header .mobile_menu .menu:after {
  top: 72%;
}
#header .mobile_menu .menu.active span, #header .mobile_menu .menu.active:before, #header .mobile_menu .menu.active:after {
  transition: width 0ms ease 200ms, top 200ms ease 0ms, transform 200ms ease 200ms;
}
#header .mobile_menu .menu.active span {
  width: 0px;
}
#header .mobile_menu .menu.active:before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
#header .mobile_menu .menu.active:after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#header .mobile_menu .phone {
  width: 40px;
  height: 40px;
  display: inline-block;
  float: right;
  text-indent: -99999px;
  overflow: hidden;
  background: url(../images/icons/phone_white.svg);
  background-size: 28px;
  background-position: center;
  background-repeat: no-repeat;
}

.header_usps {
  width: 100%;
  height: auto;
  background: #595958;
}
@media screen and (min-width: 800px) {
  .header_usps .wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    vertical-align: center;
  }
}
@media screen and (max-width: 800px) {
  .header_usps .wrapper {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    text-align: center;
  }
  .header_usps .wrapper .slick-arrow {
    background-size: 10px;
  }
}
.header_usps .wrapper .usp {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
@media screen and (max-width: 800px) {
  .header_usps .wrapper .usp {
    display: inline-block;
    float: left;
    text-align: center;
  }
}
.header_usps .wrapper .usp img {
  height: 40px;
  width: auto;
  margin: 12px 16px 12px 0;
}
@media screen and (max-width: 1440px) {
  .header_usps .wrapper .usp img {
    height: 34px;
    margin: 8px 16px 8px 0;
  }
}
@media screen and (max-width: 1180px) {
  .header_usps .wrapper .usp img {
    height: 30px;
    margin: 10px 12px 10px 0;
  }
}
@media screen and (max-width: 800px) {
  .header_usps .wrapper .usp img {
    height: 40px;
    display: inline-block;
    margin: 8px 12px -8px 0;
  }
}
.header_usps .wrapper .usp p {
  color: #FFF;
  font-size: 0.9rem;
  line-height: 1.3;
  margin-bottom: 0;
}
@media screen and (max-width: 1180px) {
  .header_usps .wrapper .usp p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 800px) {
  .header_usps .wrapper .usp p {
    display: inline-block;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 800px) {
  .header_usps .wrapper:not(.slick-initialized) .usp {
    display: none;
    float: none;
  }
  .header_usps .wrapper:not(.slick-initialized) .usp:nth-child(1) {
    display: inline-block;
    margin: 0 30px;
  }
}

.quick_enquiry_popup {
  width: 90vw;
  width: calc(100vw - 70px);
  max-width: 960px;
  position: fixed;
  top: 210px;
  right: 0;
  z-index: 6000;
  box-shadow: 2px 1px 13px 0px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  transition: transform 600ms ease;
}
@media screen and (max-width: 800px) {
  .quick_enquiry_popup {
    top: 300px;
  }
}
.quick_enquiry_popup.active {
  transform: translateX(0);
}
.quick_enquiry_popup .quick_enquiry:not(.close) {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 100%;
  writing-mode: sideways-lr;
  background: #3591cf;
  padding: 20px;
  border-radius: 20px 0 0 20px;
  padding-bottom: 60px;
  background-image: url(../images/icons/message_white.svg);
  background-position: center bottom 20px;
  background-repeat: no-repeat;
  background-size: 26px;
  box-shadow: 2px 1px 13px 0px rgba(0, 0, 0, 0.4);
  color: #FFF;
}
@media screen and (max-width: 800px) {
  .quick_enquiry_popup .quick_enquiry:not(.close) {
    font-size: 0.9rem;
    padding: 16px 20px 50px 16px;
  }
}
.quick_enquiry_popup .quick_enquiry.close {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
}
.quick_enquiry_popup form {
  background: #3591cf;
  padding: 30px 40px 50px 40px;
  position: relative;
  z-index: 2;
}
.quick_enquiry_popup form h1, .quick_enquiry_popup form h2, .quick_enquiry_popup form h3, .quick_enquiry_popup form h4, .quick_enquiry_popup form p, .quick_enquiry_popup form a, .quick_enquiry_popup form label {
  color: #FFF;
}
.quick_enquiry_popup form p.error, .quick_enquiry_popup form p.success {
  position: relative;
  margin-bottom: 20px;
}
.quick_enquiry_popup form button {
  color: #FFF;
/*  position: absolute;*/
/*  bottom: 50px;*/
/*  left: 52.5%;*/
  border: 1px solid #FFF;
}
.quick_enquiry_popup form button:hover {
  background: #FFF;
  color: #3591cf;
}

.quick_enquiry_popup form label.custom_checkbox:after{
  color: #FFF;
}

/*-------------------------------------------------------------------------FORMS
*/
p.error, p.success, div.error, div.success {
  font-weight: 700;
  color: #FFF;
  font-size: 0.9rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none !important;
  height: auto;
  display: inline-block;
  background: #f91720;
  text-align: center !important;
  padding: 10px 0 10px;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 0;
  z-index: 9999;
}

@media screen and (max-width: 800px) {
  p.error, p.success, div.error, div.success {
    padding: 10px 5% 10px;
  }
}

p.error:before, p.error:after, p.success:before, p.success:after, div.error:before, div.error:after, div.success:before, div.success:after {
  content: "";
  width: 26px;
  height: 1px;
  background: #FFF;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: rotate(45deg);
}
p.error:after, p.success:after, div.error:after, div.success:after {
  transform: rotate(-45deg);
}

p.success, div.success {
  background: #87AF0A;
}

form legend {
  display: none;
}
form label:not(.checkbox) {
  padding-bottom: 6px;
  display: inline-block;
  font-size: 18px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1440px) {
  form label:not(.checkbox) {
    font-size: 16px;
  }
}
@media screen and (max-width: 1180px) {
  form label:not(.checkbox) {
    font-size: 12px;
  }
}
@media screen and (max-width: 800px) {
  form label:not(.checkbox) {
    font-size: 0.9rem;
  }
}
form label:not(.checkbox) em {
  display: none;
}
form label:not(.checkbox) span.warning, form label:not(.checkbox) div.warning {
  float: left;
  width: 100%;
  font-size: 0.9rem;
  margin-top: 0;
  color: #FFF !important;
  background: #f91720;
  padding: 5px 10px;
  width: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
form .inputgroup > label {
  display: none;
}
form .inputgroup span.warning, form .inputgroup div.warning {
  float: left;
  width: 100%;
  font-size: 0.9rem;
  margin-top: 0;
  color: #FFF !important;
  background: #f91720;
  padding: 5px 10px;
  width: 100%;
  display: inline-block;
  margin-bottom: 4px;
}
form .inputgroup span.warning + .inputgroup .custom_checkbox, form .inputgroup div.warning + .inputgroup .custom_checkbox {
  margin-top: 4px;
}
form input:not(.checkbox):not(.radio):not([type=submit]), form textarea, form select {
  width: 100%;
  height: 48px;
  background: #FFF;
  border: 1px solid #d9dada;
  padding: 0 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-size: 18px;
}
@media screen and (max-width: 1440px) {
  form input:not(.checkbox):not(.radio):not([type=submit]), form textarea, form select {
    font-size: 16px;
  }
}
@media screen and (max-width: 1180px) {
  form input:not(.checkbox):not(.radio):not([type=submit]), form textarea, form select {
    font-size: 14px;
    height: 42px;
  }
}
@media screen and (max-width: 800px) {
  form input:not(.checkbox):not(.radio):not([type=submit]), form textarea, form select {
    font-size: 16px;
    height: 40px;
  }
}
form select {
  background-image: url(../images/icons/dropdown.svg);
  background-position: right 16px center;
  background-size: 12px;
  background-repeat: no-repeat;
}
form textarea {
  height: 144px;
  padding: 16px;
  resize: none;
}
@media screen and (max-width: 1440px) {
  form textarea {
    height: 140px;
  }
}
@media screen and (max-width: 1180px) {
  form textarea {
    height: 124px;
  }
}
form ol {
  margin-bottom: 0 !important;
}
form li {
  margin-bottom: 16px;
  padding: 0 !important;
}
@media screen and (max-width: 800px) {
  form li {
    margin-bottom: 12px;
  }
}
form li:before {
  display: none !important;
}
form li.required label:not(.checkbox):after {
  content: "*";
  color: #f91720;
}
form li.hidden {
  display: none;
}
form label.custom_checkbox {
  padding-left: 56px;
  margin: 18px 0 3px;
  display: inline-block;
  position: relative;
  padding-top: 0px;
  font-size: 0.84rem;
}
@media screen and (max-width: 1440px) {
  form label.custom_checkbox {
    font-size: 0.96rem;
    padding-top: 4px;
  }
}
@media screen and (max-width: 800px) {
  form label.custom_checkbox {
    margin-top: 8px;
    font-size: 0.9rem;
  }
}
form label.custom_checkbox a:hover {
  text-decoration: underline;
}
form label.custom_checkbox:before {
  content: "";
  width: 36px;
  height: 36px;
  display: inline-block;
  border: 1px solid #d9dada;
  position: absolute;
  left: 0;
  top: 4px;
}
form label.custom_checkbox:after {
  content: "✔";
  color: #3591cf;
  width: 36px;
  line-height: 36px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 4px;
  opacity: 0;
  transform: scale(0.6);
  font-size: 1.2rem;
  transition: opacity 300ms ease, transform 300ms ease;
}
form label.custom_checkbox.checked:after {
  opacity: 1;
  transform: scale(1);
}
form button, form input[type=submit] {
  margin-top: 24px;
  background: transparent;
  border: 1px solid #3591cf;
  margin-bottom: 0 !important;
  color: #3591cf;
  float: right;
  height: 48px;
  line-height: 46px;
  padding: 0 24px;
  font-size: 1rem;
}
@media screen and (max-width: 1180px) {
  form button, form input[type=submit] {
    height: 42px;
    line-height: 42px;
    padding: 0 18px;
  }
}
@media screen and (max-width: 800px) {
  form button, form input[type=submit] {
    position: static !important;
    font-size: 0.9rem;
    height: 40px;
    line-height: 40px;
  }
}
form button:hover, form input[type=submit]:hover {
  color: #FFF;
  background: #3591cf;
}
@media screen and (max-width: 800px) {
  form button {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  form .column {
    padding-bottom: 12px !important;
  }
}
form .column li:last-child {
  margin-bottom: 0;
}
form .grecaptcha-badge {
  display: none;
}

.popup_form {
  z-index: 6666;
}

.popup_form, .form_container {
  width: 90%;
  width: 95vw;
  max-width: 1540px;
  display: block;
  margin: auto;
  max-width: 1400px;
  position: fixed;
  top: 50%;
  left: 50%;
  background: #FFF;
  padding: 50px 60px 70px;
  box-shadow: 2px 1px 13px 0px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: scroll;
  transition: opacity 600ms ease 0ms, visibility 0ms ease 600ms;
}
@media screen and (max-width: 800px) {
  .popup_form, .form_container {
    width: 90vw;
  }
}
.popup_form:after, .form_container:after {
  clear: both;
}
@media screen and (max-width: 1440px) {
  .popup_form, .form_container {
    padding: 30px 40px 50px;
  }
}
@media screen and (max-width: 1180px) {
  .popup_form, .form_container {
    width: 95vw;
    padding: 40px 5vw 50px;
  }
}
@media screen and (max-width: 800px) {
  .popup_form, .form_container {
    width: 100%;
  }
}
.popup_form.shown, .form_container.shown {
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms ease 0ms, visibility 0ms ease 0ms;
}
.popup_form p:not(.error):not(.success), .form_container p:not(.error):not(.success) {
  text-align: left !important;
}
.popup_form p.title, .form_container p.title {
  margin-bottom: 0.4em;
}
.popup_form p.title.success, .form_container p.title.success {
  text-align: center !important;
  margin-bottom: 0;
  position: static;
  background: none;
  color: #595958;
  font-size: 1.2rem;
}
.popup_form p.title.success .button, .form_container p.title.success .button {
  color: #FFF;
  margin-top: 30px;
  margin-bottom: 0;
}
.popup_form textarea, .form_container textarea {
  resize: none;
}
.popup_form.request_sample button, .popup_form.become_accredited button, .popup_form.request_callback button, .form_container.request_sample button, .form_container.become_accredited button, .form_container.request_callback button {
  position: absolute;
  bottom: 70px;
  left: 66.66%;
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .popup_form.request_sample button, .popup_form.become_accredited button, .popup_form.request_callback button, .form_container.request_sample button, .form_container.become_accredited button, .form_container.request_callback button {
    bottom: 50px;
  }
}
.popup_form.become_accredited textarea, .popup_form.request_callback textarea, .form_container.become_accredited textarea, .form_container.request_callback textarea {
  height: 238px;
}
@media screen and (max-width: 1440px) {
  .popup_form.become_accredited textarea, .popup_form.request_callback textarea, .form_container.become_accredited textarea, .form_container.request_callback textarea {
    height: 232px;
  }
}
@media screen and (max-width: 1180px) {
  .popup_form.become_accredited textarea, .popup_form.request_callback textarea, .form_container.become_accredited textarea, .form_container.request_callback textarea {
    height: 210px;
  }
}
.popup_form.request_callback, .popup_form.become_accredited, .form_container.request_callback, .form_container.become_accredited {
  max-width: 1100px;
}
.popup_form.request_callback button, .popup_form.become_accredited button, .form_container.request_callback button, .form_container.become_accredited button {
  left: 52.5%;
}
.popup_form.product_download, .popup_form.brochure_download, .form_container.product_download, .form_container.brochure_download {
  max-width: 700px;
}
.popup_form.product_download .column, .popup_form.brochure_download .column, .form_container.product_download .column, .form_container.brochure_download .column {
  width: 100%;
  float: left;
  clear: both;
}
.popup_form.brochure_download.success, .form_container.brochure_download.success {
  text-align: center;
}
.popup_form.quick_enquiry, .form_container.quick_enquiry {
  max-width: 960px;
}
.popup_form.quick_enquiry ol.column, .form_container.quick_enquiry ol.column {
  width: 47.5% !important;
  margin-right: 5% !important;
  margin-bottom: 0 !important;
}
.popup_form.quick_enquiry ol.column:nth-of-type(2), .form_container.quick_enquiry ol.column:nth-of-type(2) {
  margin-right: 0 !important;
}
@media screen and (max-width: 800px) {
  .popup_form.quick_enquiry ol.column, .form_container.quick_enquiry ol.column {
    width: 100% !important;
    margin-right: 0 !important;
  }
}
.popup_form.quick_enquiry button{
  position: absolute;
  bottom: 70px;
  left: 52.5%;
}

.form_container {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .form_container {
    max-height: none;
    overflow: visible;
    box-shadow: none;
    padding: 0;
  }
}

.toggle_password {
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../images/icons/visibility.svg);
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -99999px;
  opacity: 0.5;
  filter: grayscale(100%);
  cursor: pointer;
  transition: opacity 300ms ease, filter 300ms ease;
}
@media screen and (max-width: 1180px) {
  .toggle_password {
    height: 42px;
    width: 42px;
  }
}
@media screen and (max-width: 800px) {
  .toggle_password {
    height: 40px;
    width: 40px;
  }
}
.toggle_password.shown {
  background-image: url(../images/icons/visibility_off.svg);
}
.toggle_password:hover {
  opacity: 1;
  filter: grayscale(0%);
}

form#cpd_seminar .cpd_topic > label {
  display: inline-block;
}
form#cpd_seminar .cpd_topic label.custom_checkbox {
  margin-top: 0;
  padding-top: 12px;
  margin-bottom: 12px;
}

form#cpd_seminar label[for=privacy_policy_800] {
  margin-top: 0;
}

.content.wrapper .form_container ol.column {
  max-width: none;
  width: 47.5%;
  margin-right: 5%;
}

.content.wrapper .form_container ol.column + ol.column {
  margin-right: 0;
}

/*-------------------------------------------------------------------------COOKIE LAW
*/
#cookies {
  position: fixed;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 30px;
  z-index: 9999;
  display: none;
  width: 460px;
  box-shadow: 2px 1px 16px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1180px) {
  #cookies {
    background: rgba(255, 255, 255, 0.98);
    width: 360px;
    padding: 20px;
  }
}
@media screen and (max-width: 800px) {
  #cookies {
    padding: 20px 5vw;
    width: 100%;
  }
}
#cookies p {
  color: #595958;
  line-height: 1.4;
  font-size: 0.9rem;
  display: block;
}
@media screen and (max-width: 800px) {
  #cookies p {
    font-size: 0.8rem;
  }
}
#cookies p.title {
  font-size: 1.2rem;
  margin-bottom: 0.4em;
}
#cookies a {
  color: #3591cf;
  text-decoration: none;
}
#cookies a:not(.accept):hover {
  text-decoration: underline;
}
#cookies .accept:not(.close) {
  background: transparent;
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 0;
  border-radius: 50px;
  color: #3591cf;
  font-size: 0.9rem;
  line-height: 1.4;
  border: 1px solid #3591cf;
  transition: background 300ms ease, color 300ms ease;
}
@media screen and (max-width: 1180px) {
  #cookies .accept:not(.close) {
    padding: 10px 18px;
  }
}
#cookies .accept:not(.close):hover {
  background: #3591cf;
  color: #FFF;
}
#cookies .close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding-right: 30px;
  line-height: 22px;
  font-size: 1rem;
  color: #FFF;
  color: transparent;
}
#cookies .close span {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  display: inline-block;
}
#cookies .close span:after, #cookies .close span:before {
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #f91720;
  transform: rotate(45deg);
}
#cookies .close span:before {
  transform: rotate(-45deg);
}

.content {
  text-align: center;
}
.content * {
  text-align: left;
}
.content * * {
  text-align: inherit;
}
.content.center * {
  text-align: center;
}
.content h1, .content h2, .content h3, .content h4, .content p {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}
@media screen and (max-width: 1180px) {
  .content h1, .content h2, .content h3, .content h4, .content p {
    width: 100%;
    max-width: 620px;
  }
}
.content h1, .content h2 {
  color: #3591cf;
}
.content h2 {
  font-size: 1.8rem;
}
@media screen and (max-width: 1180px) {
  .content h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 800px) {
  .content h2 {
    font-size: 1.4rem;
  }
}
.content h3 {
  font-size: 1.3rem;
}
@media screen and (max-width: 800px) {
  .content h3 {
    line-height: 1.3;
  }
}
.content h4 {
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 0.6em;
  font-weight: 400;
  opacity: 0.75;
}
.content.wrapper {
  padding: 60px 5%;
}
@media screen and (max-width: 1440px) {
  .content.wrapper {
    padding: 40px 5%;
  }
}
@media screen and (max-width: 1180px) {
  .content.wrapper {
    padding: 40px 0;
  }
}
@media screen and (max-width: 800px) {
  .content.wrapper {
    padding: 30px 0;
  }
}
.content ul:not(.slick-dots), .content ol {
  margin-bottom: 1.8em;
  width: auto;
}
@media screen and (max-width: 800px) {
  .content ul:not(.slick-dots), .content ol {
    margin-bottom: 1.2em;
  }
}
.content ul:not(.slick-dots) li, .content ol li {
  font-size: 0.9rem;
  position: relative;
  line-height: 1.5;
  padding: 0.5em 0;
}
.content ul li:before {
  content: "";
  width: 1.1em;
  height: 1.1em;
  margin-right: 16px;
  display: inline-block;
  background: url(../images/icons/tick.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  top: 3px;
}
@media screen and (max-width: 1440px) {
  .content ul li:before {
    width: 1.25em;
    height: 1.25em;
  }
}
@media screen and (max-width: 1180px) {
  .content ul li:before {
    width: 1.1em;
    height: 1.1em;
    margin-right: 10px;
  }
}
.content ol {
  counter-reset: listCounter;
}
.content ol li {
  counter-increment: listCounter;
}
.content ol li:before {
  background: none;
  content: counter(listCounter) ".";
  color: #3591cf;
  font-size: 1.4rem;
  line-height: 1;
  margin-right: 10px;
  font-weight: 400;
}
.content a:not(.button):hover {
  text-decoration: underline;
}
.content.read_more {
  overflow: hidden;
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 0;
  transition: height 1000ms ease;
}
@media screen and (max-width: 1440px) {
  .content.read_more {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 800px) {
  .content.read_more {
    padding-bottom: 30px;
  }
}
.content.read_more:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  height: 40px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 50;
  transition: height 600ms ease;
}
.content.read_more button.toggle_read_more {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #3591cf;
  font-size: 0.9rem;
  font-weight: 400;
  z-index: 100;
}
@media screen and (max-width: 1180px) {
  .content.read_more button.toggle_read_more {
    font-size: 1rem;
  }
}
.content.read_more.trimmed:after {
  height: 100px;
}
@media screen and (max-width: 1440px) {
  .content.read_more.trimmed:after {
    height: 80px;
  }
}
.content.read_more.all_shown {
  padding-bottom: 0;
}
.content.read_more.all_shown:after {
  display: none;
}
.content video, .content iframe {
  width: 80%;
  margin-left: 10%;
  height: 660px;
  margin-bottom: 40px;
  margin-top: 16px;
}
@media screen and (max-width: 1440px) {
  .content video, .content iframe {
    height: 520px;
  }
}
@media screen and (max-width: 1180px) {
  .content video, .content iframe {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 800px) {
  .content video, .content iframe {
    height: 320px;
  }
}
.content .table_container {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .content .table_container {
    padding-bottom: 30px;
  }
  .content .table_container:after {
    width: 100%;
    height: 30px;
    display: inline-block;
    content: "";
    background-color: #FFF;
    background-image: url(../images/icons/swipe.svg);
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 999;
  }
}
.content .table_wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.content .table_wrapper table {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 800px) {
  .content .table_wrapper table th {
    position: sticky;
    top: 0;
  }
}
@media screen and (max-width: 800px) {
  .content .table_wrapper {
    overflow: scroll;
    max-height: 60vh;
    position: relative;
  }
}
.content table {
  width: 100% !important;
  height: auto;
  margin-top: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .content table {
    margin-top: 0;
    table-layout: fixed;
  }
}
.content table td, .content table th {
  padding: 14px 20px;
  font-size: 0.9rem;
  line-height: 1.3;
  vertical-align: middle;
}
.content table td.left, .content table th.left {
  text-align: left;
}
.content table td.right, .content table th.right {
  text-align: right;
}
@media screen and (max-width: 1180px) {
  .content table td, .content table th {
    font-size: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .content table td, .content table th {
    font-size: 0.8rem;
    padding: 12px 14px;
    overflow: scroll;
    width: 220px;
  }
  .content table td h3, .content table th h3 {
    font-size: 1.1rem;
  }
}
.content table td *:last-child, .content table th *:last-child {
  margin-bottom: 0 !important;
}
.content table th {
  font-weight: 700;
  color: #FFF;
  background: #3591cf;
  vertical-align: middle;
  white-space: nowrap;
}
.content table th * {
  color: inherit;
  font-weight: inherit;
}
@media screen and (max-width: 800px) {
  .content table th {
    font-size: 0.8rem;
  }
}
.content table tbody tr:nth-of-type(2n) td {
  background: #f8f8f8;
}
.content img {
  margin-top: 16px;
  margin-bottom: 40px;
  width: auto;
  max-width: 100%;
  height: auto;
}

.content td img{
  margin-top: 0;
  width: auto !important;
  max-width: 100% !important;
}

@media screen and (max-width: 1180px) {
  .content img {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 800px) {
  .content img {
    margin-bottom: 20px;
  }
}
.content > *:last-child {
  margin-bottom: 0 !important;
}
.content.wrapper ul, .content.wrapper ol {
  max-width: 740px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .content.wrapper ul, .content.wrapper ol {
    max-width: 660px;
  }
}
.content.page table {
  width: 80% !important;
  margin-left: 10%;
  max-width: 100%;
  table-layout: fixed;
}
@media screen and (max-width: 800px) {
  .content.page table {
    width: 100% !important;
    margin-left: 0;
  }
}
.content.page img {
  max-width: 1078px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  height: auto !important;
  display: inline-block;
  float: left;
  clear: both;
}
@media screen and (max-width: 1440px) {
  .content.page img {
    max-width: 75vw;
  }
}
@media screen and (max-width: 1180px) {
  .content.page img {
    max-width: 100%;
  }
}
.content.page img:after {
  content: "";
  clear: both;
  display: table;
  box-sizing: initial;
}
.content.page h1 img, .content.page h2 img, .content.page h3 img, .content.page h4 img, .content.page p img {
  margin-bottom: 16px;
}

.products_container {
  width: 100%;
  height: auto;
  display: inline-block;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .products_container {
    border-bottom: 1px solid #d9dada;
  }
}
@media screen and (min-width: 1180px) {
  .products_container:hover .product {
    opacity: 0.6;
  }
}
.products_container.slick:not(.home_membranes) .slick-arrow {
  top: 17.5vw;
  left: 1%;
  background-size: 16px;
  background-image: url(../images/icons/arrow_left_red.svg);
}
@media screen and (max-width: 1440px) {
  .products_container.slick:not(.home_membranes) .slick-arrow {
    background-size: 14px;
  }
}
@media screen and (max-width: 1180px) {
  .products_container.slick:not(.home_membranes) .slick-arrow {
    background-size: 10px;
    top: 16.5vw;
    left: 0;
  }
}
@media screen and (max-width: 800px) {
  .products_container.slick:not(.home_membranes) .slick-arrow {
    background-size: 12px;
    top: 69vw;
  }
}
.products_container.slick:not(.home_membranes) .slick-arrow.slick-next {
  left: auto;
  right: 1%;
  background-image: url(../images/icons/arrow_right_red.svg);
}
@media screen and (max-width: 1180px) {
  .products_container.slick:not(.home_membranes) .slick-arrow.slick-next {
    right: 0;
  }
}
.products_container .product {
  width: 33.33%;
  display: inline-block;
  float: left;
  border-right: 2px solid #FFF;
  border-left: 2px solid #FFF;
  transition: opacity 400ms ease;
}
.products_container .product:nth-of-type(3n + 1) {
  clear: left;
}
@media screen and (min-width: 800px) {
  .products_container .product.course:nth-last-of-type(1):not(:nth-of-type(3n)):not(:nth-of-type(3n + 2)) {
    margin-left: 33.33%;
  }
  .products_container .product.course:nth-last-of-type(2):not(:nth-of-type(3n + 2)) {
    margin-left: 16.665%;
  }
}
@media screen and (max-width: 800px) {
  .products_container .product {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.products_container .product:hover {
  opacity: 1;
}
.products_container .product .image_wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.products_container .product .image_wrapper img {
  width: 100%;
  height: auto;
  display: inline-block;
  float: left;
}
.products_container .product .image_wrapper .product_title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 16px 5%;
}
@media screen and (max-width: 1440px) {
  .products_container .product .image_wrapper .product_title {
    padding: 14px 5%;
  }
}
@media screen and (max-width: 1180px) {
  .products_container .product .image_wrapper .product_title {
    padding: 14px 10%;
  }
}
@media screen and (max-width: 800px) {
  .products_container .product .image_wrapper .product_title {
    padding: 18px 5%;
  }
}
.products_container .product .image_wrapper .product_title *:last-child {
  margin-bottom: 0;
}
.products_container .product .image_wrapper .product_title h2 {
  margin-bottom: 0.1em;
  font-size: 1.4rem;
}
@media screen and (max-width: 800px) {
  .products_container .product .image_wrapper .product_title h2 {
    font-size: 1.2rem;
  }
}
.products_container .product .image_wrapper .product_title h3 {
  font-size: 0.8rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .products_container .product .image_wrapper .product_title h3 {
    font-size: 0.9rem;
  }
}
.products_container .product .usps, .products_container .product .snippet {
  padding: 30px 5% 120px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .products_container .product .usps, .products_container .product .snippet {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1180px) {
  .products_container .product .usps, .products_container .product .snippet {
    padding-bottom: 90px;
    padding-top: 20px;
  }
}
.products_container .product .usps *, .products_container .product .snippet * {
  text-align: center;
}
.products_container .product .usps h1, .products_container .product .usps h2, .products_container .product .usps h3, .products_container .product .usps h4, .products_container .product .usps p, .products_container .product .snippet h1, .products_container .product .snippet h2, .products_container .product .snippet h3, .products_container .product .snippet h4, .products_container .product .snippet p {
  width: 100%;
}
.products_container .product .usps p:first-child, .products_container .product .snippet p:first-child {
  font-weight: 400;
  margin-bottom: 0.6em;
  font-size: 0.9rem;
}
.products_container .product .usps ul, .products_container .product .usps ol, .products_container .product .snippet ul, .products_container .product .snippet ol {
  padding: 0 2.5%;
  display: inline-block;
  margin-bottom: 1.1em;
}
.products_container .product .usps ul li, .products_container .product .usps ol li, .products_container .product .snippet ul li, .products_container .product .snippet ol li {
  padding: 0.7em 0;
  font-size: 0.8rem;
  border-bottom: 1px solid #d9dada;
}
.products_container .product .usps .button, .products_container .product .snippet .button {
  background: transparent;
  border: 1px solid #3591cf;
  color: #3591cf;
  margin-top: 20px;
  font-size: 0.9rem;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1440px) {
  .products_container .product .usps .button, .products_container .product .snippet .button {
    bottom: 40px;
  }
}
.products_container .product .usps .button:hover, .products_container .product .snippet .button:hover {
  background: #3591cf;
  color: #FFF;
}
.products_container .product .usps p {
  font-size: 0.9rem;
}
.products_container .product.evalon .product_title {
  background: transparent;
}
.products_container .product.evalon .product_title * {
  color: #FFF;
  position: relative;
  z-index: 1;
}
.products_container .product.evalon .product_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3591cf;
  opacity: 0.9;
  z-index: 0;
}
.products_container .product.evalon .usps p:first-child {
  color: #3591cf;
}
.products_container .product.evalon .usps ul li:before {
  background-image: url(../images/icons/tick_blue.svg);
}
.products_container .product.evalon .usps .button {
  border: 1px solid #3591cf;
  color: #3591cf;
}
.products_container .product.evalon .usps .button:hover {
  background: #3591cf;
  color: #FFF;
}
.products_container .product.evalastic .product_title {
  background: transparent;
}
.products_container .product.evalastic .product_title * {
  color: #FFF;
  position: relative;
  z-index: 1;
}
.products_container .product.evalastic .product_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #87AF0A;
  opacity: 0.9;
  z-index: 0;
}
.products_container .product.evalastic .usps p:first-child {
  color: #87AF0A;
}
.products_container .product.evalastic .usps ul li:before {
  background-image: url(../images/icons/tick_green.svg);
}
.products_container .product.evalastic .usps .button {
  border: 1px solid #87AF0A;
  color: #87AF0A;
}
.products_container .product.evalastic .usps .button:hover {
  background: #87AF0A;
  color: #FFF;
}
.products_container.slick:not(.slick-initialized) .product:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) {
  display: none;
}
.products_container.slick-initialized .product {
  clear: none;
}
.products_container.slick-initialized.home_membranes .product .image_wrapper .product_title {
  background: transparent;
}
.products_container.slick-initialized.home_membranes .product .image_wrapper .product_title * {
  color: #FFF;
  position: relative;
  z-index: 1;
}
.products_container.slick-initialized.home_membranes .product .image_wrapper .product_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3591cf;
  opacity: 0.9;
  z-index: 0;
}
.products_container.slick-initialized.home_membranes .product.evalon .product_title:before {
  background: #3591cf;
}
.products_container.slick-initialized.home_membranes .product.evalastic .product_title:before {
  background: #87AF0A;
}

.featured_case_studies, .overview_items {
  width: 100%;
  height: auto;
  padding-bottom: 60px;
}
@media screen and (max-width: 1440px) {
  .featured_case_studies, .overview_items {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1180px) {
  .featured_case_studies:hover .case_study, .featured_case_studies:hover .item, .overview_items:hover .case_study, .overview_items:hover .item {
    opacity: 0.6;
  }
}
@media screen and (max-width: 800px) {
  .featured_case_studies, .overview_items {
    padding-bottom: 30px;
  }
}
.featured_case_studies.slick, .overview_items.slick {
  position: relative;
  overflow: hidden;
}
.featured_case_studies.slick:not(.slick-initialized) .case_study:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)), .featured_case_studies.slick:not(.slick-initialized) .item:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)), .overview_items.slick:not(.slick-initialized) .case_study:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)), .overview_items.slick:not(.slick-initialized) .item:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) {
  display: none;
}
.featured_case_studies.slick .slick-arrow, .overview_items.slick .slick-arrow {
  top: 30%;
  left: 1%;
}
@media screen and (max-width: 1440px) {
  .featured_case_studies.slick .slick-arrow, .overview_items.slick .slick-arrow {
    top: 28%;
  }
}
@media screen and (max-width: 1180px) {
  .featured_case_studies.slick .slick-arrow, .overview_items.slick .slick-arrow {
    left: 0;
    top: 25%;
  }
}
.featured_case_studies.slick .slick-arrow.slick-next, .overview_items.slick .slick-arrow.slick-next {
  left: auto;
  right: 1%;
}
@media screen and (max-width: 1180px) {
  .featured_case_studies.slick .slick-arrow.slick-next, .overview_items.slick .slick-arrow.slick-next {
    right: 0;
  }
}
.featured_case_studies .case_study, .featured_case_studies .item, .overview_items .case_study, .overview_items .item {
  width: 33.33%;
  display: inline-block;
  float: left;
  border-right: 2px solid #FFF;
  border-left: 2px solid #FFF;
  text-align: center;
  transition: opacity 400ms ease;
  margin-bottom: 60px;
}
@media screen and (max-width: 1440px) {
  .featured_case_studies .case_study, .featured_case_studies .item, .overview_items .case_study, .overview_items .item {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 800px) {
  .featured_case_studies .case_study, .featured_case_studies .item, .overview_items .case_study, .overview_items .item {
    width: 100%;
  }
}
.featured_case_studies .case_study:nth-last-of-type(1), .featured_case_studies .case_study:nth-last-of-type(2), .featured_case_studies .case_study:nth-last-of-type(3), .featured_case_studies .item:nth-last-of-type(1), .featured_case_studies .item:nth-last-of-type(2), .featured_case_studies .item:nth-last-of-type(3), .overview_items .case_study:nth-last-of-type(1), .overview_items .case_study:nth-last-of-type(2), .overview_items .case_study:nth-last-of-type(3), .overview_items .item:nth-last-of-type(1), .overview_items .item:nth-last-of-type(2), .overview_items .item:nth-last-of-type(3) {
  margin-bottom: 0;
}
.featured_case_studies .case_study:hover, .featured_case_studies .item:hover, .overview_items .case_study:hover, .overview_items .item:hover {
  opacity: 1;
}
.featured_case_studies .case_study *, .featured_case_studies .item *, .overview_items .case_study *, .overview_items .item * {
  text-align: center;
}
.featured_case_studies .case_study img, .featured_case_studies .item img, .overview_items .case_study img, .overview_items .item img {
  margin-bottom: 30px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .featured_case_studies .case_study img, .featured_case_studies .item img, .overview_items .case_study img, .overview_items .item img {
    margin-bottom: 20px;
  }
}
.featured_case_studies .case_study .image_wrapper, .featured_case_studies .item .image_wrapper, .overview_items .case_study .image_wrapper, .overview_items .item .image_wrapper {
  text-decoration: none !important;
}
.featured_case_studies .case_study .item_title, .featured_case_studies .item .item_title, .overview_items .case_study .item_title, .overview_items .item .item_title {
  padding-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .featured_case_studies .case_study .item_title, .featured_case_studies .item .item_title, .overview_items .case_study .item_title, .overview_items .item .item_title {
    padding-bottom: 20px;
  }
}
.featured_case_studies .case_study .item_title *:last-child, .featured_case_studies .item .item_title *:last-child, .overview_items .case_study .item_title *:last-child, .overview_items .item .item_title *:last-child {
  margin-bottom: 0;
}
.featured_case_studies .case_study .item_title h2, .featured_case_studies .item .item_title h2, .overview_items .case_study .item_title h2, .overview_items .item .item_title h2 {
  color: #595958;
  margin-bottom: 0.1em;
  font-size: 1.4rem;
  width: 90%;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 1180px) {
  .featured_case_studies .case_study .item_title h2, .featured_case_studies .item .item_title h2, .overview_items .case_study .item_title h2, .overview_items .item .item_title h2 {
    width: 95%;
  }
}
.featured_case_studies .case_study .item_title h3, .featured_case_studies .case_study .item_title p, .featured_case_studies .item .item_title h3, .featured_case_studies .item .item_title p, .overview_items .case_study .item_title h3, .overview_items .case_study .item_title p, .overview_items .item .item_title h3, .overview_items .item .item_title p {
  font-size: 0.8rem;
  margin-bottom: 0;
  width: 90%;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 1440px) {
  .featured_case_studies .case_study .item_title h3, .featured_case_studies .case_study .item_title p, .featured_case_studies .item .item_title h3, .featured_case_studies .item .item_title p, .overview_items .case_study .item_title h3, .overview_items .case_study .item_title p, .overview_items .item .item_title h3, .overview_items .item .item_title p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1180px) {
  .featured_case_studies .case_study .item_title h3, .featured_case_studies .case_study .item_title p, .featured_case_studies .item .item_title h3, .featured_case_studies .item .item_title p, .overview_items .case_study .item_title h3, .overview_items .case_study .item_title p, .overview_items .item .item_title h3, .overview_items .item .item_title p {
    width: 95%;
  }
}
.featured_case_studies .case_study h2, .featured_case_studies .case_study h3, .featured_case_studies .case_study p, .featured_case_studies .item h2, .featured_case_studies .item h3, .featured_case_studies .item p, .overview_items .case_study h2, .overview_items .case_study h3, .overview_items .case_study p, .overview_items .item h2, .overview_items .item h3, .overview_items .item p {
  width: 90%;
}
@media screen and (max-width: 1180px) {
  .featured_case_studies .case_study h2, .featured_case_studies .case_study h3, .featured_case_studies .case_study p, .featured_case_studies .item h2, .featured_case_studies .item h3, .featured_case_studies .item p, .overview_items .case_study h2, .overview_items .case_study h3, .overview_items .case_study p, .overview_items .item h2, .overview_items .item h3, .overview_items .item p {
    width: 95%;
  }
}
.featured_case_studies .case_study .featured_products, .featured_case_studies .item .featured_products, .overview_items .case_study .featured_products, .overview_items .item .featured_products {
  font-size: 0.9rem;
}
@media screen and (max-width: 800px) {
  .featured_case_studies .case_study .featured_products, .featured_case_studies .item .featured_products, .overview_items .case_study .featured_products, .overview_items .item .featured_products {
    font-size: 0.8rem;
  }
}
.featured_case_studies .case_study h3 + .button, .featured_case_studies .item h3 + .button, .overview_items .case_study h3 + .button, .overview_items .item h3 + .button {
  margin-top: 10px;
}
.featured_case_studies.slick-initialized .case_study, .featured_case_studies.slick-initialized .item, .overview_items.slick-initialized .case_study, .overview_items.slick-initialized .item {
  margin-bottom: 0;
}

.social_share {
  width: 100%;
  display: inline-block;
  margin: auto;
  text-align: center;
  padding-top: 20px;
  position: relative;
}
.social_share:before {
  content: "";
  width: 200px;
  height: 1px;
  background: #d9dada;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.social_share p, .social_share button {
  display: inline-block;
  width: auto;
  margin: 0 8px;
  line-height: 26px;
  font-size: 0.9rem;
}
.social_share button {
  width: 26px;
  height: 26px;
  text-indent: -9999px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  filter: grayscale(100%);
  transition: opacity 300ms ease, filter 300ms ease;
}
.social_share button:hover {
  opacity: 1;
  filter: grayscale(0);
}
.social_share button.share_facebook {
  background-image: url(../images/icons/facebook.svg);
}
.social_share button.share_twitter {
  background-image: url(../images/icons/twitter.svg);
}
.social_share button.share_linked_in {
  background-image: url(../images/icons/linked_in.svg);
}

.content > .social_share:last-child {
  margin-top: 30px;
}

body {
  display: block !important;
}