/*---------------------------------------------------
LESS Elements 0.9
---------------------------------------------------
A set of useful LESS mixins
More info at: http://lesselements.com
---------------------------------------------------*/
@font-face {
  font-family: 'MaisonNeue';
  src: url('../fonts/MaisonNeueWEB-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MaisonNeue';
  src: url('../fonts/MaisonNeueWEB-Light.woff') format('woff');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'MaisonNeue';
  src: url('../fonts/MaisonNeueWEB-Demi.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
/* COLOURS */
/* FONTS STACKS */
/** Base Global Elements **/
html {
  touch-action: manipulation;
}
html,
body {
  font-family: 'MaisonNeue', Helvetica, arial, sans-serif;
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 200;
  color: #4B4F55;
  -webkit-font-smoothing: antialiased;
}
html.noScroll,
body.noScroll {
  overflow: hidden !important;
  height: 100% !important;
}
hr {
  margin: 0;
  border: none;
  border-bottom: solid 1px rgba(187, 192, 199, 0.5);
}
iframe {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}
/** Clears and Floats **/
.clear {
  clear: both;
}
.clearLeft {
  clear: left;
}
.clearRight {
  clear: right;
}
.floatLeft {
  float: left;
}
.floatRight {
  float: right;
}
.display-inline-block {
  display: inline-block;
}
.display-inline {
  display: inline;
}
/** Links **/
a {
  text-decoration: none;
  color: #2196F3;
  outline: none;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
a:hover {
  color: #333333;
  text-decoration: none;
}
a:focus {
  outline: none;
  text-decoration: none;
}
/** Lists **/
ul {
  margin: 0 0 15px 15px;
  padding: 0;
}
ul li {
  margin: 0 0 10px 0;
  padding: 0;
  /* For Custom Bullets */
  /*
    list-style: none;
    position: relative;
    &:before {
      content: "•";
      position: absolute;
      left: -15px;
      color: @blue;
    }
    */
}
/** Menu Lists **/
ul.menu {
  margin: 0;
  padding: 0;
}
ul.menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.menuVertical li {
  margin: 0 0 15px 0;
}
ul.menuVertical li:last {
  margin-bottom: 0;
}
ul.menuHorizontal li {
  float: left;
  margin: 0 15px 0 0;
}
ul.menuHorizontal li:last-child {
  margin-right: 0;
}
/** Page Wrappers **/
.pageWrapper {
  width: 100%;
  float: left;
  -webkit-transition: all 0.25s ease-in 0s;
  -moz-transition: all 0.25s ease-in 0s;
  -o-transition: all 0.25s ease-in 0s;
  transition: all 0.25s ease-in 0s;
}
.animated {
 /* opacity: 0; */
}
.animated.in {
  opacity: 1;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 5px !important;
}
.mt-2 {
  margin-top: 15px !important;
}
.mt-3 {
  margin-top: 15px !important;
}
.mt-4 {
  margin-top: 20px !important;
}
.mt-5 {
  margin-top: 25px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 5px !important;
}
.mb-2 {
  margin-bottom: 15px !important;
}
.mb-3 {
  margin-bottom: 15px !important;
}
.mb-4 {
  margin-bottom: 20px !important;
}
.mb-5 {
  margin-bottom: 25px !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 5px !important;
}
.ml-2 {
  margin-left: 15px !important;
}
.ml-3 {
  margin-left: 15px !important;
}
.ml-4 {
  margin-left: 20px !important;
}
.ml-5 {
  margin-left: 25px !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 5px !important;
}
.mr-2 {
  margin-right: 15px !important;
}
.mr-3 {
  margin-right: 15px !important;
}
.mr-4 {
  margin-right: 20px !important;
}
.mr-5 {
  margin-right: 25px !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 5px !important;
}
.pt-2 {
  padding-top: 15px !important;
}
.pt-3 {
  padding-top: 15px !important;
}
.pt-4 {
  padding-top: 20px !important;
}
.pt-5 {
  padding-top: 25px !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 5px !important;
}
.pb-2 {
  padding-bottom: 15px !important;
}
.pb-3 {
  padding-bottom: 15px !important;
}
.pb-4 {
  padding-bottom: 20px !important;
}
.pb-5 {
  padding-bottom: 25px !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pr-1 {
  padding-right: 5px !important;
}
.pr-2 {
  padding-right: 15px !important;
}
.pr-3 {
  padding-right: 15px !important;
}
.pr-4 {
  padding-right: 20px !important;
}
.pr-5 {
  padding-right: 25px !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pl-1 {
  padding-left: 5px !important;
}
.pl-2 {
  padding-left: 15px !important;
}
.pl-3 {
  padding-left: 15px !important;
}
.pl-4 {
  padding-left: 20px !important;
}
.pl-5 {
  padding-left: 25px !important;
}
@media only screen and (min-width: 768px) {
  .mt-0 {
    margin-top: 0 !important;
  }
  .mt-1 {
    margin-top: 10px !important;
  }
  .mt-2 {
    margin-top: 20px !important;
  }
  .mt-3 {
    margin-top: 30px !important;
  }
  .mt-4 {
    margin-top: 40px !important;
  }
  .mt-5 {
    margin-top: 50px !important;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .mb-1 {
    margin-bottom: 10px !important;
  }
  .mb-2 {
    margin-bottom: 20px !important;
  }
  .mb-3 {
    margin-bottom: 30px !important;
  }
  .mb-4 {
    margin-bottom: 40px !important;
  }
  .mb-5 {
    margin-bottom: 50px !important;
  }
  .ml-0 {
    margin-left: 0 !important;
  }
  .ml-1 {
    margin-left: 10px !important;
  }
  .ml-2 {
    margin-left: 20px !important;
  }
  .ml-3 {
    margin-left: 30px !important;
  }
  .ml-4 {
    margin-left: 40px !important;
  }
  .ml-5 {
    margin-left: 50px !important;
  }
  .mr-0 {
    margin-right: 0 !important;
  }
  .mr-1 {
    margin-right: 10px !important;
  }
  .mr-2 {
    margin-right: 20px !important;
  }
  .mr-3 {
    margin-right: 30px !important;
  }
  .mr-4 {
    margin-right: 40px !important;
  }
  .mr-5 {
    margin-right: 50px !important;
  }
  .pt-0 {
    padding-top: 0 !important;
  }
  .pt-1 {
    padding-top: 10px !important;
  }
  .pt-2 {
    padding-top: 20px !important;
  }
  .pt-3 {
    padding-top: 30px !important;
  }
  .pt-4 {
    padding-top: 40px !important;
  }
  .pt-5 {
    padding-top: 50px !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pb-1 {
    padding-bottom: 10px !important;
  }
  .pb-2 {
    padding-bottom: 20px !important;
  }
  .pb-3 {
    padding-bottom: 30px !important;
  }
  .pb-4 {
    padding-bottom: 40px !important;
  }
  .pb-5 {
    padding-bottom: 50px !important;
  }
  .pr-0 {
    padding-right: 0 !important;
  }
  .pr-1 {
    padding-right: 10px !important;
  }
  .pr-2 {
    padding-right: 20px !important;
  }
  .pr-3 {
    padding-right: 30px !important;
  }
  .pr-4 {
    padding-right: 40px !important;
  }
  .pr-5 {
    padding-right: 50px !important;
  }
  .pl-0 {
    padding-left: 0 !important;
  }
  .pl-1 {
    padding-left: 10px !important;
  }
  .pl-2 {
    padding-left: 20px !important;
  }
  .pl-3 {
    padding-left: 30px !important;
  }
  .pl-4 {
    padding-left: 40px !important;
  }
  .pl-5 {
    padding-left: 50px !important;
  }
}
.col-5 {
  width: 20%;
}
.container {
  max-width: 1170px;
}
@media only screen and (min-width: 768px) {
  .container {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .container-fluid {
    max-width: calc((100% - 50px));
  }
  section .sectionInnerWrapper {
    max-width: calc((100% - 100px));
  }
}
@media only screen and (min-width: 1800px) {
  .container-fluid {
    max-width: 1640px;
  }
  section .sectionInnerWrapper {
    max-width: 1800px;
  }
}
.container,
.container-fluid {
  padding-right: 30px;
  padding-left: 30px;
}
@media only screen and (min-width: 768px) {
  .col-xs-1,
  .col-sm-1,
  .col-md-1,
  .col-lg-1,
  .col-xs-2,
  .col-sm-2,
  .col-md-2,
  .col-lg-2,
  .col-xs-3,
  .col-sm-3,
  .col-md-3,
  .col-lg-3,
  .col-xs-4,
  .col-sm-4,
  .col-md-4,
  .col-lg-4,
  .col-xs-5,
  .col-sm-5,
  .col-md-5,
  .col-lg-5,
  .col-xs-6,
  .col-sm-6,
  .col-md-6,
  .col-lg-6,
  .col-xs-7,
  .col-sm-7,
  .col-md-7,
  .col-lg-7,
  .col-xs-8,
  .col-sm-8,
  .col-md-8,
  .col-lg-8,
  .col-xs-9,
  .col-sm-9,
  .col-md-9,
  .col-lg-9,
  .col-xs-10,
  .col-sm-10,
  .col-md-10,
  .col-lg-10,
  .col-xs-11,
  .col-sm-11,
  .col-md-11,
  .col-lg-11,
  .col-xs-12,
  .col-sm-12,
  .col-md-12,
  .col-lg-12 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .container,
  .container-fluid {
    padding-right: 20px;
    padding-left: 20px;
  }
  .row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .row.rowMobileFullWidth {
    margin-left: -45px;
    margin-right: -45px;
  }
  .row.rowMobileFullWidth .rowMobileNoMargin {
    margin: 0;
  }
  .row.rowMobileFullWidthRight {
    margin-right: -45px;
  }
  .row.rowMobileFullWidthLeft {
    margin-left: -45px;
  }
}
@media only screen and (min-width: 768px) {
  .rowFlex {
    display: flex;
    flex-wrap: wrap;
  }
  .rowFlex.text-center {
    justify-content: center;
  }
  .rowFlex:before,
  .rowFlex:after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .rowFlex.reverse-mobile {
    flex-direction: column-reverse;
  }
}
html,
body {
  font-family: 'MaisonNeue', Helvetica, arial, sans-serif;
  font-size: 4.2vw;
  font-weight: 300;
  line-height: 1.3em;
  color: #000;
}
p {
  margin: 0 0 15px 0;
}
b,
strong {
  font-weight: bold;
}
.lead {
  font-size: 4.2vw;
  line-height: 1.3em;
}
.lead p {
  font-size: 4.2vw;
  line-height: 1.3em;
}
small,
.small {
  font-size: 15px;
}
.text-black {
  color: #000 !important;
}
.text-white {
  color: #FFF !important;
}
.text-grey {
  color: #999999 !important;
}
.text-greyLight {
  color: #EBEBEB !important;
}
.text-greyMedium {
  color: #707070 !important;
}
.text-greyDark {
  color: #333333 !important;
}
.text-charcoal {
  color: #4B4F55 !important;
}
.text-aqua {
  color: #7DFDFF !important;
}
.text-blueLight {
  color: #BBC0C7 !important;
}
.text-blueDark {
  color: #001F38 !important;
}
.font-weight-normal {
  font-weight: normal !important;
}
.font-weight-light {
  font-weight: 300 !important;
}
.font-weight-medium {
  font-weight: 400 !important;
}
.font-weight-bold {
  font-weight: 500 !important;
}
.font-weight-heavy {
  font-weight: 700 !important;
}
/** Headings **/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'MaisonNeue', Helvetica, arial, sans-serif;
  font-weight: 200;
  margin: 0 0 15px 0;
  line-height: 1.2em;
  color: #707070;
}
h1,
.h1 {
  font-size: 8vw;
  line-height: 1.2em;
}
h1.large,
.h1.large {
  font-size: 18vw;
}
h2,
.h2 {
  font-size: 5.8vw;
}
h3,
.h3 {
  font-size: 5vw;
}
h4,
.h4 {
  font-size: 5.2vw;
  margin-bottom: 0;
}
h5,
.h5 {
  font-size: 4vw;
  margin-bottom: 0;
}
h6,
.h6 {
  font-size: 12px;
}
@media only screen and (min-width: 768px) {
  html,
  body {
    font-size: 1.4vw;
    line-height: 1.4em;
  }
  small,
  .small {
    font-size: 15px;
  }
  h1,
  .h1 {
    font-size: 2.7vw;
    line-height: 1.2em;
    letter-spacing: 1px;
  }
  h2,
  .h2 {
    font-size: 2vw;
    line-height: 1.2em;
    letter-spacing: 0.8px;
  }
  h3,
  .h3 {
    font-size: 1.5vw;
    line-height: 1.2em;
    letter-spacing: 0.5px;
  }
  h4,
  .h4 {
    font-size: 1.4vw;
    line-height: 1.2em;
    margin-bottom: 5px;
  }
  h5,
  .h5 {
    font-size: 1.6vw;
    line-height: 1.2em;
    margin-bottom: 5px;
  }
  .lead {
    font-size: 1.3vw;
    line-height: 1.3em;
  }
  .lead p {
    font-size: 1.3vw;
    line-height: 1.3em;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 992px) {
  html,
  body {
    font-size: 1.2vw;
    line-height: 1.4em;
  }
}
@media only screen and (min-width: 1400px) {
  html,
  body {
    font-size: 1vw;
    line-height: 1.3em;
  }
}
@media only screen and (min-width: 2000px) {
  html,
  body {
    font-size: 18px;
    line-height: 23px;
  }
  h1,
  .h1 {
    font-size: 55px;
    line-height: 60px;
  }
  h2,
  .h2 {
    font-size: 40px;
    line-height: 45px;
  }
  h3,
  .h3 {
    font-size: 30px;
    line-height: 35px;
  }
  h4,
  .h4 {
    font-size: 25px;
    line-height: 30px;
  }
  small,
  .small {
    font-size: 15px;
  }
  .lead {
    font-size: 25px;
    line-height: 1.3em;
  }
  .lead p {
    font-size: 25px;
    line-height: 1.3em;
  }
}
input[type="submit"]:not(.vjs-button),
input[type="button"]:not(.vjs-button),
button:not(.vjs-button),
.button:not(.vjs-button),
.btn:not(.vjs-button),
a.button:not(.vjs-button),
a.btn:not(.vjs-button),
.btn-cta a:not(.vjs-button),
input[type="submit"]:not(.fancybox-button),
input[type="button"]:not(.fancybox-button),
button:not(.fancybox-button),
.button:not(.fancybox-button),
.btn:not(.fancybox-button),
a.button:not(.fancybox-button),
a.btn:not(.fancybox-button),
.btn-cta a:not(.fancybox-button) {
  width: auto;
  min-width: 180px;
  height: 56px;
  line-height: 56px;
  max-width: none;
  display: inline-block;
  padding: 0 20px;
  margin: 0 auto;
  background: none;
  color: #4B4F55;
  font-family: 'MaisonNeue', Helvetica, arial, sans-serif;
  text-transform: none;
  border: solid 1px #4B4F55;
  outline: none;
  box-shadow: none !important;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
input[type="submit"]:not(.vjs-button):hover,
input[type="button"]:not(.vjs-button):hover,
button:not(.vjs-button):hover,
.button:not(.vjs-button):hover,
.btn:not(.vjs-button):hover,
a.button:not(.vjs-button):hover,
a.btn:not(.vjs-button):hover,
.btn-cta a:not(.vjs-button):hover,
input[type="submit"]:not(.fancybox-button):hover,
input[type="button"]:not(.fancybox-button):hover,
button:not(.fancybox-button):hover,
.button:not(.fancybox-button):hover,
.btn:not(.fancybox-button):hover,
a.button:not(.fancybox-button):hover,
a.btn:not(.fancybox-button):hover,
.btn-cta a:not(.fancybox-button):hover {
  background: #4B4F55;
  color: #FFF;
}
input[type="submit"]:not(.vjs-button):focus,
input[type="button"]:not(.vjs-button):focus,
button:not(.vjs-button):focus,
.button:not(.vjs-button):focus,
.btn:not(.vjs-button):focus,
a.button:not(.vjs-button):focus,
a.btn:not(.vjs-button):focus,
.btn-cta a:not(.vjs-button):focus,
input[type="submit"]:not(.fancybox-button):focus,
input[type="button"]:not(.fancybox-button):focus,
button:not(.fancybox-button):focus,
.button:not(.fancybox-button):focus,
.btn:not(.fancybox-button):focus,
a.button:not(.fancybox-button):focus,
a.btn:not(.fancybox-button):focus,
.btn-cta a:not(.fancybox-button):focus {
  background: #4B4F55;
  color: #FFF;
  outline: none !important;
  outline-offset: -2px;
  box-shadow: none;
}
input[type="submit"]:not(.vjs-button).btn-primary,
input[type="button"]:not(.vjs-button).btn-primary,
button:not(.vjs-button).btn-primary,
.button:not(.vjs-button).btn-primary,
.btn:not(.vjs-button).btn-primary,
a.button:not(.vjs-button).btn-primary,
a.btn:not(.vjs-button).btn-primary,
.btn-cta a:not(.vjs-button).btn-primary,
input[type="submit"]:not(.fancybox-button).btn-primary,
input[type="button"]:not(.fancybox-button).btn-primary,
button:not(.fancybox-button).btn-primary,
.button:not(.fancybox-button).btn-primary,
.btn:not(.fancybox-button).btn-primary,
a.button:not(.fancybox-button).btn-primary,
a.btn:not(.fancybox-button).btn-primary,
.btn-cta a:not(.fancybox-button).btn-primary {
  border-color: #4B4F55;
  color: #4B4F55;
}
input[type="submit"]:not(.vjs-button).btn-primary:hover,
input[type="button"]:not(.vjs-button).btn-primary:hover,
button:not(.vjs-button).btn-primary:hover,
.button:not(.vjs-button).btn-primary:hover,
.btn:not(.vjs-button).btn-primary:hover,
a.button:not(.vjs-button).btn-primary:hover,
a.btn:not(.vjs-button).btn-primary:hover,
.btn-cta a:not(.vjs-button).btn-primary:hover,
input[type="submit"]:not(.fancybox-button).btn-primary:hover,
input[type="button"]:not(.fancybox-button).btn-primary:hover,
button:not(.fancybox-button).btn-primary:hover,
.button:not(.fancybox-button).btn-primary:hover,
.btn:not(.fancybox-button).btn-primary:hover,
a.button:not(.fancybox-button).btn-primary:hover,
a.btn:not(.fancybox-button).btn-primary:hover,
.btn-cta a:not(.fancybox-button).btn-primary:hover {
  background: #4B4F55;
  color: #FFF;
}
input[type="submit"]:not(.vjs-button).btn-primary:focus,
input[type="button"]:not(.vjs-button).btn-primary:focus,
button:not(.vjs-button).btn-primary:focus,
.button:not(.vjs-button).btn-primary:focus,
.btn:not(.vjs-button).btn-primary:focus,
a.button:not(.vjs-button).btn-primary:focus,
a.btn:not(.vjs-button).btn-primary:focus,
.btn-cta a:not(.vjs-button).btn-primary:focus,
input[type="submit"]:not(.fancybox-button).btn-primary:focus,
input[type="button"]:not(.fancybox-button).btn-primary:focus,
button:not(.fancybox-button).btn-primary:focus,
.button:not(.fancybox-button).btn-primary:focus,
.btn:not(.fancybox-button).btn-primary:focus,
a.button:not(.fancybox-button).btn-primary:focus,
a.btn:not(.fancybox-button).btn-primary:focus,
.btn-cta a:not(.fancybox-button).btn-primary:focus {
  background: #4B4F55;
  color: #FFF;
}
input[type="submit"]:not(.vjs-button).btn-secondary,
input[type="button"]:not(.vjs-button).btn-secondary,
button:not(.vjs-button).btn-secondary,
.button:not(.vjs-button).btn-secondary,
.btn:not(.vjs-button).btn-secondary,
a.button:not(.vjs-button).btn-secondary,
a.btn:not(.vjs-button).btn-secondary,
.btn-cta a:not(.vjs-button).btn-secondary,
input[type="submit"]:not(.fancybox-button).btn-secondary,
input[type="button"]:not(.fancybox-button).btn-secondary,
button:not(.fancybox-button).btn-secondary,
.button:not(.fancybox-button).btn-secondary,
.btn:not(.fancybox-button).btn-secondary,
a.button:not(.fancybox-button).btn-secondary,
a.btn:not(.fancybox-button).btn-secondary,
.btn-cta a:not(.fancybox-button).btn-secondary {
  background: #707070;
  color: #FFF;
}
input[type="submit"]:not(.vjs-button).btn-secondary:hover,
input[type="button"]:not(.vjs-button).btn-secondary:hover,
button:not(.vjs-button).btn-secondary:hover,
.button:not(.vjs-button).btn-secondary:hover,
.btn:not(.vjs-button).btn-secondary:hover,
a.button:not(.vjs-button).btn-secondary:hover,
a.btn:not(.vjs-button).btn-secondary:hover,
.btn-cta a:not(.vjs-button).btn-secondary:hover,
input[type="submit"]:not(.fancybox-button).btn-secondary:hover,
input[type="button"]:not(.fancybox-button).btn-secondary:hover,
button:not(.fancybox-button).btn-secondary:hover,
.button:not(.fancybox-button).btn-secondary:hover,
.btn:not(.fancybox-button).btn-secondary:hover,
a.button:not(.fancybox-button).btn-secondary:hover,
a.btn:not(.fancybox-button).btn-secondary:hover,
.btn-cta a:not(.fancybox-button).btn-secondary:hover {
  background: #4CAF50;
  color: #FFF;
}
input[type="submit"]:not(.vjs-button).btn-secondary:focus,
input[type="button"]:not(.vjs-button).btn-secondary:focus,
button:not(.vjs-button).btn-secondary:focus,
.button:not(.vjs-button).btn-secondary:focus,
.btn:not(.vjs-button).btn-secondary:focus,
a.button:not(.vjs-button).btn-secondary:focus,
a.btn:not(.vjs-button).btn-secondary:focus,
.btn-cta a:not(.vjs-button).btn-secondary:focus,
input[type="submit"]:not(.fancybox-button).btn-secondary:focus,
input[type="button"]:not(.fancybox-button).btn-secondary:focus,
button:not(.fancybox-button).btn-secondary:focus,
.button:not(.fancybox-button).btn-secondary:focus,
.btn:not(.fancybox-button).btn-secondary:focus,
a.button:not(.fancybox-button).btn-secondary:focus,
a.btn:not(.fancybox-button).btn-secondary:focus,
.btn-cta a:not(.fancybox-button).btn-secondary:focus {
  background: #4CAF50;
  color: #FFF;
}
input[type="submit"]:not(.vjs-button).btn-xsmall,
input[type="button"]:not(.vjs-button).btn-xsmall,
button:not(.vjs-button).btn-xsmall,
.button:not(.vjs-button).btn-xsmall,
.btn:not(.vjs-button).btn-xsmall,
a.button:not(.vjs-button).btn-xsmall,
a.btn:not(.vjs-button).btn-xsmall,
.btn-cta a:not(.vjs-button).btn-xsmall,
input[type="submit"]:not(.fancybox-button).btn-xsmall,
input[type="button"]:not(.fancybox-button).btn-xsmall,
button:not(.fancybox-button).btn-xsmall,
.button:not(.fancybox-button).btn-xsmall,
.btn:not(.fancybox-button).btn-xsmall,
a.button:not(.fancybox-button).btn-xsmall,
a.btn:not(.fancybox-button).btn-xsmall,
.btn-cta a:not(.fancybox-button).btn-xsmall {
  height: 32px;
  line-height: 30px;
  min-width: 0;
}
@media only screen and (min-width: 768px) {
  input[type="submit"]:not(.vjs-button),
  input[type="button"]:not(.vjs-button),
  button:not(.vjs-button),
  .button:not(.vjs-button),
  .btn:not(.vjs-button),
  a.button:not(.vjs-button),
  a.btn:not(.vjs-button),
  input[type="submit"]:not(.fancybox-button),
  input[type="button"]:not(.fancybox-button),
  button:not(.fancybox-button),
  .button:not(.fancybox-button),
  .btn:not(.fancybox-button),
  a.button:not(.fancybox-button),
  a.btn:not(.fancybox-button) {
    width: auto;
    max-width: none;
    min-width: 180px;
    height: 56px;
    line-height: 56px;
  }
  input[type="submit"].btn-small,
  input[type="button"].btn-small,
  button.btn-small,
  .button.btn-small,
  .btn.btn-small,
  a.button.btn-small,
  a.btn.btn-small {
    height: 44px;
    line-height: 44px;
  }
  input[type="submit"].btn-xsmall,
  input[type="button"].btn-xsmall,
  button.btn-xsmall,
  .button.btn-xsmall,
  .btn.btn-xsmall,
  a.button.btn-xsmall,
  a.btn.btn-xsmall {
    min-width: 0;
  }
}
.btn-download span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.btn-download .ion {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  border: solid 1px #4B4F55;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.btn-text:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #7DFDFF;
  vertical-align: middle;
  margin-left: 15px;
}
@media only screen and (max-width: 767px) {
  .btn-text {
    font-size: 3.5vw;
  }
}
@media only screen and (min-width: 768px) {
  .btn-text .btn-text:after {
    width: 100px;
    margin-left: 25px;
  }
}
button.fancybox-button {
  font-size: 40px;
  color: #7DFDFF !important;
  border: none !important;
  background: none !important;
}
/** Forms **/
form {
  width: 100%;
  margin: 0;
  padding: 0;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="phone"],
input[type="number"],
input[type="tel"],
textarea {
  width: 100%;
  height: 40px;
  padding: 0;
  font-family: 'MaisonNeue', Helvetica, arial, sans-serif;
  font-weight: normal;
  font-size: 15px;
  color: #4B4F55;
  border: none;
  border-bottom: solid 1px #4B4F55;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
textarea {
  min-height: 100px;
  padding: 10px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
input,
textarea {
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.btn.btnClear {
  width: 40px;
  line-height: 42px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 18px;
  color: #EBEBEB;
  position: absolute;
  top: 0px;
  right: 0px;
}
.ginput_container_select {
  width: 100%;
  height: 40px;
  font-family: 'MaisonNeue', Helvetica, arial, sans-serif;
  position: relative;
  border: none;
  border-bottom: solid 1px #4B4F55;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
.ginput_container_select select {
  width: 100%;
  height: 100%;
  padding: 0 20px 0 0;
  border: none;
  box-shadow: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
.ginput_container_select select option:first-of-type {
  opacity: 0.5;
}
.ginput_container_select:before {
  content: "\f3d0";
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  margin-top: -3px;
  font-family: 'Ionicons';
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
input[type=radio],
input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 1px solid #4B4F55;
  background: none;
  display: inline-block;
  position: relative;
  margin: 0 10px 0 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: none;
}
input[type=checkbox]:checked:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-family: "Ionicons";
  content: "\f122";
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
}
input[type=radio] {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
input[type=radio]:checked:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #333333;
  border: solid 3px #FFF;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ginput_container_consent input {
  float: left;
}
.ginput_container_consent label {
  width: auto;
  overflow: hidden;
  display: block;
}
.ginput_container_fileupload .gform_drop_area {
  width: 100%;
  float: left;
  margin: 0 0 15px 0;
  padding: 20px;
  text-align: center;
  border: dashed 2px #EBEBEB;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
.ginput_container_fileupload .gform_drop_area .gform_drop_instructions {
  width: 100%;
  float: left;
  text-align: center;
  display: block;
  margin: 0 0 10px 0;
}
.ginput_container_fileupload .gform_drop_area .gform_drop_instructions input[type="button"] {
  margin: 0 auto;
  float: none;
}
.ginput_container_fileupload #extensions_message {
  font-size: 12px;
}
label {
  margin: 0 0 20px 0;
  font-weight: 200;
}
label.labelIcon {
  width: 40px;
  height: 40px;
  margin: 0;
  line-height: 40px;
  text-align: center;
  font-size: 24px;
  display: block;
  color: #707070;
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 3;
}
label.checkBoxLabel {
  font-weight: normal;
}
/** Form Validation **/
.gfield_error input[type="text"],
.gfield_error input[type="email"],
.gfield_error input[type="number"],
.gfield_error input[type="password"],
.gfield_error input[type="phone"],
.gfield_error input[type="number"],
.gfield_error input[type="tel"],
.gfield_error input[type=radio],
.gfield_error input[type=checkbox],
.gfield_error textarea,
.gfield_error .ginput_container_select {
  border: solid 1px #FF0000;
}
.gfield_error .gform_drop_area {
  border: dashed 2px #FF0000;
}
.gfield_error .ginput_container_select:before {
  color: #FF0000;
}
.gfield_error .validation_message {
  color: #FF0000;
  margin: 5px 0 0 0;
  font-size: 12px;
  font-weight: normal;
}
/** Global Validation Message **/
.validation_error {
  padding: 15px;
  margin: 0 0 15px 0;
  text-align: center;
  color: #FF0000;
}
/** Form Wrapper **/
/** Styled specifically for Gravity Forms class structure **/
.gform_wrapper {
  width: 100%;
  margin: 0 auto;
}
.gform_wrapper form {
  float: left;
}
.gform_wrapper.noLabels_wrapper .gfield_label {
  display: none;
}
.gform_wrapper .checkBoxGroup .gfield_label {
  display: inline-block;
}
ul.gform_fields {
  margin: 0 -20px;
  padding: 0;
}
ul.gform_fields li {
  list-style: none;
  margin: 0 0 30px 0;
}
ul.gform_fields li .ginput_container {
  position: relative;
}
ul.gform_fields li .ginput_container .ginput_counter {
  display: none;
}
ul.gform_fields li.hidden_label > label {
  display: none;
}
ul.gform_fields li.dateOfBirthLabel {
  margin: 0;
}
ul.gform_fields li:before {
  display: none;
}
@media only screen and (min-width: 768px) {
  ul.gform_fields li {
    margin: 0 0 60px 0;
  }
  ul.gform_fields li:nth-child(even) {
    padding-left: 60px;
  }
  ul.gform_fields li:nth-child(odd) {
    padding-right: 60px;
  }
}
ul.gfield_checkbox,
ul.gfield_radio {
  margin: 0;
  padding: 0;
}
ul.gfield_checkbox li,
ul.gfield_radio li {
  margin: 0 0 10px 0;
}
ul.gfield_checkbox li input,
ul.gfield_radio li input {
  float: left;
}
ul.gfield_checkbox li label,
ul.gfield_radio li label {
  margin: 0;
  overflow: auto;
  line-height: 1.5em;
  display: block;
  font-weight: normal;
}
/* The switch - the box around the slider */
/* Hide default HTML checkbox */
.checkboxSwitch {
  overflow: hidden;
}
.checkboxSwitch .ginput_container {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.checkboxSwitch .ginput_container input {
  display: none;
}
.checkboxSwitch .ginput_container input:checked + .slider {
  background-color: #4CAF50;
}
.checkboxSwitch .ginput_container input:focus + .slider {
  box-shadow: 0 0 1px #4CAF50;
}
.checkboxSwitch .ginput_container input:checked + .slider:before {
  transform: translateX(26px);
}
.checkboxSwitch .ginput_container .gfield_label {
  width: 500px;
  max-width: none;
  float: none;
  padding-left: 75px;
  position: relative;
  z-index: 3;
  line-height: 34px;
}
.checkboxSwitch .ginput_container .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #EBEBEB;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  border-radius: 34px;
}
.checkboxSwitch .ginput_container .slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 2px;
  bottom: 2px;
  background: #FFF;
  z-index: 2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
/** Specific Gravity Form Classes **/
.gform_heading,
.gform_body,
.gform_footer {
  width: 100%;
  float: left;
  position: relative;
  z-index: 1;
}
.gform_footer {
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 2;
}
.gform_footer input[type="submit"] {
  margin: 0 auto;
  float: none;
  min-width: 120px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .gform_footer {
    width: 50%;
    float: right;
    margin-top: -80px;
    padding: 0;
    text-align: right;
  }
  .gform_footer input[type="submit"] {
    width: 50%;
  }
}
.dark input[type="text"],
.dark input[type="email"],
.dark input[type="number"],
.dark input[type="password"],
.dark input[type="phone"],
.dark input[type="number"],
.dark input[type="tel"],
.dark textarea,
.dark input[type=radio],
.dark input[type=checkbox],
.dark .ginput_container_select {
  border-color: rgba(255, 255, 255, 0.5);
}
.dark ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #FFF;
  opacity: 0.5;
  font-weight: normal;
}
.dark ::-moz-placeholder {
  /* Firefox 19+ */
  color: #FFF;
  opacity: 0.5;
  font-weight: normal;
}
.dark :-ms-input-placeholder {
  /* IE 10+ */
  color: #FFF;
  opacity: 0.5;
  font-weight: normal;
}
.dark :-moz-placeholder {
  /* Firefox 18- */
  color: #FFF;
  opacity: 0.5;
  font-weight: normal;
}
.light input[type="text"],
.light input[type="email"],
.light input[type="number"],
.light input[type="password"],
.light input[type="phone"],
.light input[type="number"],
.light input[type="tel"],
.light textarea,
.light input[type=radio],
.light input[type=checkbox],
.light .ginput_container_select {
  border-color: #4B4F55;
}
.light ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #4B4F55;
  opacity: 0.5;
  font-weight: 200;
}
.light ::-moz-placeholder {
  /* Firefox 19+ */
  color: #4B4F55;
  opacity: 0.5;
  font-weight: 200;
}
.light :-ms-input-placeholder {
  /* IE 10+ */
  color: #4B4F55;
  opacity: 0.5;
  font-weight: 200;
}
.light :-moz-placeholder {
  /* Firefox 18- */
  color: #4B4F55;
  opacity: 0.5;
  font-weight: 200;
}
/* WEBSITE HEADER & NAVIGATION STYLES */
/** Fixed Header Padding Compensation **/
body.menuOpen {
  overflow: hidden;
}
/** START Main Navigation Styles **/
header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
header .container-fluid {
  max-width: none;
}
nav {
  width: 100%;
  height: 67px;
  margin: 0;
  padding: 20px 0;
  font-family: 'MaisonNeue', Helvetica, arial, sans-serif;
  position: fixed;
  z-index: 10;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
nav .col {
  position: static;
}
nav .logo {
  margin: 0;
  float: left;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
nav .logo svg {
  width: 125px;
  height: 27px;
  float: left;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
nav ul.menuMain {
  width: 100%;
  height: 0;
  padding: 0 15px;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
  -webkit-transition: all 0.5s ease-in 0s;
  -moz-transition: all 0.5s ease-in 0s;
  -o-transition: all 0.5s ease-in 0s;
  transition: all 0.5s ease-in 0s;
}
nav ul.menuMain li {
  width: 100%;
  height: auto;
  padding: 5% 0;
  display: block;
  margin: 0;
}
nav ul.menuMain li a {
  width: 100%;
  height: 100%;
  color: #FFF;
  display: block;
  vertical-align: middle;
}
nav ul.menuMain li .ion {
  width: 25px;
  font-size: 18px;
  float: left;
  text-align: center;
}
nav ul.menuMain li.active > a,
nav ul.menuMain li.current-menu-item > a,
nav ul.menuMain li.current_page_item > a {
  font-weight: bold;
}
nav ul.sub-menu {
  font-size: 16px;
  padding: 0;
  margin: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
nav ul.sub-menu li {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}
nav ul.sub-menu li a {
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  color: #FFF;
}
/** END Main Navigation Styles **/
/** START Mobile Navigation Drop-down Style **/
@media only screen and (max-width: 767px) {
  nav.navDropdown {
    overflow: hidden;
    -webkit-transition: all 0.35s ease-in 0s;
    -moz-transition: all 0.35s ease-in 0s;
    -o-transition: all 0.35s ease-in 0s;
    transition: all 0.35s ease-in 0s;
  }
  nav.navDropdown ul.menuMain {
    height: 100%;
    max-height: 0;
    opacity: 0;
    font-size: 6.5vw;
    line-height: 1.2em;
    -webkit-transition: all 0.35s ease-in 0s;
    -moz-transition: all 0.35s ease-in 0s;
    -o-transition: all 0.35s ease-in 0s;
    transition: all 0.35s ease-in 0s;
  }
  nav.navDropdown ul.menuMain li a {
    display: inline-block;
    width: auto;
    position: relative;
  }
  nav.navDropdown ul.menuMain li.menu-item-has-children {
    position: relative;
  }
  nav.navDropdown ul.menuMain li.menu-item-has-children .arrowToggle {
    width: 50px;
    height: 59px;
    display: block;
    position: absolute;
    right: -15px;
    top: 0;
    z-index: 1;
  }
  nav.navDropdown ul.menuMain li.menu-item-has-children.open > a {
    display: inline-block;
    width: auto;
  }
  nav.navDropdown ul.menuMain li.menu-item-has-children.open ul.sub-menu {
    max-height: 1000px;
  }
  nav.navDropdown ul.menuMain li.current-menu-item a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: #7DFDFF;
  }
  nav.navDropdown ul.sub-menu {
    max-height: 0;
    overflow: hidden;
    background: #001F38 !important;
    -webkit-transition: all 0.35s ease-out 0s;
    -moz-transition: all 0.35s ease-out 0s;
    -o-transition: all 0.35s ease-out 0s;
    transition: all 0.35s ease-out 0s;
  }
  nav.navDropdown ul.sub-menu li a {
    color: #FFF !important;
    padding: 5px 0;
  }
  nav.navDropdown ul.sub-menu li a:after {
    display: none !important;
  }
  nav.navDropdown ul.sub-menu li:first-child a {
    padding-top: 20px;
  }
  nav.navDropdown ul.sub-menu li:last-of-type {
    margin-bottom: 0;
  }
  nav.navDropdown ul.sub-menu li.active a,
  nav.navDropdown ul.sub-menu li.current-menu-item a,
  nav.navDropdown ul.sub-menu li.current_page_item a {
    color: #FFF;
  }
  .menuOpen nav.navDropdown {
    overflow: visible;
    height: 100vh;
    background: #001F38 !important;
  }
  .menuOpen nav.navDropdown:before {
    opacity: 1;
  }
  .menuOpen nav.navDropdown ul.menuMain {
    max-height: 1500px;
    opacity: 1;
    height: auto;
  }
  .navWrapper {
    width: 100%;
    position: fixed;
    top: 90px;
    left: 0;
    bottom: 0;
    display: block;
    padding: 0 15px 15px 15px;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
/** END Mobile Menu Drop-down Style **/
/** START Mobile Hamburger Menu Icon **/
.mobileMenu {
  width: 48px;
  height: 50px;
  position: absolute;
  z-index: 10;
  right: 0;
  top: 10px;
  cursor: pointer;
}
.mobileMenu .icon {
  width: 18px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -9px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.mobileMenu .icon:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  background: #7DFDFF;
  opacity: 1;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.mobileMenu .icon span {
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  opacity: 1;
  background: #7DFDFF;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.mobileMenu .icon span:nth-child(1) {
  top: 0;
}
.mobileMenu .icon span:nth-child(2),
.mobileMenu .icon span:nth-child(3) {
  top: 6px;
}
.mobileMenu .icon span:nth-child(4) {
  top: 12px;
}
.menuOpen .mobileMenu .icon:before {
  opacity: 0;
}
.menuOpen .mobileMenu .icon span:nth-child(1) {
  width: 0%;
  top: 9px;
  left: 50%;
}
.menuOpen .mobileMenu .icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menuOpen .mobileMenu .icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menuOpen .mobileMenu .icon span:nth-child(4) {
  width: 0%;
  top: 9px;
  left: 50%;
}
/** END Mobile Hamburger Menu Icon **/
@media only screen and (min-width: 768px) {
  header {
    padding: 0 5%;
  }
  header.sticky nav {
    padding: 20px 0;
  }
  header.sticky nav .logo {
    margin-top: 6px;
  }
  header.sticky nav .logo svg {
    width: 183px;
    height: 40px;
  }
  nav {
    position: relative;
    height: auto;
    padding: 60px 0;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
  }
  nav .logo svg {
    width: 237px;
    height: 52px;
  }
  nav .navBlocker {
    display: none;
  }
  nav ul.menuMain {
    width: auto;
    height: 52px;
    position: relative;
    z-index: 2;
    top: auto;
    left: auto;
    text-align: right;
    padding: 0;
    margin: 0;
    opacity: 1;
    font-size: 0.95vw;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
  }
  nav ul.menuMain li {
    display: inline-table;
    width: auto;
    height: 52px;
    float: none;
    margin: 0 4% 0 0;
    padding: 0;
    border: none;
    position: relative;
  }
  nav ul.menuMain li:last-child {
    margin-right: 0;
  }
  nav ul.menuMain li:last-child a {
    margin-right: 0;
  }
  nav ul.menuMain li a {
    width: auto;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    padding: 0;
    position: relative;
  }
  nav ul.menuMain li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 0;
    background: #7DFDFF;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
  }
  nav ul.menuMain li.active a:before,
  nav ul.menuMain li.current-menu-item a:before,
  nav ul.menuMain li.current_page_item a:before,
  nav ul.menuMain li.current-menu-parent a:before {
    height: 2px;
  }
  nav ul.menuMain li:hover a:before {
    height: 2px;
  }
  nav ul.menuMain li.menu-item-has-children > a {
    padding-right: 20px;
  }
  nav ul.menuMain li.menu-item-has-children > a:after {
    content: "\f3d0";
    font-family: 'Ionicons';
    font-size: 18px;
    position: absolute;
    right: 0;
  }
  nav ul.menuMain li.menu-item-has-children:hover > a:after {
    content: "\f3d8";
  }
  nav ul.menuMain li.menu-item-has-children:hover ul.sub-menu {
    padding: 15px 5px;
    max-height: 800px;
    border-bottom: solid 2px #7DFDFF;
    text-align: left;
  }
  nav ul.sub-menu {
    width: 100%;
    position: absolute;
    min-width: 60px;
    left: 0;
    top: 47px;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 14px;
    border-bottom: solid 0 #7DFDFF;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    -moz-transition-property: max-height, padding-top, padding-bottom, border-bottom;
    -o-transition-property: max-height, padding-top, padding-bottom, border-bottom;
    transition-property: max-height, padding-top, padding-bottom, border-bottom;
  }
  nav ul.sub-menu li {
    width: 100%;
    height: auto;
    background: none;
    margin: 0 0 10px 0;
    padding: 0;
    -webkit-transition: all 0s ease-out 0s;
    -moz-transition: all 0s ease-out 0s;
    -o-transition: all 0s ease-out 0s;
    transition: all 0s ease-out 0s;
  }
  nav ul.sub-menu li a {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  nav ul.sub-menu li a:before {
    display: none !important;
  }
  nav ul.sub-menu li:last-of-type {
    margin: 0;
  }
  nav ul.sub-menu li.active a,
  nav ul.sub-menu li.current-menu-item a,
  nav ul.sub-menu li.current_page_item a {
    color: #FFF;
  }
  .dark nav ul.menuMain li a {
    color: #FFF;
  }
  .dark nav ul.sub-menu li a {
    color: #FFF;
  }
  .light nav ul.menuMain li a {
    color: #001F38;
  }
  .light nav ul.sub-menu li a {
    color: #001F38;
  }
}
@media only screen and (min-width: 992px) {
  nav ul.menuMain {
    text-align: left;
  }
  nav ul.menuMain li {
    margin: 0 3% 0 0;
  }
}
@media only screen and (min-width: 1600px) {
  nav {
    padding: 100px 0;
  }
  nav ul.menuMain {
    text-align: right;
  }
  nav ul.sub-menu {
    text-align: left;
  }
}
@media only screen and (min-width: 2000px) {
  nav ul.menuMain {
    font-size: 18px;
  }
}
footer {
  padding: 60px 0;
  margin: 0;
  border-top: solid 1px rgba(187, 192, 199, 0.5);
}
footer .small {
  font-size: 13px;
}
footer .logo svg {
  width: 135px;
  height: 29px;
}
footer .logoWrapper {
  font-size: 13px;
}
footer ul.menuFooter {
  width: 100%;
  margin: 0;
  padding: 0;
}
footer ul.menuFooter li {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
footer ul.menuFooter li ul.sub-menu {
  display: none;
}
footer ul.menuFooter li ul.sub-menu li {
  font-weight: normal;
}
footer ul.menuSocial {
  width: 100%;
  font-size: 24px;
  margin: 0;
  padding: 0;
}
footer ul.menuSocial li {
  width: auto;
  height: auto;
  margin: 0 15px 0 0;
  padding: 0;
  display: inline-block;
}
footer ul.menuSocial li:last-child {
  margin-right: 0;
}
footer ul.menuSocial li .ion {
  line-height: 30px;
}
footer ul.menuSocial li a {
  width: 100%;
  height: 100%;
  display: block;
}
@media only screen and (max-width: 767px) {
  footer ul.menuFooter {
    font-size: 11px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  footer {
    padding: 5% 0;
    text-align: left;
  }
  footer .small {
    font-size: 13px;
  }
  footer .logo svg {
    width: 184px;
    height: 40px;
  }
  footer ul.menuFooter {
    width: auto;
    display: flex;
    font-weight: bold;
  }
  footer ul.menuFooter li {
    margin-left: 50px;
  }
  footer ul.menuFooter li:first-child {
    margin-left: 0;
  }
  footer ul.menuFooter li.menu-item-has-children ul.sub-menu {
    width: 100%;
    margin: 7px 0 0 0;
    display: block;
  }
  footer ul.menuFooter li.menu-item-has-children ul.sub-menu li {
    width: 100%;
    margin: 0 0 2px 0;
    padding: 0;
    font-weight: normal;
  }
  footer ul.menuFooter li.sub-parent {
    margin-top: 7px !important;
  }
  footer ul.menuSocial {
    width: auto;
  }
  footer .cta a {
    font-weight: normal;
    border: solid 1px #FFF;
    height: 35px;
    line-height: 33px;
    padding: 0 15px;
    display: inline-block;
  }
  footer .cta a:hover {
    background: #FFF;
    color: #0A1217;
  }
  footer .rowFlex {
    justify-content: flex-end;
  }
  footer .rowFlex .col {
    width: auto;
  }
}
@media only screen and (min-width: 2000px) {
  footer {
    font-size: 13px;
  }
}
/** Sections **/
section {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
section.noPaddingTop {
  padding-top: 0;
}
section.noPaddingBottom {
  padding-bottom: 0;
}
section.noPadding {
  padding: 0;
}
section .sectionInnerWrapper {
  width: 100%;
  margin: 0 auto;
  padding: 15% 0;
}
section .container,
section .container-fluid {
  position: relative;
  z-index: 5;
}
section.sectionFullWidth .sectionInnerWrapper,
section.sectionFullWidth .container-fluid {
  max-width: none !important;
}
section.sectionFullWidth .sectionInnerWrapper {
  border: none;
}
.panel-1 section:not(.banner-image-static) {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) {
  section {
    padding: 0;
  }
  section.noPaddingTop {
    padding-top: 0;
  }
  section.noPaddingBottom {
    padding-bottom: 0;
  }
  section.noPadding {
    padding: 0;
  }
  section .sectionInnerWrapper {
    padding: 7.5% 0;
    max-width: calc((100% - 100px));
    border-left: solid 1px rgba(187, 192, 199, 0.5);
    border-right: solid 1px rgba(187, 192, 199, 0.5);
  }
  .panel-1 section:not(.banner-image-static) {
    padding-top: calc((5% + 100px));
  }
}
.background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-size: cover !important;
  background-position: center !important;
  width: 100%;
  height: 100%;
}
/** Slider **/
.swiper-button-prev,
.swiper-button-next {
  background: none;
  width: 40px;
  height: 40px;
  display: block;
  line-height: 40px;
  font-size: 40px;
  outline: none !important;
}
.swiper-button-next {
  right: 15px;
}
.swiper-button-prev {
  left: 15px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: none;
  border: solid 1px transparent;
  opacity: 1;
  cursor: pointer;
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #4B4F55;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: solid 1px #4B4F55;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 0;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-number {
  width: 14px;
  height: 14px;
  border: none;
  font-size: 15px;
  opacity: 0.35;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-number:before {
  display: none;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-number.swiper-pagination-bullet-active {
  opacity: 1;
  border: none;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 15px;
}
@media only screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
    display: block;
    line-height: 40px;
    font-size: 40px;
    text-align: center;
  }
}
/** Column Blocks **/
.colBlock {
  margin: 0 0 15px 0;
}
.colBlock .blockWrapper {
  width: 100%;
  float: left;
  height: auto;
  position: relative;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
.colBlock .imageWrapper {
  width: 100%;
  height: 0;
  float: left;
  padding-bottom: 66.66666%;
  position: relative;
  overflow: hidden;
  margin: 0 0 15px 0;
}
.colBlock .imageWrapper .image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.colBlock .imageWrapper .image:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  z-index: 2;
  background: #000;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.colBlock .textWrapper {
  width: 100%;
  height: 100%;
  display: block;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.colBlock .textWrapper .textOuter {
  display: table;
  height: 100%;
}
.colBlock .textWrapper .textOuter .text {
  display: table-cell;
  vertical-align: top;
}
.exampleItem1:hover .imageWrapper .image {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.exampleItem1:hover .imageWrapper .image:before {
  opacity: 0.5;
}
.exampleItem2 .blockWrapper {
  box-shadow: 0 2px 4px 0 rgba(75, 79, 84, 0.25);
}
.exampleItem2 .textWrapper {
  padding: 15px;
}
.exampleItem2:hover .imageWrapper .image {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.exampleItem2:hover .imageWrapper .image:before {
  opacity: 0.5;
}
.exampleItem3 h4 {
  color: #FFF;
}
.exampleItem3 .textWrapper {
  padding: 15px;
  position: absolute;
  z-index: 2;
  opacity: 0;
  color: #FFF;
}
.exampleItem3 .textWrapper .textOuter .text {
  vertical-align: middle;
}
.exampleItem3:hover .imageWrapper .image {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.exampleItem3:hover .imageWrapper .image:before {
  opacity: 0.5;
}
.exampleItem3:hover .textWrapper {
  opacity: 1;
}
/** Pagination **/
.pagination {
  width: 100%;
  height: 30px;
  text-align: center;
  font-size: 0px;
  margin: 10px 0 25px 0;
}
.pagination li {
  list-style: none;
  float: none;
  display: inline-block;
  font-size: 12px;
  margin: 0;
}
.pagination li a {
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: solid 1px #EBEBEB;
  border-left: none;
  color: #2196F3;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.pagination li a:hover {
  border: solid 1px #EBEBEB;
  border-left: none;
}
.pagination li:first-child a {
  border-left: solid 1px #EBEBEB;
}
.pagination li:first-child a:hover {
  border-left: solid 1px #EBEBEB;
}
.pagination li.active a {
  background: #333333;
  border: solid 1px #333333;
}
.pagination li.active a:hover {
  background: #2196F3;
  border: solid 1px #2196F3;
}
/** Full Width Banner **/
section.fullScreenBanner {
  height: 100vh;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1;
}
section.fullScreenBanner .sectionInnerWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  border: none !important;
  padding-top: 40%;
}
section.fullScreenBanner .container,
section.fullScreenBanner .container-fluid {
  width: 100%;
  position: relative;
  z-index: 2;
}
section.fullScreenBanner:before {
  content: "";
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
  position: absolute;
  opacity: 1;
  z-index: 2;
}
section.fullScreenBanner .buttonWrapper {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  section.fullScreenBanner {
    border-bottom: solid 1px rgba(187, 192, 199, 0.5);
  }
  section.fullScreenBanner .sectionInnerWrapper {
    align-items: center;
    padding-top: 0;
  }
  section.fullScreenBanner .buttonWrapper {
    text-align: left;
  }
}
.dark section.fullScreenBanner:before {
  background: rgba(10, 18, 23, 0);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0A1217), color-stop(1, rgba(10, 18, 23, 0)));
  background: -ms-linear-gradient(bottom, #0A1217, rgba(10, 18, 23, 0));
  background: -moz-linear-gradient(center bottom, #0A1217 0%, rgba(10, 18, 23, 0) 100%);
  background: -o-linear-gradient(rgba(10, 18, 23, 0), #0A1217);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(10, 18, 23, 0)', endColorstr='#0A1217', GradientType=0);
}
.light section.fullScreenBanner:before {
  background: rgba(255, 255, 255, 0);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #FFF), color-stop(1, rgba(255, 255, 255, 0)));
  background: -ms-linear-gradient(bottom, #FFF, rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(center bottom, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(rgba(255, 255, 255, 0), #FFF);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255, 255, 255, 0)', endColorstr='#FFF', GradientType=0);
}
@media only screen and (min-width: 768px) {
  section.fullScreenBanner {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 1800px) {
  section.fullScreenBanner {
    padding-top: 150px;
  }
}
section.banner-image-static .background:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#66000000', GradientType=0);
  /* IE6-9 */
}
section.panel-plain-banner-header {
  border-bottom: solid 1px rgba(187, 192, 199, 0.5);
  padding-top: 30%;
  padding-bottom: 10%;
}
section.panel-plain-banner-header .sectionInnerWrapper {
  border: none;
}
@media only screen and (min-width: 768px) {
  section.panel-plain-banner-header {
    padding-top: 200px;
    padding-bottom: 0;
  }
}
.btnScrollDown {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: absolute;
  bottom: 5%;
  left: 50%;
  z-index: 5;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
/** Base Modals **/
.modal .modal-content {
  background: #FFF;
  border: none;
  box-shadow: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.modal .modal-content .btnClose {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  margin: 0;
  z-index: 2;
  background: none;
  font-size: 40px;
  color: #333333;
}
.modal .modal-content .modal-body {
  padding: 0 15px;
  height: 400px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.modal .modal-content .modal-header {
  min-height: 50px;
  border: none;
  padding: 0;
  margin: 0 15px;
  display: table;
}
.modal .modal-content .modal-header .inner {
  display: table-cell;
  vertical-align: middle;
}
.modal .modal-content .modal-footer {
  min-height: 70px;
  border: none;
  padding: 15px;
  text-align: center;
  margin: 0 -5px;
}
.modal .modal-content .modal-footer input[type="submit"],
.modal .modal-content .modal-footer input[type="button"],
.modal .modal-content .modal-footer button,
.modal .modal-content .modal-footer .button .btn,
.modal .modal-content .modal-footer a.button,
.modal .modal-content .modal-footer a.btn {
  width: calc((50% - 13px));
  margin: 0 5px;
}
@media only screen and (min-width: 768px) {
  .modal {
    text-align: center;
  }
  .modal .modal-content {
    text-align: left;
  }
  .modal .modal-content .modal-body {
    height: 400px;
  }
  .modal .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
  }
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: "";
    height: 100%;
  }
}
/** Modals with Fixed Footer **/
.modal.modalFixedFooter .modal-content .modal-body {
  height: calc((100vh - 140px));
}
@media only screen and (min-width: 768px) {
  .modal.modalFixedFooter .modal-content .modal-body {
    height: 400px;
  }
}
/** Full Screen Modals **/
.modal.modalFullScreen {
  width: 100%;
}
.modal.modalFullScreen .modal-dialog {
  width: 100%;
  margin: 0 auto;
}
.modal.modalFullScreen .modal-content {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.modal.modalFullScreen .modal-body {
  height: calc((100vh - 50px));
}
.modal.modalFullScreen:before {
  display: none;
}
@media only screen and (min-width: 768px) {
  .modal.modalFullScreen:before {
    display: none;
  }
}
.modal-backdrop.in {
  opacity: 0.7;
}
/** Client Style Sheet **/
.bg-white {
  background: #FFF !important;
}
.bg-blueDark {
  background: #001F38 !important;
}
.bg-blueExtraDark {
  background: #0A1217 !important;
}
.bg-blueMedium {
  background: #0D3159 !important;
}
.bg-blueLight {
  background: #BBC0C7 !important;
}
.bg-blueSky {
  background: #D2E5E6 !important;
}
.bg-charcoal {
  background: #4B4F55 !important;
}
.bg-aqua {
  background: #7DFDFF;
}
.bg-greyExtraLight {
  background: #FAFAFA;
}
.bg-greyLight {
  background: #EBEBEB;
}
.logo {
  display: block;
  background-size: cover;
  overflow: hidden;
}
.light {
  color: #001F38;
  background: #FFF;
}
.light .logo svg .fill {
  background: #001F38;
}
.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6,
.light a {
  color: #001F38;
}
.light input[type="submit"]:not(.vjs-button),
.light input[type="button"]:not(.vjs-button),
.light button:not(.vjs-button),
.light .button:not(.vjs-button),
.light .btn:not(.vjs-button),
.light a.button:not(.vjs-button),
.light a.btn:not(.vjs-button),
.light .btn-cta a:not(.vjs-button) {
  color: #001F38;
  border-color: #001F38;
}
.light input[type="submit"]:not(.vjs-button):hover,
.light input[type="button"]:not(.vjs-button):hover,
.light button:not(.vjs-button):hover,
.light .button:not(.vjs-button):hover,
.light .btn:not(.vjs-button):hover,
.light a.button:not(.vjs-button):hover,
.light a.btn:not(.vjs-button):hover,
.light .btn-cta a:not(.vjs-button):hover {
  background: #001F38;
  color: #FFF;
}
.light input[type="submit"]:not(.vjs-button):focus,
.light input[type="button"]:not(.vjs-button):focus,
.light button:not(.vjs-button):focus,
.light .button:not(.vjs-button):focus,
.light .btn:not(.vjs-button):focus,
.light a.button:not(.vjs-button):focus,
.light a.btn:not(.vjs-button):focus,
.light .btn-cta a:not(.vjs-button):focus {
  background: #001F38;
  color: #FFF;
}
.light input[type="submit"]:not(.vjs-button).btn-primary,
.light input[type="button"]:not(.vjs-button).btn-primary,
.light button:not(.vjs-button).btn-primary,
.light .button:not(.vjs-button).btn-primary,
.light .btn:not(.vjs-button).btn-primary,
.light a.button:not(.vjs-button).btn-primary,
.light a.btn:not(.vjs-button).btn-primary,
.light .btn-cta a:not(.vjs-button).btn-primary {
  color: #001F38;
}
.light input[type="submit"]:not(.vjs-button).btn-primary:hover,
.light input[type="button"]:not(.vjs-button).btn-primary:hover,
.light button:not(.vjs-button).btn-primary:hover,
.light .button:not(.vjs-button).btn-primary:hover,
.light .btn:not(.vjs-button).btn-primary:hover,
.light a.button:not(.vjs-button).btn-primary:hover,
.light a.btn:not(.vjs-button).btn-primary:hover,
.light .btn-cta a:not(.vjs-button).btn-primary:hover {
  background: #001F38;
  color: #FFF;
}
.light input[type="submit"]:not(.vjs-button).btn-primary:focus,
.light input[type="button"]:not(.vjs-button).btn-primary:focus,
.light button:not(.vjs-button).btn-primary:focus,
.light .button:not(.vjs-button).btn-primary:focus,
.light .btn:not(.vjs-button).btn-primary:focus,
.light a.button:not(.vjs-button).btn-primary:focus,
.light a.btn:not(.vjs-button).btn-primary:focus,
.light .btn-cta a:not(.vjs-button).btn-primary:focus {
  background: #001F38;
  color: #FFF;
}
.light section.panel-sub-navigation {
  background: #FFF;
}
.light header {
  background: rgba(255, 255, 255, 0);
}
.light header.sticky {
  background: #ffffff;
}
.light header ul.sub-menu {
  background: #FFF;
}
.light header .mobileMenu .icon:before {
  background: #001F38;
}
@media only screen and (max-width: 767px) {
  .light header nav {
    background: rgba(255, 255, 255, 0);
  }
  .light header.sticky nav {
    background: #ffffff;
  }
}
.light footer .cta a {
  border-color: #0A1217;
}
.light footer .cta a:hover {
  background: #0A1217;
  color: #FFF;
}
.light .contactMenuWrapper .ion {
  color: #4B4F55;
}
.dark {
  color: #FFF;
  background: #0A1217;
}
.dark .logo svg .fillColour {
  fill: #FFF;
}
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark a {
  color: #FFF;
}
.dark input[type="submit"]:not(.vjs-button),
.dark input[type="button"]:not(.vjs-button),
.dark button:not(.vjs-button),
.dark .button:not(.vjs-button),
.dark .btn:not(.vjs-button),
.dark a.button:not(.vjs-button),
.dark a.btn:not(.vjs-button),
.dark .btn-cta a:not(.vjs-button) {
  color: #FFF;
  border-color: #7DFDFF;
}
.dark input[type="submit"]:not(.vjs-button):hover,
.dark input[type="button"]:not(.vjs-button):hover,
.dark button:not(.vjs-button):hover,
.dark .button:not(.vjs-button):hover,
.dark .btn:not(.vjs-button):hover,
.dark a.button:not(.vjs-button):hover,
.dark a.btn:not(.vjs-button):hover,
.dark .btn-cta a:not(.vjs-button):hover {
  background: #7DFDFF;
  color: #001F38;
}
.dark input[type="submit"]:not(.vjs-button):focus,
.dark input[type="button"]:not(.vjs-button):focus,
.dark button:not(.vjs-button):focus,
.dark .button:not(.vjs-button):focus,
.dark .btn:not(.vjs-button):focus,
.dark a.button:not(.vjs-button):focus,
.dark a.btn:not(.vjs-button):focus,
.dark .btn-cta a:not(.vjs-button):focus {
  background: #7DFDFF;
  color: #001F38;
}
.dark input[type="submit"]:not(.vjs-button).btn-primary,
.dark input[type="button"]:not(.vjs-button).btn-primary,
.dark button:not(.vjs-button).btn-primary,
.dark .button:not(.vjs-button).btn-primary,
.dark .btn:not(.vjs-button).btn-primary,
.dark a.button:not(.vjs-button).btn-primary,
.dark a.btn:not(.vjs-button).btn-primary,
.dark .btn-cta a:not(.vjs-button).btn-primary {
  border-color: #7DFDFF;
  color: #FFF;
}
.dark input[type="submit"]:not(.vjs-button).btn-primary:hover,
.dark input[type="button"]:not(.vjs-button).btn-primary:hover,
.dark button:not(.vjs-button).btn-primary:hover,
.dark .button:not(.vjs-button).btn-primary:hover,
.dark .btn:not(.vjs-button).btn-primary:hover,
.dark a.button:not(.vjs-button).btn-primary:hover,
.dark a.btn:not(.vjs-button).btn-primary:hover,
.dark .btn-cta a:not(.vjs-button).btn-primary:hover {
  background: #7DFDFF;
  color: #001F38;
}
.dark input[type="submit"]:not(.vjs-button).btn-primary:focus,
.dark input[type="button"]:not(.vjs-button).btn-primary:focus,
.dark button:not(.vjs-button).btn-primary:focus,
.dark .button:not(.vjs-button).btn-primary:focus,
.dark .btn:not(.vjs-button).btn-primary:focus,
.dark a.button:not(.vjs-button).btn-primary:focus,
.dark a.btn:not(.vjs-button).btn-primary:focus,
.dark .btn-cta a:not(.vjs-button).btn-primary:focus {
  background: #7DFDFF;
  color: #001F38;
}
.dark section.panel-sub-navigation {
  background: #0A1217;
}
.dark header {
  background: rgba(10, 18, 23, 0);
}
.dark header.sticky {
  background: #0a1217;
}
.dark header ul.sub-menu {
  background: #0A1217;
}
.dark header .mobileMenu .icon:before {
  background: #7DFDFF;
}
@media only screen and (max-width: 767px) {
  .dark header nav {
    background: rgba(10, 18, 23, 0);
  }
  .dark header.sticky nav {
    background: #0a1217;
  }
}
.dark footer .cta a {
  border-color: #FFF;
}
.dark footer .cta a:hover {
  background: #FFF;
  color: #0A1217;
}
.dark .contactMenuWrapper .ion {
  color: #7DFDFF;
}
.darkBlue {
  background: #001F38;
}
.darkBlue header {
  background: rgba(0, 31, 56, 0);
}
.darkBlue header.sticky {
  background: #001f38;
}
.darkBlue header ul.sub-menu {
  background: #001F38;
}
@media only screen and (max-width: 767px) {
  .darkBlue header nav {
    background: rgba(0, 31, 56, 0);
  }
  .darkBlue header.sticky nav {
    background: #001f38;
  }
}
.charcoal {
  background: #4B4F55;
}
.charcoal header {
  background: rgba(75, 79, 85, 0);
}
.charcoal header.sticky {
  background: #4b4f55;
}
.charcoal header ul.sub-menu {
  background: #4B4F55;
}
@media only screen and (max-width: 767px) {
  .charcoal header nav {
    background: rgba(75, 79, 85, 0);
  }
  .charcoal header.sticky nav {
    background: #4b4f55;
  }
}
.line {
  width: 100%;
  height: 1px;
  display: block;
  background: #7DFDFF;
  max-width: 75px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
@media only screen and (min-width: 768px) {
  .line {
    max-width: 200px;
  }
}
.video {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.video .video-js {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video .video-js .vjs-poster {
  background-size: cover !important;
}
.video .video-js .vjs-big-play-button {
  width: 80px;
  height: 80px;
  font-size: 20px;
  line-height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 0;
  background: none;
  border: solid 1px #7DFDFF;
  color: #FFF;
  border-left: solid 1px transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
@media only screen and (min-width: 768px) {
  .video .video-js .vjs-big-play-button {
    width: 100px;
    height: 100px;
    font-size: 28px;
    line-height: 100px;
    border: solid 2px #7DFDFF;
    border-left: solid 2px transparent;
  }
}
.video .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "Play";
  font-family: 'MaisonNeue', Helvetica, arial, sans-serif;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.video .video-js:hover .vjs-big-play-button {
  background: none;
}
.video .video-js.vjs-youtube-mobile .vjs-big-play-button {
  display: block;
}
.video .video-js .vjs-text-track-display {
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.video .video-js:hover .vjs-text-track-display {
  background: rgba(0, 0, 0, 0.5);
}
.video .video-js.vjs-has-started .vjs-text-track-display {
  background: none;
}
section.panel-sub-navigation .sectionInnerWrapper {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  section.panel-sub-navigation {
    background: #FFF;
  }
  section.panel-sub-navigation .sectionInnerWrapper {
    padding: 2% 0;
  }
  section.panel-sub-navigation.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
  }
}
section.panel-sub-navigation.panel-sub-navigation-spacer {
  height: 100px;
}
ul.subNavigation {
  width: 100%;
  margin: 0;
  padding: 0;
}
ul.subNavigation li {
  width: 100%;
  margin: 0 0 5% 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}
ul.subNavigation li a {
  position: relative;
}
ul.subNavigation li a:before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -8px;
  background: #7DFDFF;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
ul.subNavigation li a:hover:before {
  opacity: 1;
}
ul.subNavigation li:first-child {
  margin-right: 5%;
}
ul.subNavigation li:last-child {
  margin-right: 0;
}
ul.subNavigation li.current-menu-item,
ul.subNavigation li.active {
  font-weight: bold;
}
ul.subNavigation li.current-menu-item a:before,
ul.subNavigation li.active a:before {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  ul.subNavigation {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  ul.subNavigation li {
    width: auto;
    margin: 0 3% 0 0;
    display: inline-block;
  }
}
.tile-productPreview {
  margin-bottom: 10%;
}
.tile-productPreview .image {
  width: 100%;
  height: 0;
  padding-bottom: 100% !important;
  position: relative;
  margin-bottom: 10%;
}
.tile-productPreview .text {
  padding: 0 !important;
}
.tile-textFeature {
  margin-bottom: 5%;
}
ul.tags {
  margin: 0;
  padding: 0;
}
ul.tags li {
  list-style: none;
  display: inline-block;
  margin: 5px 10px 15px 0;
}
ul.tags li a {
  display: block;
  height: 30px;
  line-height: 28px;
  padding: 0 15px;
  border: solid 1px rgba(255, 255, 255, 0.5);
  color: #FFF;
}
ul.tags li a.active {
  background: #FFF;
  color: #4B4F55;
}
@media only screen and (min-width: 768px) {
  ul.tags li {
    margin: 5px 15px 5px 0;
  }
  ul.tags li a {
    height: 40px;
    line-height: 38px;
  }
}
.light ul.tags li a {
  border-color: #4B4F55;
  color: #4B4F55;
}
.light ul.tags li a.active {
  background: #4B4F55;
  color: #FFF;
}
.dark ul.tags li a {
  border-color: rgba(255, 255, 255, 0.5);
  color: #FFF;
}
.dark ul.tags li a.active {
  background: #FFF;
  color: #4B4F55;
}
.swiperNavigation {
  width: 100px;
  height: 40px;
  display: inline-block;
  position: relative;
}
.swiperNavigation .swiper-button-next {
  right: 0;
}
.swiperNavigation .swiper-button-prev {
  left: 0;
}
@media only screen and (max-width: 767px) {
  .swiperNavigation .swiper-button-prev,
  .swiperNavigation .swiper-button-next {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .swiperNavigation {
    width: 200px;
  }
}
.contactMenuWrapper {
  width: auto;
  height: auto;
  max-width: 30px;
  max-height: 48px;
  position: fixed;
  z-index: 10;
  right: 0;
  top: 20%;
  padding: 0;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.contactMenuWrapper .toggle {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  opacity: 1;
}
.contactMenuWrapper .toggle .ion {
  font-size: 32px;
  line-height: 48px;
}
.contactMenuWrapper ul.menuContact {
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.contactMenuWrapper ul.menuContact li {
  width: 100%;
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}
.contactMenuWrapper ul.menuContact li:last-child {
  margin-bottom: 0;
}
.contactMenuWrapper.active {
  max-width: 200px;
  max-height: 300px;
  padding: 15px 10px;
}
.contactMenuWrapper.active .toggle {
  opacity: 0;
  pointer-events: none;
}
.contactMenuWrapper.active .menuContact {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .contactMenuWrapper ul.menuContact {
    font-size: 13px;
  }
}
@media only screen and (min-width: 768px) {
  .contactMenuWrapper {
    width: auto;
    max-width: 200px;
    max-height: 300px;
    padding: 20px 10px;
  }
  .contactMenuWrapper ul.menuContact {
    pointer-events: all;
    opacity: 1;
  }
}
/** HOME PAGE **/
section.panel-home-video .videoWrapper {
  margin-bottom: 20%;
  overflow: visible;
}
section.panel-home-video .hideVideo {
  position: absolute;
  z-index: 2;
  font-size: 40px;
  top: -50px;
  right: 15px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  section.panel-home-video .hideVideo {
    top: -50px;
    right: 0px;
  }
  section.panel-home-video .videoDescription {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 10%;
    pointer-events: none;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  section.panel-home-video .sectionInnerWrapper {
    padding-bottom: 10%;
  }
  section.panel-home-video .embed-responsive {
    overflow: visible;
  }
  section.panel-home-video .videoWrapper {
    margin-bottom: 0;
  }
  section.panel-home-video .textWrapper {
    width: 30%;
    height: 65%;
    position: absolute;
    z-index: 3;
    right: 0;
    top: 50%;
  }
  section.panel-home-video .textWrapper .text {
    width: 100%;
    height: 100%;
    display: table;
    padding: 10%;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-color: rgba(13, 49, 89, 0.4);
  }
  section.panel-home-video .textWrapper .text .innerWrapper {
    display: table-row;
  }
  section.panel-home-video .textWrapper .text .innerWrapper div {
    width: 100%;
    display: table-cell;
  }
  section.panel-home-video .textWrapper .text .innerWrapper div.content {
    vertical-align: bottom;
  }
}
section.panel-home-cloud.hero {
  background: rgba(255, 255, 255, 0.06);
}
section.panel-home-cloud .tile-cloudFeature hr {
  margin-bottom: 10%;
  margin-top: 5%;
}
@media only screen and (max-width: 767px) {
  section.panel-home-cloud.hero .indent {
    font-size: 8px;
  }
  section.panel-home-cloud.features .sectionInnerWrapper {
    padding-bottom: 0;
  }
  section.panel-home-cloud .tile-cloudFeature {
    margin-right: -30px;
  }
  section.panel-home-cloud .tile-cloudFeature .hrWrapper {
    float: right;
    margin: 0 -30px;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-home-cloud .tile-cloudFeature hr {
    margin-bottom: 5%;
    margin-top: 5%;
  }
}
section.panel-home-features .tile-feature .innerWrapper {
  padding: 15% 30px;
}
section.panel-home-features .tile-feature.tile-feature-3 .outerWrapper {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 105%;
  background-size: cover !important;
  background-position: top center !important;
}
@media only screen and (max-width: 767px) {
  section.panel-home-features .tile-feature.tile-feature-3 .btn {
    width: 100%;
    min-width: 0;
    max-width: 40%;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-home-features .col {
    display: flex;
    flex-direction: column;
  }
  section.panel-home-features .tile-feature {
    display: flex;
  }
  section.panel-home-features .tile-feature .innerWrapper {
    padding: 15% 25% 15% 10%;
  }
  section.panel-home-features .tile-feature.tile-feature-3 .outerWrapper {
    padding-bottom: 135%;
    background-position: bottom center !important;
  }
  section.panel-home-features .tile-feature.tile-feature-3 .innerWrapper {
    position: absolute;
    z-index: 2;
    width: 60%;
    height: 45%;
    left: 6%;
    top: 6%;
    padding: 5% 15% 5% 5%;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.06);
  }
  section.panel-home-features .tile-feature.tile-feature-3 .btn {
    position: absolute;
    left: 7%;
    bottom: 8%;
    z-index: 5;
  }
  section.panel-home-features .col-left {
    padding-right: 0;
  }
  section.panel-home-features .col-right {
    padding: 0;
  }
}
section.panel-home-contact input[type="submit"].gform_button {
  color: #4B4F55;
  border-color: #4B4F55;
}
section.panel-home-contact input[type="submit"].gform_button:hover {
  background: #4B4F55;
  color: #FFF;
}
section.panel-home-contact input[type="submit"].gform_button:focus {
  background: #4B4F55;
  color: #FFF;
}
@media only screen and (min-width: 768px) {
  section.panel-home-contact ul.gform_fields li {
    margin-bottom: 80px;
  }
  section.panel-home-contact ul.gform_fields li.spacer {
    margin-bottom: 30px;
  }
  section.panel-home-contact .gform_footer {
    margin-top: -140px;
  }
}
@media only screen and (max-width: 767px) {
  section.panel-home-whyus .sectionInnerWrapper {
    padding-top: 25%;
  }
}
/** ABOUT PAGE **/
@media only screen and (max-width: 767px) {
  .page-template-page-about_us .rowMobileFullWidth .col {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .textFlex {
    display: flex;
    align-items: center;
  }
  .textFlex .col-left {
    display: flex;
    flex-direction: column;
  }
  .textFlex .col-left h2 {
    flex: 1;
  }
  .textFlex .col-right p:last-child {
    margin-bottom: 0;
  }
}
section.panel-about-ourstory .image {
  margin-bottom: 20%;
}
@media only screen and (min-width: 768px) {
  section.panel-about-ourstory .image {
    margin-bottom: 0;
  }
}
section.panel-about-philosophy .image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 20%;
}
@media only screen and (min-width: 768px) {
  section.panel-about-philosophy .image {
    width: auto;
    padding-bottom: 60%;
    margin-bottom: 0;
    margin-right: calc((100vw - 100%)/-2);
  }
  section.panel-about-philosophy .text {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.03);
    margin-top: -25%;
    position: relative;
    z-index: 3;
    padding: 15% 10%;
  }
}
section.panel-about-team {
  background: url(../assets/images/sitedesign-bg-about-team.jpg);
  background-size: cover !important;
}
section.panel-about-team .image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 20%;
}
@media only screen and (min-width: 768px) {
  section.panel-about-team .sectionInnerWrapper {
    padding-bottom: 10%;
    padding-top: 0;
  }
  section.panel-about-team .image {
    width: auto;
    padding-bottom: 38%;
    margin-bottom: 8%;
    margin-left: calc((100vw - 100%)/-2);
    margin-right: calc((100vw - 100%)/-2);
  }
}
section.panel-about-sustainability .image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 20%;
}
section.panel-about-sustainability .logos {
  text-align: right;
}
section.panel-about-sustainability .text {
  padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  section.panel-about-sustainability .sectionInnerWrapper {
    padding-top: 0;
  }
  section.panel-about-sustainability .image {
    width: auto;
    padding-bottom: 49%;
    margin-bottom: 0;
    margin-left: calc((100vw - 100%)/-2);
  }
  section.panel-about-sustainability .text {
    width: 50%;
    position: absolute;
    z-index: 3;
    padding: 5% 8%;
    top: 50%;
    left: 5%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  section.panel-about-sustainability .logos {
    text-align: left;
  }
}
body.page-template-page-product_list header,
body.tax-product_categories header {
  background: rgba(255, 255, 255, 0);
}
body.page-template-page-product_list header nav ul.menuMain li a,
body.tax-product_categories header nav ul.menuMain li a {
  color: #FFF;
}
body.page-template-page-product_list header nav ul.sub-menu li a,
body.tax-product_categories header nav ul.sub-menu li a {
  color: #001F38;
}
body.page-template-page-product_list header .logo svg .fillColour,
body.tax-product_categories header .logo svg .fillColour {
  fill: #FFF;
}
body.page-template-page-product_list header.sticky,
body.tax-product_categories header.sticky {
  background: #ffffff;
}
body.page-template-page-product_list header.sticky nav ul.menuMain li a,
body.tax-product_categories header.sticky nav ul.menuMain li a {
  color: #001F38;
}
body.page-template-page-product_list header.sticky .logo svg .fillColour,
body.tax-product_categories header.sticky .logo svg .fillColour {
  fill: #001F38;
}
body.page-template-page-product_list header .mobileMenu .icon:before,
body.tax-product_categories header .mobileMenu .icon:before {
  background: #7DFDFF;
}
@media only screen and (max-width: 767px) {
  body.page-template-page-product_list header nav,
  body.tax-product_categories header nav {
    background: rgba(10, 18, 23, 0);
  }
  body.page-template-page-product_list header.sticky nav,
  body.tax-product_categories header.sticky nav {
    background: #ffffff;
  }
  body.page-template-page-product_list header.sticky .logo svg .fillColour,
  body.tax-product_categories header.sticky .logo svg .fillColour {
    fill: #001F38;
  }
}
body.page-template-page-product_list .fullScreenBanner,
body.tax-product_categories .fullScreenBanner {
  color: #FFF;
}
body.page-template-page-product_list .fullScreenBanner h1,
body.tax-product_categories .fullScreenBanner h1 {
  color: #FFF;
}
.tile-product {
  margin-bottom: 5%;
}
.tile-product .productImage {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 10px;
}
.tile-product .productImage .swiperProductImage {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.tile-product .productImage .swiperProductImage .swiper-pagination {
  bottom: 5%;
}
.tile-product .productImage .image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.tile-product .productText {
  width: 100%;
  height: 100%;
  padding: 10%;
  display: block;
  background: #FAFAFA;
}
.tile-product .productText hr {
  margin-top: 15px;
  margin-bottom: 15px;
}
.tile-product .productText table {
  width: 100%;
  margin-bottom: 20px;
  font-size: 15px;
}
.tile-product .productText table tr {
  border-bottom: solid 1px rgba(187, 192, 199, 0.5);
}
.tile-product .productText table td {
  width: 50%;
  padding: 15px 0;
}
.tile-product .productText .content-technical {
  font-size: 13px;
  line-height: 1.3em;
}
.tile-product .productText .swiperProductText {
  height: 100%;
}
.tile-product .productText .swiperProductText .swiper-wrapper {
  margin-top: 20%;
}
.tile-product .productText .swiperProductText .swiper-pagination {
  width: auto;
  bottom: auto;
  top: 0;
  right: 0;
  left: auto;
}
@media only screen and (min-width: 768px) {
  .tile-product .col-left {
    padding-right: 0;
    border-right: solid 3px #FFF;
  }
  .tile-product .col-right {
    padding-left: 0;
    border-left: solid 3px #FFF;
    background: #FAFAFA;
  }
  .tile-product .productImage {
    margin-bottom: 0;
  }
  .tile-product .productText .swiperProductText .swiper-wrapper {
    margin-top: 0;
  }
  .tile-product .productText .swiper-slide {
    display: flex;
    flex-direction: column;
  }
  .tile-product .productText .swiper-slide .content {
    flex: 1;
  }
}
.tile-productCategory {
  display: block;
  margin-bottom: 20%;
}
.tile-productCategory .col {
  padding: 0;
}
.tile-productCategory .innerWrapper {
  width: 100%;
  height: 0;
  padding-bottom: 53%;
  position: relative;
  margin-bottom: 10%;
}
@media only screen and (min-width: 768px) {
  .tile-productCategory {
    margin-bottom: 3%;
  }
  .tile-productCategory .innerWrapper {
    padding-bottom: 45.51%;
    margin-bottom: 0;
  }
  .tile-productCategory .col {
    padding: 0 20px;
  }
  .tile-productCategory .text {
    width: 26.5%;
    height: 70%;
    display: flex;
    flex-direction: column;
    padding: 4% 2%;
    position: absolute;
    right: 6%;
    bottom: 6%;
    z-index: 2;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.15);
  }
  .tile-productCategory .text .title {
    flex: 1;
    height: 50%;
  }
  .tile-productCategory .text .content {
    flex: 1;
    width: 80%;
    height: 40%;
  }
  .tile-productCategory .text .cta {
    height: auto;
    font-size: 15px;
  }
}
section.panel-casestudy-slider .image {
  width: 100%;
  height: 0;
  padding-bottom: 52%;
  position: relative;
}
@media only screen and (min-width: 768px) {
  section.panel-casestudy-slider p {
    margin-top: 7px;
  }
}
.tile-buildingSolution {
  margin-bottom: 10%;
  padding: 0 15px;
}
.tile-buildingSolution .col-left,
.tile-buildingSolution .col-right {
  padding: 0;
}
.tile-buildingSolution .col-right {
  background: #FAFAFA;
}
.tile-buildingSolution .image {
  width: 100%;
  height: 0;
  padding-bottom: 42%;
  position: relative;
}
.tile-buildingSolution .text {
  width: 100%;
  height: 100%;
  display: block;
}
.tile-buildingSolution ul.accordion {
  margin: 0;
  padding: 0;
}
.tile-buildingSolution ul.accordion li {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .tile-buildingSolution .btnClose {
    font-size: 40px;
    position: absolute;
    top: -10px;
    right: 15px;
  }
  .tile-buildingSolution ul.accordion li.tab {
    border-bottom: solid 1px rgba(112, 112, 112, 0.5);
  }
  .tile-buildingSolution ul.accordion li.tab .tabTitle {
    height: 30px;
    line-height: 30px;
    text-align: right;
    padding-right: 15px;
  }
  .tile-buildingSolution ul.accordion li.tab .tabContent {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .tile-buildingSolution ul.accordion li.tab .tabContent .content {
    display: block !important;
    padding: 20px 15px;
  }
  .tile-buildingSolution ul.accordion li.tab.active .tabContent {
    max-height: 1000px;
  }
}
@media only screen and (min-width: 768px) {
  .tile-buildingSolution {
    margin-bottom: 8%;
    padding: 0;
  }
  .tile-buildingSolution .image {
    padding-bottom: 140%;
  }
  .tile-buildingSolution .text {
    padding: 0;
  }
  .tile-buildingSolution .col-left {
    padding-right: 0;
    padding-left: 15px;
  }
  .tile-buildingSolution .col-right {
    padding-left: 0;
    padding-right: 0;
  }
  .tile-buildingSolution ul.accordion {
    height: 100%;
    display: flex;
  }
  .tile-buildingSolution ul.accordion li.tab {
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
    flex: 1;
    max-width: 40px;
    border-right: solid 1px rgba(112, 112, 112, 0.5);
    border-bottom: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .tile-buildingSolution ul.accordion li.tab .tabTitle {
    flex: 1;
    max-width: 40px;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 15px;
    padding: 10px 0;
    line-height: normal;
    cursor: pointer;
  }
  .tile-buildingSolution ul.accordion li.tab .tabContent {
    flex: 1;
    max-width: 0;
    overflow: hidden;
  }
  .tile-buildingSolution ul.accordion li.tab.active {
    flex: 1;
    max-width: 100%;
  }
  .tile-buildingSolution ul.accordion li.tab.active .tabContent {
    max-width: 100%;
    padding: 8% 5% 1% 5%;
  }
  .tile-buildingSolution ul.accordion li.tab.active.tab1 .tabContent {
    padding-left: calc((5% + 80px));
  }
  .tile-buildingSolution ul.accordion li.tab.active.tab2 .tabContent {
    padding-left: calc((5% + 40px));
    padding-right: calc((5% + 40px));
  }
  .tile-buildingSolution ul.accordion li.tab.active.tab3 .tabContent {
    padding-right: calc((5% + 80px));
  }
  .tile-buildingSolution ul.accordion li.tab .content {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
  }
  .tile-buildingSolution ul.accordion li.tab.in .content {
    opacity: 1;
  }
}
.building-solutions-category {
  margin-bottom: 10%;
}
@media only screen and (min-width: 768px) {
  .building-solutions-category .col-right {
    padding-left: 0;
  }
}
/** SOLUTIONS PAGE **/
@media only screen and (min-width: 768px) {
  section.panel-sub-navigation-solutions .sectionInnerWrapper {
    padding-bottom: 5%;
  }
}
section.panel-solutions-featureslider h2 {
  position: relative;
}
section.panel-solutions-featureslider .btnNext,
section.panel-solutions-featureslider .btnPrev {
  width: 40px;
  height: 40px;
  display: block;
  line-height: 40px;
  font-size: 30px;
  text-align: right;
  position: absolute;
  z-index: 4;
  right: 0;
  top: -5px;
  cursor: pointer;
}
section.panel-solutions-featureslider .image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
section.panel-solutions-featureslider .text {
  padding: 20% 30px 0 30px;
}
section.panel-solutions-featureslider .swiperNavigation {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 4;
  color: #7DFDFF;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
section.panel-solutions-featureslider .swiper-slide .container-fluid {
  max-width: 1640px !important;
}
@media only screen and (min-width: 768px) {
  section.panel-solutions-featureslider .btnNext,
  section.panel-solutions-featureslider .btnPrev {
    font-size: 40px;
    top: 50%;
    right: -40%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  section.panel-solutions-featureslider .image {
    padding-bottom: 52%;
  }
  section.panel-solutions-featureslider .col {
    padding: 0;
  }
  section.panel-solutions-featureslider .sectionInnerWrapper {
    padding: 0;
  }
  section.panel-solutions-featureslider .text {
    width: 50%;
    position: absolute;
    z-index: 3;
    padding: 8% 15% 8% 8%;
    bottom: 0;
    right: 5%;
  }
}
@media only screen and (min-width: 2000px) {
  section.panel-solutions-featureslider .image {
    padding-bottom: 36%;
  }
}
section.panel-solutions-features .tile-solutions-feature {
  margin-bottom: 15%;
}
section.panel-solutions-features .tile-solutions-feature img {
  max-width: 50%;
  margin-bottom: 10%;
}
@media only screen and (min-width: 768px) {
  section.panel-solutions-features .sectionInnerWrapper {
    padding-top: 15%;
  }
  section.panel-solutions-features .tile-solutions-feature {
    margin-bottom: 5%;
  }
  section.panel-solutions-features .tile-solutions-feature img {
    max-width: 75%;
  }
}
@media only screen and (min-width: 1200px) {
  section.panel-solutions-features .tile-solutions-feature img {
    max-width: 50%;
  }
}
section.panel-solutions-corefeatures .tile-corefeature img {
  width: 100%;
  max-width: 33.333%;
  height: auto;
  opacity: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
section.panel-solutions-corefeatures .tile-corefeature .content {
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
section.panel-solutions-corefeatures .tile-corefeature ul {
  margin: 10% 0 0 0;
  padding: 0;
}
section.panel-solutions-corefeatures .tile-corefeature ul li {
  list-style: none;
  padding: 0 0 0 30px;
  margin: 0 0 10px 0;
  position: relative;
}
section.panel-solutions-corefeatures .tile-corefeature ul li:before {
  content: "\f487";
  font-family: 'Ionicons';
  color: #7DFDFF;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -2px;
}
section.panel-solutions-corefeatures .tile-corefeature .innerWrapper {
  width: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
section.panel-solutions-corefeatures .swiper-container {
  padding-bottom: 20%;
}
section.panel-solutions-corefeatures .swiper-pagination .swiper-pagination-bullet:before {
  background: #7DFDFF;
}
section.panel-solutions-corefeatures .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: solid 1px #7DFDFF;
}
@media only screen and (max-width: 767px) {
  section.panel-solutions-corefeatures .rowMobileNoMargin {
    margin: 0;
  }
  section.panel-solutions-corefeatures .rowMobileNoMargin .innerWrapper {
    padding: 30px 50px 30px 20px;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-solutions-corefeatures .sectionInnerWrapper {
    padding-bottom: 10%;
  }
  section.panel-solutions-corefeatures .tile-corefeature img {
    max-width: 50%;
    opacity: 0.25;
    margin-bottom: 0;
  }
  section.panel-solutions-corefeatures .tile-corefeature .content {
    opacity: 0;
  }
  section.panel-solutions-corefeatures .tile-corefeature .innerWrapper {
    background: rgba(255, 255, 255, 0);
    padding: 10%;
  }
  section.panel-solutions-corefeatures .tile-corefeature:hover img {
    opacity: 1;
  }
  section.panel-solutions-corefeatures .tile-corefeature:hover .content {
    opacity: 1;
  }
  section.panel-solutions-corefeatures .tile-corefeature:hover .innerWrapper {
    background: rgba(255, 255, 255, 0.03);
  }
  section.panel-solutions-corefeatures .swiper-wrapper {
    display: flex;
  }
}
section.panel-solutions-discover .image {
  width: 100%;
  position: relative;
  padding: 20% 30px;
}
section.panel-solutions-discover .text {
  width: 100%;
  position: relative;
  z-index: 4;
  padding: 15% 10%;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.15);
}
@media only screen and (min-width: 768px) {
  section.panel-solutions-discover .sectionInnerWrapper {
    padding: 0;
  }
  section.panel-solutions-discover .sectionInnerWrapper .col {
    padding-left: 0;
    padding-right: 0;
  }
  section.panel-solutions-discover .image {
    height: 0;
    padding: 0;
    padding-bottom: 52%;
  }
  section.panel-solutions-discover .text {
    width: 75%;
    position: absolute;
    z-index: 3;
    padding: 8% 5%;
    left: 50%;
    top: 50%;
    max-width: 1080px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media only screen and (min-width: 2000px) {
  section.panel-solutions-discover .image {
    padding-bottom: 36%;
  }
  section.panel-solutions-discover .text {
    padding: 5%;
  }
}
section.panel-solutions-casestudies .image {
  width: 100%;
  height: 0;
  padding-bottom: 86%;
  position: relative;
  margin-bottom: 10%;
}
section.panel-solutions-casestudies .swiperNavigation {
  color: #7DFDFF;
}
section.panel-solutions-casestudies .count {
  width: 25px;
  height: 25px;
  line-height: 23px;
  text-align: center;
  border: solid 1px #7DFDFF;
  display: inline-block;
  margin-right: 15px;
  float: left;
}
section.panel-solutions-casestudies p {
  padding-top: 5px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  section.panel-solutions-casestudies .swiperNavigation {
    margin-right: -5%;
  }
  section.panel-solutions-casestudies .swiperCaseStudies {
    margin-right: calc((100vw - 100%)/-2);
  }
  section.panel-solutions-casestudies .sectionInnerWrapper {
    padding-top: 10%;
  }
  section.panel-solutions-casestudies .image {
    padding-bottom: 52%;
    margin-bottom: 5%;
  }
  section.panel-solutions-casestudies .count {
    width: 35px;
    height: 35px;
    line-height: 33px;
    margin-right: 30px;
  }
  section.panel-solutions-casestudies p {
    padding-top: 6px;
  }
}
@media only screen and (min-width: 992px) {
  section.panel-solutions-casestudies .swiperNavigation {
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1200px) {
  section.panel-solutions-casestudies .swiperNavigation {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1800px) {
  section.panel-solutions-casestudies .swiperNavigation {
    margin-right: 5%;
  }
}
/** CASE STUDIES LIST **/
.tile-casestudy {
  margin-bottom: 15%;
}
.tile-casestudy .image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  margin: 0 0 20px 0;
}
.tile-casestudy .text {
  display: block;
  position: absolute;
  z-index: 5;
  left: 7%;
  right: 7%;
  top: 12%;
  bottom: 12%;
  padding: 12%;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.tile-casestudy .text .btn-download .ion {
  color: #7DFDFF;
  border: none;
  background: rgba(255, 255, 255, 0.15);
}
.tile-casestudy:hover .text {
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .tile-casestudy {
    margin-bottom: 50px;
  }
  .tile-casestudy .text .innerWrapper {
    display: flex;
    height: 100%;
    align-items: center;
  }
  .tile-casestudy .text .btn-download {
    position: absolute;
    bottom: 10%;
    right: 10%;
  }
  .tile-casestudy .image {
    margin: 0 0 20px 0;
  }
  .tile-casestudy.tile-casestudy-small .image {
    padding-bottom: 130%;
  }
  .tile-casestudy.tile-casestudy-large .image {
    padding-bottom: 100%;
  }
  .tile-casestudy.tile-casestudy-large .text {
    left: 20%;
    right: 20%;
    top: 20%;
    bottom: 20%;
    padding: 8%;
  }
}
/** SINGLE CASE STUDY **/
section.panel-casestudy-header {
  padding-top: 30%;
}
section.panel-casestudy-header .sectionInnerWrapper {
  border: none;
}
section.panel-casestudy-header table.table-casestudy-overview {
  width: 100%;
}
section.panel-casestudy-header table.table-casestudy-overview td {
  padding-bottom: 10px;
}
section.panel-casestudy-header table.table-casestudy-overview td.title {
  width: 50%;
}
section.panel-casestudy-header table.table-casestudy-overview td.value {
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  section.panel-casestudy-header .sectionInnerWrapper {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-casestudy-header {
    border-bottom: solid 1px rgba(187, 192, 199, 0.5);
    padding-top: 200px;
  }
  section.panel-casestudy-header table.table-casestudy-overview td {
    padding-bottom: 5px;
  }
  section.panel-casestudy-header table.table-casestudy-overview td.title {
    width: 30%;
  }
}
section.panel-casestudy-values .image {
  width: 100%;
  height: 0;
  padding-bottom: 53%;
  position: relative;
  margin-bottom: 15%;
  margin-top: 10%;
}
@media only screen and (max-width: 767px) {
  section.panel-casestudy-values .tile-value {
    margin-bottom: 30px;
  }
  section.panel-casestudy-values .tile-value .title,
  section.panel-casestudy-values .tile-value .value {
    width: 50%;
    float: left;
  }
  section.panel-casestudy-values .tile-value .title {
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-casestudy-values .image {
    padding-bottom: 36%;
    margin-bottom: 5%;
    margin-top: 5%;
  }
}
section.panel-casestudy-objectives table.table-casestudy-objectives {
  width: 100%;
}
section.panel-casestudy-objectives table.table-casestudy-objectives tr {
  border-bottom: solid 1px rgba(187, 192, 199, 0.5);
}
section.panel-casestudy-objectives table.table-casestudy-objectives tr:first-child {
  border-top: solid 1px rgba(187, 192, 199, 0.5);
}
section.panel-casestudy-objectives table.table-casestudy-objectives td {
  width: 50%;
  padding: 10px 0;
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  section.panel-casestudy-objectives .sectionInnerWrapper {
    padding-top: 0;
  }
  section.panel-casestudy-objectives table.table-casestudy-objectives {
    display: block;
  }
  section.panel-casestudy-objectives table.table-casestudy-objectives tr {
    width: 100%;
    display: block;
  }
  section.panel-casestudy-objectives table.table-casestudy-objectives td {
    width: 100%;
    display: block;
    padding: 20px 0;
  }
  section.panel-casestudy-objectives table.table-casestudy-objectives td.title {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-casestudy-objectives table.table-casestudy-objectives td {
    padding: 30px 20px 30px 0;
  }
  section.panel-casestudy-objectives table.table-casestudy-objectives td.value {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 767px) {
  section.panel-casestudy-video .text {
    padding: 45px 45px 0 45px;
  }
}
section.panel-casestudy-fixtures .panelWrapper {
  background: #FAFAFA;
}
@media only screen and (max-width: 767px) {
  section.panel-casestudy-fixtures {
    background: #FAFAFA;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-casestudy-fixtures .panelWrapper {
    padding: 5% 8%;
  }
  section.panel-casestudy-fixtures .tile-stat {
    margin-bottom: 5%;
  }
}
section.panel-casestudy-stats .tile-stat {
  padding-bottom: 30px;
}
section.panel-casestudy-stats .tile-stat .outerWrapper {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
section.panel-casestudy-stats .tile-stat .innerWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
}
section.panel-casestudy-stats .tile-stat .stat {
  font-size: 7.5vw;
  line-height: 1.2em;
  letter-spacing: 1px;
  margin-bottom: 5%;
}
@media only screen and (min-width: 768px) {
  section.panel-casestudy-stats .tile-stat {
    width: 20%;
    padding: 20px;
  }
  section.panel-casestudy-stats .tile-stat .innerWrapper {
    padding: 15% 15% 0 15%;
  }
  section.panel-casestudy-stats .tile-stat .stat {
    font-size: 2.7vw;
    line-height: 1.2em;
    letter-spacing: 1px;
    margin-bottom: 15%;
  }
}
@media only screen and (min-width: 1400px) {
  section.panel-casestudy-stats .rowStat {
    margin-left: -40px;
    margin-right: -40px;
  }
  section.panel-casestudy-stats .tile-stat {
    width: 20%;
    padding: 40px;
  }
}
@media only screen and (min-width: 2000px) {
  section.panel-casestudy-stats .tile-stat .stat {
    font-size: 55px;
    line-height: 60px;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-casestudy-image-gallery .swiperCaseStudyGallery .swiper-slide {
    width: auto;
  }
  section.panel-casestudy-image-gallery .swiperCaseStudyGallery img {
    max-height: 525px;
  }
}
section.panel-casestudy-keyinsights hr {
  margin-bottom: 30px;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  section.panel-casestudy-keyinsights .sectionInnerWrapper {
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-casestudy-keyinsights .tile-keyinsight {
    margin-bottom: 5%;
  }
  section.panel-casestudy-keyinsights .tile-keyinsight .innerWrapper {
    height: 100%;
    max-width: 80%;
    padding-bottom: 2%;
    border-bottom: solid 1px #BBC0C7;
  }
}
@media only screen and (max-width: 767px) {
  section.panel-casestudy-quote-additional .tile-quote .outerWrapper {
    padding: 30px 20% 30px 30px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-casestudy-quote-additional .tile-quote {
    padding: 20px;
  }
  section.panel-casestudy-quote-additional .tile-quote .outerWrapper {
    width: 100%;
    height: 0;
    padding-bottom: 114%;
    position: relative;
  }
  section.panel-casestudy-quote-additional .tile-quote .innerWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
  }
  section.panel-casestudy-quote-additional .tile-quote .name {
    position: absolute;
    bottom: 40px;
    left: 20px;
  }
}
/** NEWS **/
.single-news,
.page-template-news,
.post-type-archive-news {
  background: #4B4F55;
}
.social.a2a_kit span.a2a_svg {
  display: none;
}
section.panel-news-article a {
  color: #4B4F55;
}
section.panel-news-article .sectionInnerWrapper {
  padding-top: 0;
}
section.panel-news-article .category {
  display: inline-block;
}
section.panel-news-article ul.social {
  margin: 0;
  padding: 0;
}
section.panel-news-article ul.social li {
  list-style: none;
  margin: 0 10px 0 0;
  padding: 0;
  display: inline-block;
}
section.panel-news-article ul.social li a {
  text-decoration: underline;
}
section.panel-news-article .image {
  width: 100%;
  height: 0;
  padding-bottom: 35%;
}
section.panel-news-article .innerWrapper {
  padding: 10% 0 20% 0;
}
@media only screen and (max-width: 767px) {
  section.panel-news-article ul.social {
    font-size: 3.5vw;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-news-article ul.social {
    line-height: 40px;
  }
  section.panel-news-article .image {
    padding-bottom: 30%;
    margin-bottom: 5%;
    position: static;
  }
  section.panel-news-article .sectionInnerWrapper {
    padding-top: 0;
    padding-bottom: 2%;
  }
  section.panel-news-article .innerWrapper {
    padding: 8% 8% 5% 8%;
  }
}
section.panel-news-list .sectionInnerWrapper {
  padding-top: 0;
}
section.panel-news-list .loadMoreWrapper {
  padding-top: 8%;
  padding-bottom: 5%;
}
.tile-news {
  border-bottom: solid 1px rgba(187, 192, 199, 0.5);
}
.tile-news .image {
  padding-bottom: 35%;
}
.tile-news .category {
  display: inline-block;
}
.tile-news .col-content {
  padding: 30px 45px;
}
.tile-news .col-cta {
  padding: 0 45px 30px 45px;
}
.tile-news .btn-continue span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  font-weight: bold;
}
.tile-news .btn-continue .ion {
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  border: solid 1px #FFF;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  color: #7DFDFF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .tile-news {
    margin-right: calc((100vw - 100% - 100px)/-2);
  }
  .tile-news .image {
    padding-bottom: 78%;
  }
  .tile-news .col-image {
    padding: 0;
  }
  .tile-news .col-content {
    padding: 3% 15px;
  }
  .tile-news .col-cta {
    padding: 3% 15px;
  }
}
/** CONTACT PAGE **/
.page-template-page-contact_us .pageWrapper a {
  text-decoration: underline;
}
.page-template-page-contact_us .pageWrapper section .sectionInnerWrapper {
  border: none;
}
.page-template-page-contact_us .pageWrapper section.panel-contact-header {
  border: none;
}
section.panel-contact-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  opacity: 1;
}
section.panel-contact-form ::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
}
section.panel-contact-form :-ms-input-placeholder {
  /* IE 10+ */
  opacity: 1;
}
section.panel-contact-form :-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  section.panel-contact-form ul.gform_fields li {
    margin-bottom: 30px;
  }
}
section.panel-contact-general {
  background: rgba(255, 255, 255, 0.03);
}
section.panel-contact-showroom .image {
  width: 100%;
  height: 0;
  padding-bottom: 140%;
  position: relative;
}
section.panel-contact-showroom .image iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
section.panel-contact-showroom .text {
  width: 100%;
  padding-top: 10%;
  padding-bottom: 5%;
  background: rgba(255, 255, 255, 0.03);
}
@media only screen and (min-width: 768px) {
  section.panel-contact-showroom .image {
    padding-bottom: 85%;
  }
}
/** FAQS PAGE **/
section.panel-faqs-header {
  padding-top: 30%;
}
section.panel-faqs-header .sectionInnerWrapper {
  border: none;
}
@media only screen and (max-width: 767px) {
  section.panel-faqs-header ul {
    margin-top: 10% !important;
  }
  section.panel-faqs-header ul.tags li.title {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-faqs-header {
    border-bottom: solid 1px rgba(187, 192, 199, 0.5);
    padding-top: 200px;
  }
}
section.panel-faqs ul.accordion {
  margin: 0;
  padding: 0;
  height: auto !important;
}
section.panel-faqs ul.accordion li {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: solid 1px rgba(187, 192, 199, 0.5);
  position: relative !important;
  top: auto !important;
  left: auto !important;
}
section.panel-faqs ul.accordion li .tabTitle {
  position: relative;
  cursor: pointer;
  padding: 15px 30px 15px 0;
}
section.panel-faqs ul.accordion li .tabTitle:after {
  content: "\f489";
  font-family: 'Ionicons';
  font-size: 30px;
  position: absolute;
  right: 0;
  bottom: 5px;
  color: #7DFDFF;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (min-width: 768px) {
  section.panel-faqs ul.accordion li .tabTitle:after {
    top: 50%;
    bottom: auto;
  }
}
section.panel-faqs ul.accordion li .tabContent {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
section.panel-faqs ul.accordion li.active .tabTitle:after {
  content: "\f462";
}
section.panel-faqs ul.accordion li.active .tabContent {
  max-height: 1000px;
}
section.panel-faqs ul.accordion li .content {
  padding: 30px;
  display: block !important;
  background: rgba(235, 235, 235, 0.04);
}
section.panel-faqs .helpful a.active {
  color: #7DFDFF;
}
@media only screen and (min-width: 768px) {
  section.panel-faqs {
    padding-top: 200px;
  }
  section.panel-faqs ul.accordion li .tabTitle {
    padding: 2% 0;
  }
  section.panel-faqs ul.accordion li .content {
    padding: 5% 8% 2% 8%;
  }
}
