/*
* strip-unit - Unit stripper [10px = 10]
* param - $num : the value with a unit suffix, E.g: 10px
* return - $result : the value without any suffix, E.g: 10
* E.g. strip-unit(100px) = 100
*/
/*
* pxToEM - Convert PX value to EM value [100px = 6.25em]
* param - $target : the value in px without 'px' suffix, E.g: 100
* return - $result : the value in em with 'em' suffix, E.g: 6.25em
* E.g. pxToEM(100) = 6.25em
*/
/*
* u - PX and REM constrictor
* param - $property : css property, E.g: padding
* param - $values... : list of values for the property, note values are multiplied by $pixelBase, E.g.: 10, 20, 30, 40
* return - $result : the css property with values applied in pixels
* E.g. @include u(padding, 10, 20, 30, 40) = padding: 100px, 200px, 300px, 400px;
*/
/*! Variables */
/*! Mixins */
@import url("https://use.typekit.net/ocv5mpu.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); } }

/*! Fonts and Typography */
body, div, p, li, span {
  font-family: 'Roboto', sans-serif; }

.h1, .h2, .h3, .h4, .h5, h1, h2, h3, h4, h5, h6 {
  font-family: orbitron, sans-serif;
  font-weight: 700;
  color: #2D6BA8;
  font-style: normal; }
  .h1 > span, .h2 > span, .h3 > span, .h4 > span, .h5 > span, h1 > span, h2 > span, h3 > span, h4 > span, h5 > span, h6 > span {
    font-family: orbitron, sans-serif; }

a {
  color: #2D6BA8; }

/*! Buttons / Links */
.buttons,
.c2btnconfirmadd,
.c2btnreset,
.c2btnsearch,
.c2btnupdate,
.c2btncheckoutnow,
a.blue-button,
a.ldic_resbtn {
  padding: 0.5rem 1rem;
  display: inline-block;
  background: #2D6BA8;
  border: 1px solid #2D6BA8;
  color: white !important; }
  .buttons:hover,
  .c2btnconfirmadd:hover,
  .c2btnreset:hover,
  .c2btnsearch:hover,
  .c2btnupdate:hover,
  .c2btncheckoutnow:hover,
  a.blue-button:hover,
  a.ldic_resbtn:hover {
    background: #333;
    border: 1px solid #333;
    color: white !important;
    text-decoration: none; }

.ldic_Rese {
  background: transparent !important;
  border: 0px solid black !important;
  padding: 0 !important;
  margin: 1.5rem 0 0 0 !important; }

a.white-button {
  padding: 0.5rem 1rem;
  display: inline-block;
  background: white;
  border: 1px solid white;
  color: #2D6BA8 !important; }
  a.white-button:hover {
    background: #2D6BA8;
    border: 1px solid #2D6BA8;
    color: white !important;
    text-decoration: none; }

a.white-outline-button {
  padding: 0.5rem 1rem;
  display: inline-block;
  background: transparent;
  border: 1px solid white;
  color: white !important; }
  a.white-outline-button:hover {
    background: white;
    border: 1px solid white;
    color: #2D6BA8 !important;
    text-decoration: none; }

a.red-button {
  padding: 0.5rem 1rem;
  display: inline-block;
  background: #c50005;
  border: 1px solid #c50005;
  color: white !important; }
  a.red-button:hover {
    background: #333;
    border: 1px solid #333;
    color: white !important;
    text-decoration: none; }

a.red-link {
  display: inline-block;
  position: relative;
  transition: all 1s ease;
  line-height: 2rem;
  font-family: orbitron, sans-serif;
  font-weight: 700;
  padding-right: 4rem;
  color: #c50005;
  width: 100%; }
  a.red-link:after {
    background-image: url("/p/1/red-chevron.svg"); }
  a.red-link:after {
    top: 50%;
    background-size: 100% 100%;
    width: 2rem;
    content: "";
    height: 2rem;
    display: block;
    position: absolute;
    transform: translateY(-50%);
    right: 0; }
  a.red-link:hover {
    width: 100%;
    text-decoration: none; }

/*! Helpers */
@media (min-width: 1025px) {
  .narrowText > * {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto; } }

.grey-bg {
  background: #dadde1; }

.light-grey-bg {
  background: #f9f9f9; }

.blue-bg {
  background: #2D6BA8; }

.red-bg {
  background: #c50005; }

.green-bg {
  background: #289262; }
  .green-bg * {
    color: white; }

.red-text {
  color: #c50005; }

/*! MMenu */
/*!
 * Mmenu Light
 * mmenujs.com/mmenu-light
 *
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-4.0
 * http://creativecommons.org/licenses/by/4.0/
 */
:root {
  --mm-ocd-width:80%;
  --mm-ocd-min-width:200px;
  --mm-ocd-max-width:440px; }

body.mm-ocd-opened {
  overflow-y: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: none; }

.mm-ocd {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 100%;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  background: rgba(0, 0, 0, 0);
  -webkit-transition-property: bottom,background-color;
  -o-transition-property: bottom,background-color;
  transition-property: bottom,background-color;
  -webkit-transition-duration: 0s,.3s;
  -o-transition-duration: 0s,.3s;
  transition-duration: 0s,.3s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: .45s,.15s;
  -o-transition-delay: .45s,.15s;
  transition-delay: .45s,.15s; }

.mm-ocd--open {
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s; }

.mm-ocd__content {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80%;
  width: var(--mm-ocd-width);
  min-width: 200px;
  min-width: var(--mm-ocd-min-width);
  max-width: 440px;
  max-width: var(--mm-ocd-max-width);
  background: #fff;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease; }

.mm-ocd--left .mm-ocd__content {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-ocd--right .mm-ocd__content {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-ocd--open .mm-ocd__content {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-ocd__backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: calc(100% - 80%);
  width: calc(100% - var(--mm-ocd-width));
  min-width: calc(100% - 440px);
  min-width: calc(100% - var(--mm-ocd-max-width));
  max-width: calc(100% - 200px);
  max-width: calc(100% - var(--mm-ocd-min-width));
  background: rgba(3, 2, 1, 0); }

.mm-ocd--left .mm-ocd__backdrop {
  right: 0; }

.mm-ocd--right .mm-ocd__backdrop {
  left: 0; }

.mm-spn, .mm-spn a, .mm-spn li, .mm-spn span, .mm-spn ul {
  display: block;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

:root {
  --mm-spn-item-height:50px;
  --mm-spn-item-indent:20px;
  --mm-spn-line-height:24px; }

.mm-spn {
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.mm-spn ul {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 100%;
  bottom: 0;
  z-index: 2;
  width: 130%;
  padding-right: 30%;
  line-height: 24px;
  line-height: var(--mm-spn-line-height);
  overflow: visible;
  overflow-y: auto;
  background: inherit;
  -webkit-transition: left .3s ease 0s;
  -o-transition: left .3s ease 0s;
  transition: left .3s ease 0s;
  cursor: default; }

.mm-spn ul:after {
  content: '';
  display: block;
  height: 50px;
  height: var(--mm-spn-item-height); }

.mm-spn > ul {
  left: 0; }

.mm-spn ul.mm-spn--open {
  left: 0; }

.mm-spn ul.mm-spn--parent {
  left: -30%;
  overflow-y: hidden; }

.mm-spn li {
  position: relative;
  background: inherit;
  cursor: pointer; }

.mm-spn li:before {
  content: '';
  display: block;
  position: absolute;
  top: 25px;
  top: calc(var(--mm-spn-item-height)/ 2);
  right: 25px;
  right: calc(var(--mm-spn-item-height)/ 2);
  z-index: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg) translate(0, -50%);
  -ms-transform: rotate(45deg) translate(0, -50%);
  transform: rotate(45deg) translate(0, -50%);
  opacity: .4; }

.mm-spn li:after {
  content: '';
  display: block;
  margin-left: 20px;
  margin-left: var(--mm-spn-item-indent);
  border-top: 1px solid;
  opacity: .15; }

.mm-spn a, .mm-spn span {
  position: relative;
  z-index: 1;
  padding: 13px 20px;
  padding: calc((var(--mm-spn-item-height) - var(--mm-spn-line-height))/ 2) var(--mm-spn-item-indent); }

.mm-spn a {
  background: inherit;
  color: inherit;
  text-decoration: none; }

.mm-spn a:not(:last-child) {
  width: calc(100% - 50px);
  width: calc(100% - var(--mm-spn-item-height)); }

.mm-spn a:not(:last-child):after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  opacity: .15; }

.mm-spn span {
  background: 0 0; }

.mm-spn.mm-spn--navbar {
  cursor: pointer; }

.mm-spn.mm-spn--navbar:before {
  content: '';
  display: block;
  position: absolute;
  top: 25px;
  top: calc(var(--mm-spn-item-height)/ 2);
  left: 20px;
  left: var(--mm-spn-item-indent);
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border-top: 2px solid;
  border-left: 2px solid;
  -webkit-transform: rotate(-45deg) translate(50%, -50%);
  -ms-transform: rotate(-45deg) translate(50%, -50%);
  transform: rotate(-45deg) translate(50%, -50%);
  opacity: .4; }

.mm-spn.mm-spn--navbar.mm-spn--main {
  cursor: default; }

.mm-spn.mm-spn--navbar.mm-spn--main:before {
  content: none;
  display: none; }

.mm-spn.mm-spn--navbar:after {
  content: attr(data-mm-spn-title);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  height: var(--mm-spn-item-height);
  padding: 0 40px;
  padding: 0 calc(var(--mm-spn-item-indent) * 2);
  line-height: 50px;
  line-height: var(--mm-spn-item-height);
  opacity: .4;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis; }

.mm-spn.mm-spn--navbar.mm-spn--main:after {
  padding-left: 20px;
  padding-left: var(--mm-spn-item-indent); }

.mm-spn.mm-spn--navbar ul {
  top: 51px;
  top: calc(var(--mm-spn-item-height) + 1px); }

.mm-spn.mm-spn--navbar ul:before {
  content: '';
  display: block;
  position: fixed;
  top: inherit;
  z-index: 2;
  width: 100%;
  border-top: 1px solid currentColor;
  opacity: .15; }

.mm-spn.mm-spn--light {
  color: #444;
  background: #f3f3f3; }

.mm-spn.mm-spn--dark {
  color: #ddd;
  background: #333; }

.mm-spn.mm-spn--vertical {
  overflow-y: auto; }

.mm-spn.mm-spn--vertical ul {
  width: 100%;
  padding-right: 0;
  position: static; }

.mm-spn.mm-spn--vertical ul ul {
  display: none;
  padding-left: 20px;
  padding-left: var(--mm-spn-item-indent); }

.mm-spn.mm-spn--vertical ul ul:after {
  height: 25px;
  height: calc(var(--mm-spn-item-height)/ 2); }

.mm-spn.mm-spn--vertical ul.mm-spn--open {
  display: block; }

.mm-spn.mm-spn--vertical li.mm-spn--open:before {
  -webkit-transform: rotate(135deg) translate(-50%, 0);
  -ms-transform: rotate(135deg) translate(-50%, 0);
  transform: rotate(135deg) translate(-50%, 0); }

.mm-spn.mm-spn--vertical ul ul li:last-child:after {
  content: none;
  display: none; }

/*! Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 0 0.5rem;
  border-bottom: 1px solid white;
  transition: all 0.5s ease;
  background: rgba(0, 0, 0, 0); }
  .header.scrolledDown {
    background: rgba(0, 0, 0, 0.75); }
  .header > * {
    width: 100%; }
  .header__row > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 0; }
  .header__branding {
    width: 80%; }
    @media (min-width: 992px) {
      .header__branding {
        width: 20%; } }
  .header__menu {
    display: none;
    text-align: center; }
    @media (min-width: 992px) {
      .header__menu {
        display: block;
        width: 70%; } }
  .header__icons {
    display: flex;
    width: 20%;
    align-items: center; }
    @media (min-width: 992px) {
      .header__icons {
        width: 10%; } }
    .header__icons__icon {
      position: relative; }
      .header__icons__icon__link {
        padding: 0.5rem; }
        .header__icons__icon__link img {
          width: 28px;
          height: auto; }
      .header__icons__icon h2 {
        font-size: 1rem; }
      .header__icons__icon__pop {
        position: absolute;
        padding: 1rem;
        background: white;
        -webkit-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
        -moz-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
        box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
        right: 0;
        top: 170%;
        width: 400px;
        max-width: 90vw; }
        .header__icons__icon__pop label {
          display: none; }
        .header__icons__icon__pop .searchBoxForm {
          display: flex; }
          .header__icons__icon__pop .searchBoxForm input, .header__icons__icon__pop .searchBoxForm button {
            height: 2.5rem; }
          .header__icons__icon__pop .searchBoxForm input[type="text"],
          .header__icons__icon__pop .searchBoxForm .SearchBox {
            width: 100%; }
  .header .main-menu {
    display: block;
    margin: 0 auto; }
    .header .main-menu ul {
      padding: 0;
      margin: 0;
      list-style: none; }
    .header .main-menu a {
      display: block;
      font-weight: 700; }
    .header .main-menu > ul {
      display: flex;
      align-items: center;
      justify-content: center; }
      .header .main-menu > ul > li {
        position: relative; }
        .header .main-menu > ul > li > a {
          line-height: 3rem;
          color: white;
          padding: 0 0.5rem; }
        .header .main-menu > ul > li ul.lev2 {
          -webkit-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
          -moz-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
          box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
          position: absolute;
          background: #fff; }
          .header .main-menu > ul > li ul.lev2 a {
            font-weight: 500; }
          .header .main-menu > ul > li ul.lev2 li.lev2 {
            min-width: 150px; }
            .header .main-menu > ul > li ul.lev2 li.lev2 > a {
              color: #2D6BA8;
              line-height: 2rem;
              text-align: left;
              padding: 0.5rem 1rem; }
              .header .main-menu > ul > li ul.lev2 li.lev2 > a:hover {
                text-decoration: none;
                background: #2D6BA8;
                color: white; }
          .header .main-menu > ul > li ul.lev2 ul.lev3 {
            background: #dadde1; }
          .header .main-menu > ul > li ul.lev2 li.lev3 > a {
            color: #2D6BA8;
            position: relative;
            display: block;
            line-height: 1rem;
            text-align: left;
            font-size: 0.9rem;
            padding: 0.5rem 2rem 0.5rem 1.5rem; }
            .header .main-menu > ul > li ul.lev2 li.lev3 > a::after {
              content: ">";
              font-weight: 700;
              top: 50%;
              right: 0.5rem;
              transform: translateY(-50%);
              position: absolute; }
            .header .main-menu > ul > li ul.lev2 li.lev3 > a:hover {
              text-decoration: none;
              background: #2D6BA8;
              color: white; }
              .header .main-menu > ul > li ul.lev2 li.lev3 > a:hover::after {
                color: white; }
        .header .main-menu > ul > li:not(:hover) > ul {
          display: none; }

#menu-button {
  display: flex;
  flex-direction: column; }
  #menu-button span {
    width: 2rem;
    background: white;
    height: 0.15rem;
    display: block;
    margin: 0.2rem 0; }

/*! Main */
#main .row > *:not([class*="col"]) {
  max-width: 100%;
  flex: 0 0 100%;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 15px; }

.main {
  overflow: hidden; }
  .main img {
    max-width: 100%;
    height: auto; }

.location {
  padding: 1rem 0;
  background: #f9f9f9; }

/*! Footer */
.footer img {
  max-width: 100%;
  height: auto;
  margin: 0 auto; }

@media (max-width: 991px) {
  .footer ul {
    padding: 0;
    list-style: none; } }

.footer__columns__branding > * {
  margin: 0 auto; }

.footer__copyright {
  border-top: 1px solid #707070; }

.footer p, .footer li {
  color: #707070; }

.footer a {
  color: #707070; }

.footer h3 {
  font-size: 1.4rem;
  color: #2D6BA8; }

@media (max-width: 767px) {
  .footer ul {
    list-style: none; } }

/*! Banner */
.page-banner {
  height: 50vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  position: relative;
  z-index: 1; }
  .page-banner--stretch-Yes {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw; }
  .page-banner > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .page-banner > div * {
      color: white; }
  .page-banner--article {
    background-color: #2D6BA8; }
    .page-banner--article > div {
      width: 100%;
      top: 55%; }
  .page-banner * {
    z-index: 10; }
  .page-banner:after {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    content: "";
    z-index: 5; }

/*! Slider Banner */
.slider-banner {
  height: 50vh !important; }
  @media (min-width: 992px) {
    .slider-banner {
      height: 80vh !important; }
      .slider-banner--half {
        height: 50vh !important; }
      .slider-banner--thin {
        height: 30vh !important; } }
  .slider-banner__slide {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
    .slider-banner__slide__inner {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      width: 100%;
      z-index: 10; }
      .slider-banner__slide__inner * {
        color: white; }
      @media (min-width: 992px) {
        .slider-banner__slide__inner > .container > * {
          max-width: 50vw; } }
    .slider-banner__slide:after {
      width: 100%;
      height: 100%;
      position: absolute;
      background: rgba(0, 0, 0, 0.3);
      content: "";
      z-index: 5; }

.swiper-button-prev,
.swiper-container-rtl,
.swiper-button-next {
  color: white !important; }

/*! Social Media Icons */
.social-media-icons {
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
  display: flex;
  justify-content: center; }
  @media (min-width: 992px) {
    .social-media-icons {
      justify-content: flex-start; } }
  .social-media-icons li {
    margin: 0 1rem; }
    @media (min-width: 992px) {
      .social-media-icons li {
        margin: 0 1rem 0 0; } }
  .social-media-icons__icon {
    border: 2px solid #707070;
    border-radius: 5rem;
    display: block;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    position: relative;
    padding: 1rem; }
    .social-media-icons__icon:hover {
      background: rgba(112, 112, 112, 0.1); }
    .social-media-icons__icon img {
      height: 1.5rem;
      width: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }

/*! Certificates */
.certificates > div {
  display: flex;
  flex-wrap: wrap; }
  .certificates > div > div {
    height: 50px;
    padding: 10px; }
    .certificates > div > div > img {
      height: 100%;
      width: auto; }

/*! Call To Action Boxes */
.cta p:last-child {
  margin-bottom: 0; }

.cta h3 {
  text-align: center;
  width: 100%;
  margin: 2rem 0; }

.cta__wrapping-link {
  display: block; }
  .cta__wrapping-link:hover {
    text-decoration: none; }

.cta .arrow {
  font-weight: 500 !important; }

.cta__content {
  transition: all 0.4s ease;
  transform: scale(1);
  padding: 1.5rem;
  max-width: 90%;
  position: relative;
  top: -2rem;
  margin: 0 auto;
  -webkit-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
  box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28); }
  .cta__content.red-bg .arrow {
    display: inline-block;
    position: relative;
    transition: all 1s ease;
    line-height: 2rem;
    font-family: orbitron, sans-serif;
    font-weight: 700;
    padding-right: 4rem;
    color: white;
    width: 100%; }
    .cta__content.red-bg .arrow:after {
      background-image: url("/p/1/white-chevron.svg"); }
    .cta__content.red-bg .arrow:after {
      top: 50%;
      background-size: 100% 100%;
      width: 2rem;
      content: "";
      height: 2rem;
      display: block;
      position: absolute;
      transform: translateY(-50%);
      right: 0; }
    .cta__content.red-bg .arrow:hover {
      width: 100%;
      text-decoration: none; }
  .cta__content.white-bg .arrow {
    display: inline-block;
    position: relative;
    transition: all 1s ease;
    line-height: 2rem;
    font-family: orbitron, sans-serif;
    font-weight: 700;
    padding-right: 4rem;
    color: #c50005;
    width: 100%; }
    .cta__content.white-bg .arrow:after {
      background-image: url("/p/1/red-chevron.svg"); }
    .cta__content.white-bg .arrow:after {
      top: 50%;
      background-size: 100% 100%;
      width: 2rem;
      content: "";
      height: 2rem;
      display: block;
      position: absolute;
      transform: translateY(-50%);
      right: 0; }
    .cta__content.white-bg .arrow:hover {
      width: 100%;
      text-decoration: none; }
  .cta__content.blue-bg .arrow {
    display: inline-block;
    position: relative;
    transition: all 1s ease;
    line-height: 2rem;
    font-family: orbitron, sans-serif;
    font-weight: 700;
    padding-right: 4rem;
    color: white;
    width: 100%; }
    .cta__content.blue-bg .arrow:after {
      background-image: url("/p/1/white-chevron.svg"); }
    .cta__content.blue-bg .arrow:after {
      top: 50%;
      background-size: 100% 100%;
      width: 2rem;
      content: "";
      height: 2rem;
      display: block;
      position: absolute;
      transform: translateY(-50%);
      right: 0; }
    .cta__content.blue-bg .arrow:hover {
      width: 100%;
      text-decoration: none; }
  .cta__content.green-bg .arrow {
    display: inline-block;
    position: relative;
    transition: all 1s ease;
    line-height: 2rem;
    font-family: orbitron, sans-serif;
    font-weight: 700;
    padding-right: 4rem;
    color: white;
    width: 100%; }
    .cta__content.green-bg .arrow:after {
      background-image: url("/p/1/white-chevron.svg"); }
    .cta__content.green-bg .arrow:after {
      top: 50%;
      background-size: 100% 100%;
      width: 2rem;
      content: "";
      height: 2rem;
      display: block;
      position: absolute;
      transform: translateY(-50%);
      right: 0; }
    .cta__content.green-bg .arrow:hover {
      width: 100%;
      text-decoration: none; }
  .cta__content:hover {
    transform: scale(1.05); }
  @media (min-width: 768px) {
    .cta__content {
      max-width: 70%; } }

.cta__image {
  -webkit-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
  box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  .cta__image:after {
    content: "";
    display: block;
    padding-top: 60%;
    width: 100%; }

.call-to-action-wrapper {
  position: relative; }
  .call-to-action-wrapper--features {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw; }
    .call-to-action-wrapper--features > .swiper-container {
      padding-top: 3rem;
      padding-bottom: 3rem; }
    .call-to-action-wrapper--features .swiper-button-prev, .call-to-action-wrapper--features .swiper-container-rtl, .call-to-action-wrapper--features .swiper-button-next {
      color: black !important; }
  .call-to-action-wrapper--sectors .call-to-action-row {
    background: white;
    -webkit-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
    box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
    margin-bottom: 4rem;
    flex-wrap: wrap; }
  .call-to-action-wrapper--sectors .call-to-action:not(:last-child) {
    border-right: 1px solid #dadde1; }
  .call-to-action-wrapper--sectors .call-to-action h3 {
    color: #2D6BA8;
    position: relative;
    padding-left: 3.5rem;
    line-height: 3rem; }
  .call-to-action-wrapper--sectors .call-to-action__icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); }

.call-to-action-row {
  display: flex; }

.call-to-action--sectors {
  width: 100%;
  position: relative;
  transform: scale(1);
  transition: transform 0.4s ease-in;
  z-index: 20; }
  @media (max-width: 1023px) {
    .call-to-action--sectors {
      margin-bottom: 2rem; } }
  @media (min-width: 1024px) {
    .call-to-action--sectors {
      width: 33%; } }
  .call-to-action--sectors:hover {
    transform: scale(1.1);
    background: #2D6BA8; }
    .call-to-action--sectors:hover * {
      color: white !important; }
    .call-to-action--sectors:hover a {
      text-decoration: none; }

.call-to-action__wrapping__link {
  padding: 3rem;
  color: black;
  display: block; }

.call-to-action > div {
  padding: 3rem; }

.call-to-action__link {
  display: none; }

.call-to-action__icon--military, .call-to-action__icon--vehicle, .call-to-action__icon--marine {
  width: 3rem;
  height: 3rem;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block; }

.call-to-action__icon--marine {
  background-image: url("/p/1/marine-icon.svg");
  background-size: auto 100%; }

.call-to-action__icon--vehicle {
  background-image: url("/p/1/vehicle-icon.svg");
  background-size: 100% auto; }

.call-to-action__icon--military {
  background-image: url("/p/1/military-icon.svg");
  background-size: 100% auto; }

.image-cta {
  width: 100%;
  position: relative; }
  .image-cta > a {
    position: relative;
    width: 80%;
    margin: 0 auto;
    display: block;
    z-index: 1; }
    .image-cta > a:after {
      padding-top: 120%;
      width: 100%;
      content: "";
      display: block; }
  .image-cta__image {
    width: 100%; }
    .image-cta__image img {
      width: 100%;
      height: 100%;
      max-width: 100%;
      max-height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 5; }
  .image-cta__heading {
    width: 100%;
    height: 100%;
    background: #2D6BA8;
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 2; }
  .image-cta__link {
    display: none; }

/*! List Items */
.news-summary,
.product-summary {
  margin-bottom: 2rem; }
  .news-summary > div,
  .product-summary > div {
    height: 100%;
    padding: 2rem;
    -webkit-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
    box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28); }

.call-to-action--features {
  height: auto !important; }

.call-to-action-wrapper--features .call-to-action-row,
.latest-news {
  display: flex; }
  @media (min-width: 1200px) {
    .call-to-action-wrapper--features .call-to-action-row,
    .latest-news {
      position: relative;
      width: 120%;
      left: -10%; } }
  .call-to-action-wrapper--features .call-to-action-row:not(.swiper-wrapper),
  .latest-news:not(.swiper-wrapper) {
    flex-wrap: wrap; }
  .call-to-action-wrapper--features .call-to-action-row article,
  .latest-news article {
    width: 100%; }
    .call-to-action-wrapper--features .call-to-action-row article > div,
    .latest-news article > div {
      width: 90%;
      height: 100%;
      margin: 0 auto;
      padding: 2rem 2rem 4.5rem 2rem;
      -webkit-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
      -moz-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
      box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
      background: white;
      position: relative; }
    @media (min-width: 600px) {
      .call-to-action-wrapper--features .call-to-action-row article,
      .latest-news article {
        width: 49%; } }
    @media (min-width: 992px) {
      .call-to-action-wrapper--features .call-to-action-row article,
      .latest-news article {
        width: 32%; } }
    .call-to-action-wrapper--features .call-to-action-row article .call-to-action__image,
    .latest-news article .call-to-action__image {
      height: 200px;
      width: 100%;
      text-align: center;
      margin-bottom: 2rem; }
    .call-to-action-wrapper--features .call-to-action-row article img,
    .latest-news article img {
      float: none !important;
      width: auto;
      height: 100%; }
    .call-to-action-wrapper--features .call-to-action-row article .blue-button,
    .latest-news article .blue-button {
      position: absolute;
      bottom: 2rem;
      left: 2rem; }

/*! Text and Image */
.text-and-image--overlay-block, .text-and-image--contained-block {
  height: 100%;
  padding: 2rem 2rem 5rem 2rem;
  position: relative; }
  .text-and-image--overlay-block .text-and-image__image, .text-and-image--contained-block .text-and-image__image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    z-index: 10;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0; }
  .text-and-image--overlay-block .text-and-image__content, .text-and-image--contained-block .text-and-image__content {
    z-index: 20;
    position: relative;
    width: 100%;
    padding: 2rem; }
    @media (min-width: 768px) {
      .text-and-image--overlay-block .text-and-image__content, .text-and-image--contained-block .text-and-image__content {
        width: 70%; } }
    .text-and-image--overlay-block .text-and-image__content p:last-of-type, .text-and-image--contained-block .text-and-image__content p:last-of-type {
      margin-bottom: 0; }
    .text-and-image--overlay-block .text-and-image__content div:last-child img, .text-and-image--contained-block .text-and-image__content div:last-child img {
      position: absolute;
      bottom: -3rem;
      right: -3rem;
      width: 10rem;
      height: auto; }

.text-and-image--overlay-block .text-and-image__content * {
  color: white; }

@media (min-width: 768px) {
  .text-and-image--overlay-block .text-and-image__content {
    width: 100%; } }

.text-and-image--panel-with-text-block {
  padding: 4rem; }
  .text-and-image--panel-with-text-block .text-and-image__image {
    width: 100vw;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    z-index: 10; }
  .text-and-image--panel-with-text-block .text-and-image__content {
    z-index: 20;
    position: relative;
    width: 100%;
    padding: 2rem; }
    @media (min-width: 992px) {
      .text-and-image--panel-with-text-block .text-and-image__content {
        width: 40%;
        left: 45%; } }
    .text-and-image--panel-with-text-block .text-and-image__content p:last-child {
      margin-bottom: 0; }

.text-and-image--split {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  top: 0; }
  .text-and-image--split .text-and-image__content {
    padding: 3rem; }
  .text-and-image--split .text-and-image__image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative; }
    .text-and-image--split .text-and-image__image:before {
      background-image: url(/p/1/watermark.svg);
      background-size: auto 80%;
      background-position: center center;
      background-repeat: no-repeat;
      background-color: rgba(0, 0, 0, 0.2);
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      content: ""; }
  @media (max-width: 767px) {
    .text-and-image--split .text-and-image__image:after {
      padding-top: 56.25%;
      width: 100%;
      display: block;
      content: ""; } }
  @media (min-width: 768px) {
    .text-and-image--split {
      display: flex;
      flex-wrap: wrap;
      flex-direction: row-reverse; }
      .text-and-image--split .text-and-image__image,
      .text-and-image--split .text-and-image__content {
        width: 50%; }
      .text-and-image--split .text-and-image__image {
        height: auto; }
      .text-and-image--split .text-and-image__content {
        padding: 5rem 3rem 5rem 10vw; } }

/*! Video Skin */
.jp-video .igvideo_quality {
  background: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='cog' class='svg-inline--fa fa-cog fa-w-16' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='white' d='M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat; }
  .jp-video .igvideo_quality:hover {
    opacity: 0.8; }

.jp-video .jp-restore-screen {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z' fill='white' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat; }
  .jp-video .jp-restore-screen:hover {
    opacity: 0.8; }

.jp-video .jp-full-screen {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat; }
  .jp-video .jp-full-screen:hover {
    opacity: 0.8; }

.jp-video .jp-pause {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M6 19h4V5H6v14zm8-14v14h4V5h-4z' fill='white' /%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat; }
  .jp-video .jp-pause:hover {
    opacity: 0.8; }

.jp-video .jp-play {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z' fill='white' /%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat; }
  .jp-video .jp-play:hover {
    opacity: 0.8; }

.jp-video .igvi_bigplay_button {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M10 16.5l6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z' fill='white' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat; }
  .jp-video .igvi_bigplay_button:hover {
    opacity: 0.8; }

.jp-video .igvi_bigunmute_button {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z' fill='white' /%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat; }
  .jp-video .igvi_bigunmute_button:hover {
    opacity: 0.8; }

.jp-video .igvideo_volume {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z' fill='white' /%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat; }
  .jp-video .igvideo_volume:hover {
    opacity: 0.8; }

.jp-video .igvideo_mute {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7 9v6h4l5 5V4l-5 5H7z' fill='white' /%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat; }
  .jp-video .igvideo_mute:hover {
    opacity: 0.8; }

.jp-video .igvi_barbubble {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M24 24H0V0h24v24z'/%3E%3Ccircle fill='white' cx='12' cy='12' r='8'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat; }
  .jp-video .igvi_barbubble:hover {
    opacity: 0.8; }

.jp-video .igvi_volbubble {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M24 24H0V0h24v24z'/%3E%3Ccircle fill='white' cx='12' cy='12' r='8'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat; }
  .jp-video .igvi_volbubble:hover {
    opacity: 0.8; }

.jp-video .igvideo_bar {
  background-color: rgba(0, 0, 0, 0.7); }
  .jp-video .igvideo_bar:hover, .jp-video .igvideo_bar:focus, .jp-video .igvideo_bar_hover {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; }
  .jp-video .igvideo_bar .igvideo_buttons .igvi_leftbuttons {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .jp-video .igvideo_bar .igvideo_buttons .igvi_leftbuttons .igvideo_playpause {
      width: 40px;
      height: 40px; }
    .jp-video .igvideo_bar .igvideo_buttons .igvi_leftbuttons .igvideo_volume {
      width: 30px;
      height: 30px;
      position: relative; }
      .jp-video .igvideo_bar .igvideo_buttons .igvi_leftbuttons .igvideo_volume .jp-volume-bar-container {
        bottom: 100%;
        width: auto;
        padding: 8px 10px; }
        .jp-video .igvideo_bar .igvideo_buttons .igvi_leftbuttons .igvideo_volume .jp-volume-bar-container .jp-volume-bar {
          height: 100%;
          margin: 0; }
          .jp-video .igvideo_bar .igvideo_buttons .igvi_leftbuttons .igvideo_volume .jp-volume-bar-container .jp-volume-bar .jp-volume-bar-value {
            background-color: #1681c4; }
            .jp-video .igvideo_bar .igvideo_buttons .igvi_leftbuttons .igvideo_volume .jp-volume-bar-container .jp-volume-bar .jp-volume-bar-value .igvi_volbubble {
              margin-left: -8px;
              margin-top: -16px; }
      .jp-video .igvideo_bar .igvideo_buttons .igvi_leftbuttons .igvideo_volume:hover {
        opacity: 1; }
  .jp-video .igvideo_bar .igvideo_buttons .igvi_rightbuttons {
    margin-right: 0; }
    .jp-video .igvideo_bar .igvideo_buttons .igvi_rightbuttons .igvideo_quality {
      width: 22px;
      height: 22px; }
      .jp-video .igvideo_bar .igvideo_buttons .igvi_rightbuttons .igvideo_quality:hover {
        opacity: 1; }
    .jp-video .igvideo_bar .igvideo_buttons .igvi_rightbuttons .igvideo_fullscreen {
      width: 38px;
      height: 38px; }
  .jp-video .igvideo_bar .igvi_bottombar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .jp-video .igvideo_bar .igvi_bottombar .jp-current-time {
      right: 50%;
      left: auto; }
      .jp-video .igvideo_bar .igvi_bottombar .jp-current-time:after {
        content: "/";
        position: absolute;
        right: -4px; }
    .jp-video .igvideo_bar .igvi_bottombar .jp-duration {
      left: 50%; }
    .jp-video .igvideo_bar .igvi_bottombar .igvideo_currenttime,
    .jp-video .igvideo_bar .igvi_bottombar .igvideo_duration {
      height: auto;
      margin: 0;
      margin-top: 14px;
      bottom: auto;
      text-align: center !important;
      background-color: transparent; }
    .jp-video .igvideo_bar .igvi_bottombar .jp-progress {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%;
      padding: 0;
      margin: 0;
      height: auto; }
      .jp-video .igvideo_bar .igvi_bottombar .jp-progress .jp-seek-bar-container {
        height: 5px;
        background: rgba(255, 255, 255, 0.5); }
        .jp-video .igvideo_bar .igvi_bottombar .jp-progress .jp-seek-bar-container .jp-seek-bar {
          width: 100%;
          height: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          .jp-video .igvideo_bar .igvi_bottombar .jp-progress .jp-seek-bar-container .jp-seek-bar .jp-play-bar {
            height: 5px;
            background: #1681c4; }
          .jp-video .igvideo_bar .igvi_bottombar .jp-progress .jp-seek-bar-container .jp-seek-bar .igvi_barbubble {
            position: relative;
            margin-left: -10px;
            margin-top: -10px; }

/*! Image Comparison */
.comparison {
  box-sizing: border-box;
  position: relative;
  width: 80%;
  margin: 0 auto;
  display: block;
  z-index: 5; }
  .comparison * {
    box-sizing: border-box; }
  .comparison:after {
    padding-top: 56.25%;
    content: "";
    width: 100%;
    display: block; }
  .comparison__image {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: 0 0;
    background-size: auto 100%;
    background-repeat: no-repeat;
    z-index: 10; }
    .comparison__image--overlay {
      z-index: 20; }
    .comparison__image__hotspot {
      width: 20px;
      cursor: pointer;
      height: 20px;
      background-color: #c50005;
      position: absolute;
      z-index: 15;
      font-size: 0;
      border-radius: 10px;
      opacity: 0.9;
      animation: pulse 2s infinite; }
      .comparison__image__hotspot:hover {
        opacity: 1; }
  .comparison__slider {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 40px;
    height: 40px;
    background-color: #289262;
    opacity: 0.9;
    border-radius: 50%;
    z-index: 30; }
    .comparison__slider > div {
      position: relative;
      width: 100%;
      height: 100%;
      display: block; }
      .comparison__slider > div:after, .comparison__slider > div:before {
        position: absolute;
        color: white;
        line-height: 40px;
        font-size: 2.2rem;
        top: 45%;
        font-weight: 700;
        transform: translateY(-50%); }
      .comparison__slider > div:after {
        content: "\2039";
        left: 5px; }
      .comparison__slider > div:before {
        content: "\203A";
        right: 5px; }

.hotspots__reveal {
  margin-top: 2rem;
  display: none;
  background: #f4f4f4;
  padding: 2rem; }

/*! Panels */
.panels-container {
  display: flex;
  flex-wrap: wrap; }
  .panels-container > * {
    width: 100%; }
    @media (min-width: 768px) {
      .panels-container > * {
        width: 50%; } }
    @media (min-width: 1024px) {
      .panels-container > * {
        width: 33.33%; } }

.panel {
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  .panel > div {
    position: absolute;
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 10%;
    left: 10%; }
  .panel__content p:last-child {
    margin-bottom: 0; }
  .panel__content * {
    color: white; }
  .panel__content p {
    font-size: 0.9rem; }
    @media (min-width: 1600px) {
      .panel__content p {
        font-size: 1rem; } }
  .panel__content h2, .panel__content h3 {
    font-size: 0.9rem;
    color: white !important; }
    @media (min-width: 1600px) {
      .panel__content h2, .panel__content h3 {
        font-size: 1rem; } }
    @media (min-width: 1700px) {
      .panel__content h2, .panel__content h3 {
        font-size: 1.3rem; } }
  .panel:after {
    padding-top: 60%;
    content: "";
    width: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.5); }

/*! Tabs */
.fp-tabs__tab-headings {
  display: flex;
  margin-bottom: 2rem; }
  .fp-tabs__tab-headings__heading {
    display: inline-block;
    background: #dadde1;
    cursor: pointer;
    padding: 0.5rem; }
    .fp-tabs__tab-headings__heading:not(:last-child) {
      margin-right: 1rem; }
    .fp-tabs__tab-headings__heading:hover, .fp-tabs__tab-headings__heading.active {
      background: #2D6BA8;
      color: white; }
    .fp-tabs__tab-headings__heading[data-target="military"] {
      background: transparent;
      color: #289262;
      border: 1px solid #289262 !important; }
      .fp-tabs__tab-headings__heading[data-target="military"]:hover, .fp-tabs__tab-headings__heading[data-target="military"].active {
        color: white;
        background: #289262 !important; }
    .fp-tabs__tab-headings__heading[data-target="vehicle"] {
      background: transparent;
      color: #c50005;
      border: 1px solid #c50005 !important; }
      .fp-tabs__tab-headings__heading[data-target="vehicle"]:hover, .fp-tabs__tab-headings__heading[data-target="vehicle"].active {
        background: #c50005 !important;
        color: white; }
    .fp-tabs__tab-headings__heading[data-target="marine"] {
      color: #2D6BA8;
      background: transparent;
      border: 1px solid #2D6BA8 !important; }
      .fp-tabs__tab-headings__heading[data-target="marine"]:hover, .fp-tabs__tab-headings__heading[data-target="marine"].active {
        background: #2D6BA8 !important;
        color: white; }

.fp-tabs__tab-content:not(.active) {
  display: none; }

.igtabheader {
  display: flex;
  justify-content: center; }

span.igtab {
  display: block;
  border: 1px solid transparent;
  position: relative;
  color: #212529 !important;
  background: transparent !important;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  padding: 1rem 1rem;
  margin-right: 5px;
  border: 0;
  float: none;
  border-radius: 0;
  -webkit-border-radius: 0; }
  span.igtab:hover {
    background: transparent; }
  span.igtab:last-child {
    background: #289262 !important;
    color: white !important; }
    .non-contact-tabs span.igtab:last-child {
      background: transparent !important;
      color: #212529 !important; }

span.igcurtab {
  background: transparent !important;
  color: #212529 !important; }
  span.igcurtab:after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: -1.5px;
    left: 0;
    height: 3px;
    background: #289262; }

.igtabitem_jq {
  min-height: 460px; }

.igtabarea {
  background: #fff;
  font-weight: 400;
  padding: 30px;
  margin-right: 5px;
  margin-bottom: 4rem;
  font-size: 16px;
  float: none;
  text-align: left;
  border: 0;
  min-width: 371px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-top: 1px solid #dadde1; }
  .igtabarea h1, .igtabarea h2, .igtabarea h3, .igtabarea h4, .igtabarea h5, .igtabarea h6 {
    color: #289262; }

#jport-tabsc3 > table {
  min-width: 100% !important; }

/*! Forms */
.c2form_zero .c2form_fieldset .c2form_fields .c2form_row {
  width: 100%; }
  .c2form_zero .c2form_fieldset .c2form_fields .c2form_row:not(:first-child) {
    margin-top: .5rem; }
  .c2form_zero .c2form_fieldset .c2form_fields .c2form_row .c2form_input {
    width: 100%;
    /*input {
						width: min-content!important;
					}*/ }
    .c2form_zero .c2form_fieldset .c2form_fields .c2form_row .c2form_input * {
      width: 100% !important; }

.c2form_zero .bffsfield {
  display: none; }

.c2form_zero .c2form_buttons {
  width: 100%;
  display: flex; }

/*

.c2form_code {
	display: flex;
}

.c2form_code input {
	width: min-content!important;
}*/
/*! Message */
.message-box {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 400px;
  max-width: 90vw;
  z-index: 200; }
  .message-box > div {
    position: relative;
    padding: 2rem;
    background: white; }
  .message-box__close {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 2rem;
    width: 2rem;
    text-align: center;
    font-family: monospace;
    cursor: pointer;
    font-size: 1.5rem; }
    .message-box__close:hover {
      opacity: 0.9; }
  .message-box .SeparatorCol {
    display: none; }

/*! Basket/Checkout */
.c2ecconflayout .c2ecbas_orderitemscontent {
  display: flex; }

.fp-basket__headings {
  font-weight: 700;
  background: #dadde1; }

.fp-basket__headings, .fp-basket__item {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap; }
  .fp-basket__headings > *:not(:last-child), .fp-basket__item > *:not(:last-child) {
    padding-right: 1rem; }
  .fp-basket__headings__image, .fp-basket__item__image {
    width: 20%; }
    .fp-basket__headings__image img, .fp-basket__item__image img {
      width: 100%;
      height: auto; }
  .fp-basket__headings__name, .fp-basket__item__name {
    width: 30%; }
  .fp-basket__headings__price, .fp-basket__item__price {
    width: 10%; }
  .fp-basket__headings__quantity, .fp-basket__item__quantity {
    width: 10%; }
  .fp-basket__headings__remove, .fp-basket__item__remove {
    width: 10%; }
  .fp-basket__headings__line-price, .fp-basket__item__line-price {
    width: 10%;
    text-align: right; }

.fp-basket__totals {
  display: flex;
  flex-direction: column;
  align-items: flex-end; }
  .fp-basket__totals .c2lbl {
    font-weight: 700;
    padding-right: 0.5rem; }
  .fp-basket__totals > div:not(:empty) {
    padding: 0.25rem 0; }

.fp-basket .c2ecbasitot {
  text-align: right;
  padding: 0.25rem 0; }
  .fp-basket .c2ecbasitot .c2lbl {
    font-weight: 700;
    padding-right: 0.5rem; }

.c2ecbaschkbtn {
  margin-top: 2rem;
  text-align: right; }

/*! Parallax CTA */
.parallax-container {
  height: 25vh;
  min-height: 350px;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  z-index: 1; }
  .parallax-container * {
    z-index: 10; }
  .parallax-container:after {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    content: "";
    z-index: 5; }

.parallax_bg {
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: -1;
  background-size: 100% !important;
  background-attachment: fixed; }

.parallax_section h2 {
  color: #fff;
  margin-bottom: 0; }

.parallax_section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw; }
  .parallax_section *:last-child {
    margin-bottom: 0; }

/*! Calculator */
.customformwrapper {
  position: relative;
  float: left;
  width: 100%; }
  .customformwrapper > div {
    float: left;
    width: 100%;
    clear: both;
    position: relative; }

.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end; }

.third {
  float: left;
  width: 100%; }
  @media (min-width: 700px) {
    .third {
      width: 31%;
      margin-right: 2%; } }

.customformwrapper input[type="text"],
.customformwrapper select {
  height: 35px; }

.customformwrapper input[type="text"],
.customformwrapper select,
.customformwrapper textarea {
  padding: 7px 12px;
  background-color: #f8f8f8;
  border-color: #ccc;
  color: #777;
  display: block;
  margin: 5px 0;
  margin-bottom: 15px;
  width: 100% !important; }

.Calculation .third {
  text-align: center; }

.third img {
  width: auto;
  max-width: 100%;
  display: block;
  margin: 25px auto; }

.third input {
  display: block; }

.Details {
  margin-top: 35px;
  /*input, textarea {
    display: block;
    margin-bottom: 15px;
    background-color: #fefefe;
    border: 1px solid #ccc;
    padding: 7px 12px;
    box-sizing: border-box;
    width: 100%;
    background: #eee;
  }*/ }

.Applications .value {
  position: relative;
  display: flex; }

.Applications .label {
  width: 80%;
  font-size: 14px; }

.Applications .input input {
  width: 18px;
  height: 18px; }

.Calculation {
  /* border-bottom: 1px solid #ccc; */
  /* border-top: 1px solid #ccc; */
  /* padding: 15px 0; */
  /* padding-top: 0; */ }

.customformwrapper h2 {
  font-size: 20px;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  padding: 15px 0;
  margin-top: 0;
  background-color: #eee;
  position: relative;
  background-color: #fff;
  color: #004282; }
  .customformwrapper h2:before {
    height: 100%;
    width: 10000px;
    /* content: ''; */
    position: absolute;
    left: -10000px;
    top: -1px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc; }
  .customformwrapper h2:after {
    height: 100%;
    width: 10000px;
    /* content: ''; */
    position: absolute;
    left: -10000px;
    top: -1px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    left: auto;
    right: -10000px; }

.c2form_box input[type=text], .c2form_box input[type=password] {
  width: 95%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  float: left;
  max-width: none;
  box-sizing: border-box; }

.c2form_box textarea {
  width: 95%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  float: left;
  max-width: none;
  box-sizing: border-box; }

.c2form_zero input[type=text], .c2form_zero input[type=password] .c2form_zero textarea {
  width: 95%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  float: left;
  max-width: none;
  box-sizing: border-box; }

.Details .label {
  padding-left: 2px; }

.Details .value {
  float: left;
  width: 26%; }
  .Details .value:last-child {
    width: 100%;
    padding-top: 20px; }

.c2form_footer {
  float: left;
  width: 100%; }

.label {
  font-size: 14px; }

.Calculation {
  margin-bottom: 20px; }

.productimage {
  display: none; }

.form_testimonials img {
  margin: 0 auto;
  display: block; }

.form_testimonials p {
  font-size: 13px; }

.form_testimonials strong {
  text-align: right;
  display: block; }

@media screen and (max-width: 900px) {
  .form_testimonials {
    width: 100%;
    margin: 0;
    margin-top: 35px; }
  .customForm {
    width: 100%; }
  .form_testimonials img {
    float: left; }
  .form_testimonials strong {
    margin-bottom: 50px; } }

@media screen and (max-width: 767px) {
  .third {
    width: 100%; }
  .productimage {
    display: none; }
  .Applications {
    text-align: center;
    padding-top: 30px; }
    .Applications input {
      width: 20px;
      height: 20px;
      margin: 0 auto;
      margin-bottom: 15px; }
    .Applications .third {
      font-size: 13px; }
    .Applications .value {
      float: none;
      width: 185px;
      margin: 0 auto;
      clear: both; }
    .Applications .label {
      width: 145px;
      text-align: left; }
  .Details .value {
    float: left;
    width: 100%; } }

@media screen and (max-width: 600px) {
  .form_testimonials {
    display: none; } }

/*! Sidebar */
#sidebar-menu {
  margin-bottom: 2rem;
  background: #dadde1;
  padding: 0.5rem; }
  #sidebar-menu ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    #sidebar-menu ul li.lev1 > a {
      display: block;
      padding: 0.25rem; }
    #sidebar-menu ul li.lev2 > a {
      padding: 0.25rem 0.25rem 0.25rem 1rem;
      display: block; }

.red-box > *:not(div),
.blue-box > *:not(div) {
  padding-left: 0.5rem;
  padding-right: 0.5rem; }

.blue-box {
  background: #2D6BA8; }

.red-box {
  background: #c50005; }

.grey-box {
  background: #F2F2F2; }

/*! Backgrounds */
.white-bg {
  background: white; }

.red-bg {
  background: #c50005; }
  .red-bg * {
    color: white; }

.blue-bg {
  background: #2D6BA8; }
  .blue-bg * {
    color: white; }

.green-bg {
  background: #289262; }
  .green-bg * {
    color: white; }

.grey-bg {
  background: #dadde1; }
  .grey-bg * {
    color: white; }

.text-and-image .grey-bg {
  background: #9e9e9e; }

/*! Logo Slider */
:root {
  --swiper-navigation-size: 35px!important; }

.logo-slider {
  overflow: hidden; }
  .logo-slider .swiper-wrapper {
    align-items: center; }
  .logo-slider .swiper-slide {
    text-align: center; }
    .logo-slider .swiper-slide img {
      width: 100%;
      height: auto; }
  .logo-slider .swiper-container {
    padding: 0 40px 40px 40px; }
  .logo-slider .swiper-pagination {
    bottom: 0 !important; }
  .logo-slider .swiper-button-next,
  .logo-slider .swiper-button-prev {
    top: 50%; }
  .logo-slider .swiper-button-next:after,
  .logo-slider .swiper-button-prev:after {
    color: #2D6BA8;
    font-weight: 700; }

.mt-5.c2pgitm_wrap .logo-slider .swiper-button-prev,
.mt-5.c2pgitm_wrap .logo-slider .swiper-button-next {
  top: 221px; }

/*! Product Detail */
.product-filters__controls__filter .c2form_code {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center; }
  .product-filters__controls__filter .c2form_code input {
    max-width: 25px !important;
    margin: 0 !important; }
  .product-filters__controls__filter .c2form_code label {
    max-width: 80% !important;
    margin: 0 !important; }

.glry_title {
  font-size: 0; }

.product-gallery {
  display: flex;
  flex-wrap: wrap; }
  .product-gallery__active {
    width: 100%;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 2rem; }
    .product-gallery__active:after {
      width: 100%;
      content: "";
      padding-top: 56.25%;
      display: block; }
  .product-gallery__thumbs {
    width: 100%;
    display: flex;
    padding-bottom: 4rem; }
    .product-gallery__thumbs__thumb {
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      opacity: 0.5;
      width: 25%; }
      .product-gallery__thumbs__thumb.active {
        opacity: 1; }
      .product-gallery__thumbs__thumb:hover {
        cursor: pointer;
        opacity: 1; }
      .product-gallery__thumbs__thumb img {
        display: none; }
      .product-gallery__thumbs__thumb:after {
        width: 100%;
        content: "";
        padding-top: 56.25%;
        display: block; }

.product-summary__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between; }

.product-summary__content__link {
  width: 100%; }
  .product-summary__content__link table, .product-summary__content__link tr, .product-summary__content__link tbody {
    display: block;
    width: 100%; }
  .product-summary__content__link tr {
    padding-top: 10px; }
  .product-summary__content__link .BuyFormFieldName {
    margin-top: 10px;
    font-weight: 700; }
    .product-summary__content__link .BuyFormFieldName ~ * {
      display: block; }
  .product-summary__content__link .c2btnbuy {
    margin-top: 10px; }
  .product-summary__content__link input, .product-summary__content__link select {
    display: block;
    width: 100%; }

/*! Contact Forms */
form .bffsfield {
  display: none; }

.contact-form-area {
  -webkit-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
  box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28); }
  .contact-form-area__content {
    padding: 2rem; }
  .contact-form-area__form {
    padding: 2rem; }
    .contact-form-area__form .c2form_buttons span {
      display: inline-block; }
  .contact-form-area .c2form_footer {
    float: none; }
    .contact-form-area .c2form_footer .c2form_buttons {
      margin-top: 1rem; }
  @media (min-width: 700px) {
    .contact-form-area {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      .contact-form-area__content {
        width: 40%; }
      .contact-form-area__form {
        width: 60%; } }

.FormFieldErrorText {
  color: #c50005;
  font-size: 11px; }

/*! Text Syles */
div.blue-block {
  width: 100%;
  padding: 3rem;
  background: #2D6BA8;
  color: white; }
  div.blue-block * {
    color: white; }

/*! Grid Gallery */
@media (max-width: 599px) {
  .grid-gallery__item {
    margin-bottom: 1rem; } }

@media (min-width: 600px) {
  .grid-gallery > div {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 500px;
    width: 100%;
    justify-content: space-between; }
  .grid-gallery__item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 49.5%; }
    .grid-gallery__item img {
      display: none; }
    .grid-gallery__item:first-child {
      height: 100%; }
    .grid-gallery__item:not(:first-child) {
      height: 49%;
      align-self: flex-end; } }

/*! Box List */
.box_list {
  margin-top: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .box_list .box {
    width: 100%;
    margin-top: 75px;
    padding: 3% 3%;
    padding-top: 137px; }
    @media (min-width: 768px) {
      .box_list .box {
        width: 32%; } }
    .box_list .box p, .box_list .box h3 {
      color: white; }
    .box_list .box h3 {
      font-size: 21px; }
    .box_list .box p {
      font-size: 13px; }
  @media (min-width: 768px) {
    .box_list--half .box {
      width: 49%; } }

.btn_white a,
a.btn_white {
  display: inline-block;
  outline: none;
  *zoom: 1;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0px;
  vertical-align: middle;
  border: 1px solid;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  box-sizing: border-box;
  font-size: 14px;
  padding: 0.5625em 1.5em;
  color: #ffffff;
  border-color: #ffffff;
  margin-top: 10px; }

.btn_white a:hover,
a.btn_white:hover {
  background: #ffffff;
  color: #111;
  border-color: #ffffff; }

/*! HotSpot Areas */
.hotspot-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 1; }
  .hotspot-area__hotspots {
    width: 100%;
    position: relative;
    z-index: 1; }
    @media (min-width: 992px) {
      .hotspot-area--reveal-right .hotspot-area__hotspots {
        width: 60%; } }
    @media (min-width: 1025px) {
      .hotspot-area--reveal-right .hotspot-area__hotspots {
        width: 70%; } }
  .hotspot-area__background-image-container {
    width: 100%;
    position: relative;
    z-index: 2; }
    .hotspot-area__background-image-container img {
      width: 100%;
      height: auto; }
  .hotspot-area__background-image-overlay {
    position: absolute;
    width: 100%;
    z-index: 10;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    background-position: 0 0;
    background-size: auto 100%;
    background-repeat: no-repeat; }
  .hotspot-area__content {
    width: 100%; }
    @media (min-width: 992px) {
      .hotspot-area--reveal-right .hotspot-area__content {
        width: 39%; } }
    @media (min-width: 1025px) {
      .hotspot-area--reveal-right .hotspot-area__content {
        width: 29%; } }
    .hotspot-area__content > div {
      background: #F2F2F2;
      padding: 2rem;
      margin: 2rem 0; }
    @media (min-width: 992px) {
      .hotspot-area--dots.hotspot-area--reveal-right .hotspot-area__content {
        position: relative; }
        .hotspot-area--dots.hotspot-area--reveal-right .hotspot-area__content > div {
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          width: 100%;
          margin: 0; } }
  .hotspot-area__hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 20;
    animation: pulse 2s infinite; }
    .hotspot-area__hotspot.has-image {
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      transform: scale(1);
      transition: transform .3s ease;
      box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
      border-radius: 20%; }
      .hotspot-area__hotspot.has-image:hover {
        transform: scale(1.1); }
    .hotspot-area__hotspot > div {
      display: none; }
    .hotspot-area--dots .hotspot-area__hotspot {
      background-color: #c50005;
      font-size: 0;
      border-radius: 10px;
      opacity: 0.9; }
    .hotspot-area--blocks .hotspot-area__hotspots:hover .hotspot-area__hotspot:not(:hover) {
      opacity: 0.4;
      animation: pulse 0s infinite; }
  .hotspot-area__slider {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 80px;
    height: 80px;
    background-color: #289262;
    opacity: 0.9;
    border-radius: 50%;
    z-index: 30; }
    .hotspot-area__slider > div {
      position: relative;
      width: 100%;
      height: 100%;
      display: block; }
      .hotspot-area__slider > div:after, .hotspot-area__slider > div:before {
        position: absolute;
        color: white;
        line-height: 80px;
        font-size: 2.2rem;
        top: 45%;
        font-weight: 700;
        transform: translateY(-50%); }
      .hotspot-area__slider > div:after {
        content: "\2039";
        left: 10px; }
      .hotspot-area__slider > div:before {
        content: "\203A";
        right: 10px; }

/*! News */
.news-summary > div {
  position: relative;
  padding-bottom: 6rem; }
  .news-summary > div .blue-button {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%; }

/*! Sitemap */
.c2cclcont li > a {
  padding-left: 1rem;
  position: relative; }
  .c2cclcont li > a:before {
    content: "";
    display: list-item;
    /* This has to be "list-item"                                               */
    list-style-type: disc;
    /* See https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type     */
    list-style-position: inside;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); }

.c2cclcont > ul > li > ul > li > a:before {
  list-style-type: circle; }

.c2cclcont > ul > li > ul > li > ul > li > a:before {
  list-style-type: square; }

.c2cclcont > ul > li > ul > li > ul > li > ul > li > a:before {
  list-style-type: circle; }

.c2cclcont > ul > li ul {
  padding-left: 1rem; }

.c2cclcont ul {
  padding: 0;
  margin: 0;
  list-style: none; }

/*! Search */
.search-result {
  margin-top: 3rem; }
  .search-result > div {
    box-shadow: 10px 10px 41px 0px rgba(0, 0, 0, 0.28);
    padding: 2rem; }

/*! Extra */
.prodListingV2 .popup-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; }

/*! Accordion */
.accordion__heading {
  background: #0f0f37;
  cursor: pointer;
  padding: 1rem; }
  .accordion__heading h3 {
    margin: 0;
    display: block;
    color: white;
    font-size: 1.2rem; }
  .accordion__heading:hover {
    background: white; }
    .accordion__heading:hover h3 {
      color: #2D6BA8; }
  .accordion__heading.active {
    background: #2D6BA8; }
    .accordion__heading.active h3 {
      color: white; }

.accordion__content {
  background: #dadde1;
  padding: 1rem;
  display: none; }
  .accordion__content > *:last-child {
    margin-bottom: 0; }

.accordion__heading.active + .accordion__content {
  display: block; }

/*! Responsive Tabs (old) */
/* Responsive Tabs */
.responsive-tabs__heading {
  display: none; }

.responsive-tabs__list__item {
  display: inline;
  cursor: pointer; }

@media (max-width: 1023px) {
  .responsive-tabs__list {
    display: none; }
  .responsive-tabs__heading {
    display: block;
    cursor: pointer; }
  .responsive-tabs__panel--closed-accordion-only {
    display: none; } }

@media (min-width: 1024px) {
  .responsive-tabs__panel--closed-accordion-only {
    display: block !important; } }

.responsive-tabs-wrapper {
  zoom: 1; }

.responsive-tabs-wrapper:before,
.responsive-tabs-wrapper:after {
  content: "";
  display: table; }

.responsive-tabs-wrapper:after {
  clear: both; }

.responsive-tabs__heading:focus,
.responsive-tabs__list__item:focus {
  outline: 1px solid #ccc; }

.responsive-tabs__heading--active:focus,
.responsive-tabs__list__item--active:focus {
  outline: none !important; }

.responsive-tabs__list {
  margin: 0em 0 0 0;
  padding: 0;
  padding-bottom: 0px;
  clear: both;
  height: 45px; }

.responsive-tabs__list__item {
  background: #ebebeb;
  padding: 15px 25px;
  margin-right: 4px;
  font-size: 16px;
  display: block;
  float: left;
  line-height: 1;
  width: 150px;
  text-align: center;
  font-weight: 600; }

.responsive-tabs__list__item:hover {
  background: #efefef; }

.responsive-tabs__list__item--active,
.responsive-tabs__list__item--active:hover {
  background: #f4f4f4;
  border-bottom-color: #f4f4f4;
  font-weight: 600; }

.responsive-tabs__panel {
  margin-bottom: 10px;
  background: #f4f4f4;
  padding: 35px 50px;
  position: relative;
  z-index: 1; }

@media (max-width: 1023px) {
  .responsive-tabs__heading {
    padding: 12px 15px;
    position: relative;
    margin: 0 0 10px 0 !important;
    background: #d5d5d3;
    color: #333;
    font-size: 20px !important; }
  .responsive-tabs__heading:after {
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    top: 40%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff; }
  .responsive-tabs__heading:hover,
  .responsive-tabs__heading--active:hover {
    background-color: #eb832c; }
  .responsive-tabs__heading:hover {
    background: #aaa; }
  .responsive-tabs__heading--active:hover {
    background-color: #eb832c; }
  .responsive-tabs__heading--active {
    background: #eb832c;
    color: #fff; }
  .responsive-tabs__heading--active:after {
    border-top: 0;
    border-bottom: 10px solid #fff; } }

.responsive-tabs__list__item:hover {
  background: #ddd; }

.responsive-tabs__list__item--active:hover {
  background: #efefec; }

/*! Responsive YouTube */
.c2respyoutube {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden; }
  .c2respyoutube iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }
  .c2respyoutube:before {
    display: block;
    content: "";
    padding-top: 56.25%; }

/*! Launch Pad Products */
.c2-product-image-figure > img {
  /*position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;*/
  padding: 15px; }

.c2-product-image-figure.p-0 > img {
  padding: 0; }

.c2-product-detail .BuyFormQty {
  display: flex; }
  .c2-product-detail .BuyFormQty .cssBtns {
    width: 20px;
    margin: 0.25rem 0; }

.c2-product-detail .c2ecbuyfrm, .c2-product-detail .c2ecbuyfrm span.BuyFormFieldName:nth-child(3),
.c2-product-detail .c2ecbuyfrm span.BuyFormQty {
  display: flex;
  align-items: center;
  max-width: 220px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto; }

.c2-product-detail .c2ecbuyfrm span.BuyFormFieldName:first-child,
.c2-product-detail .c2ecbuyfrm span.BuyFormPrice {
  display: none; }

.c2-product-detail .c2ecbuyfrm span.BuyFormFieldName:nth-child(3) {
  font-weight: bold;
  margin-right: 14px; }

.c2-product-detail .c2ecbuyfrm span.BuyFormQty .cssBtns {
  padding: 2px 6px;
  width: 30px;
  border: 1px solid #2d6ba8;
  height: 30px;
  color: #2d6ba8; }

.c2-product-detail .c2ecbuyfrm span.BuyFormQty input {
  width: 80px;
  padding: 2px 10px;
  text-align: center;
  border-left: 0px;
  border-right: 0px;
  border-top: 1px solid rgba(45, 107, 168, 0.5);
  border-bottom: 1px solid rgba(45, 107, 168, 0.5); }

.c2-product-detail .c2ecbuyfrm input[type=submit] {
  margin-top: 10px; }

.c2-product-tabs .nav-tabs:empty, .c2-product-tabs .tab-content:empty {
  display: none; }

.c2-product-tabs .nav-link {
  color: #495057; }

.c2-product-tabs .nav-link.active {
  border-bottom: 3px solid #2d6ba8 !important; }

.c2-product-tabs table tr[height="20"] {
  height: 40px; }
  .c2-product-tabs table tr[height="20"] td {
    vertical-align: middle;
    padding: 0px 5px;
    width: 50%; }
  .c2-product-tabs table tr[height="20"]:nth-child(odd) {
    background-color: #e5e5e5; }
    .c2-product-tabs table tr[height="20"]:nth-child(odd) td h2 {
      background-color: #fff;
      min-height: 55px;
      height: 100%;
      margin: 0; }
  .c2-product-tabs table tr[height="20"]:nth-child(even) {
    background-color: #f7f7f7; }
    .c2-product-tabs table tr[height="20"]:nth-child(even) td h2 {
      background-color: #fff;
      min-height: 55px;
      height: 100%;
      margin: 0; }

.c2-product-accordion > .card {
  overflow: hidden; }
  .c2-product-accordion > .card:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .c2-product-accordion > .card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }

.c2-product-accordion .card-body {
  overflow: auto; }
  .c2-product-accordion .card-body table {
    width: 500px; }
    .c2-product-accordion .card-body table tr[height="20"] {
      height: 40px; }
      .c2-product-accordion .card-body table tr[height="20"] td {
        vertical-align: middle;
        padding: 0px 5px;
        width: 50%; }
      .c2-product-accordion .card-body table tr[height="20"]:nth-child(odd) {
        background-color: #e5e5e5; }
        .c2-product-accordion .card-body table tr[height="20"]:nth-child(odd) td h2 {
          background-color: #fff;
          min-height: 55px;
          height: 100%;
          margin: 0; }
      .c2-product-accordion .card-body table tr[height="20"]:nth-child(even) {
        background-color: #f7f7f7; }
        .c2-product-accordion .card-body table tr[height="20"]:nth-child(even) td h2 {
          background-color: #fff;
          min-height: 55px;
          height: 100%;
          margin: 0; }

.c2-product-new-Yes {
  overflow: visible !important; }
  .c2-product-new-Yes::after {
    position: absolute;
    top: 10px;
    right: -7px;
    padding: 4px 12px;
    content: "New";
    background: #2d6ba8;
    color: #fff;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12); }

.c2-basket-item-wrapper > div {
  display: flex;
  flex-wrap: wrap; }

.c2-basket-item-wrapper .c2ecbasitot {
  display: none; }

.c2-basket-item-wrapper form {
  width: 100%; }

.c2-basket-item-wrapper form > div {
  /*background-color: #f8f9fa;*/
  padding: 1rem 0.8rem; }

.c2-basket-item-wrapper .c2ecbaschkbtn {
  text-align: left;
  margin: 0; }

@media (min-width: 992px) {
  .c2-basket-item-wrapper > div > * {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px; }
  .c2-basket-item-wrapper form {
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .c2-basket-item-wrapper .c2ecbaschkbtn {
    flex: 1 0 0%; } }

.c2-basket-layout .btn {
  margin-right: 0 !important; }

.c2-basket-layout .BuyFormQty {
  min-width: 120px;
  padding-left: 0px; }

.c2-basket-layout .item-variations span {
  float: left; }
  .c2-basket-layout .item-variations span:nth-child(odd) {
    clear: left; }
    .c2-basket-layout .item-variations span:nth-child(odd):after {
      content: ":"; }

.c2-basket-layout .item-variations select {
  border: 1px solid transparent; }
  .c2-basket-layout .item-variations select:hover {
    border-color: #dee2e6; }

.c2-basket-layout__basket-options .c2ecbassum .c2lbl, .c2-basket-layout__basket-options .c2ecbasext .c2lbl {
  color: #6c757d; }
  .c2-basket-layout__basket-options .c2ecbassum .c2lbl:after, .c2-basket-layout__basket-options .c2ecbasext .c2lbl:after {
    content: ":";
    padding-right: 0.25rem; }

.c2-basket-layout__basket-options .c2ecbassum .c2val, .c2-basket-layout__basket-options .c2ecbasext .c2val {
  font-weight: 700; }

.c2-basket-layout__basket-options select {
  border-color: #ccc;
  padding: 2px 4px; }

.c2-basket-layout__basket-options .c2ecbasshipnoed .c2lbl {
  padding-right: 0.25rem; }
  .c2-basket-layout__basket-options .c2ecbasshipnoed .c2lbl:after {
    content: none; }

.c2-basket-layout .c2ecbasext.c2ecbasextvat,
.c2-basket-layout .c2ecbassum.c2ecbastat.c2ecbastatvat {
  margin-bottom: 0.5rem !important;
  margin-top: 0.5rem !important; }

.c2-basket-layout svg.svg-inline--fa {
  width: 14px; }

.c2-basket-layout .c2ecqMinus.cssBtns, .c2-basket-layout .c2ecqPlus.cssBtns {
  display: none; }

.c2-basket-layout .BuyFormQty .btn {
  border-color: #2d6ba8;
  color: #2d6ba8;
  border-radius: 0px; }
  .c2-basket-layout .BuyFormQty .btn:hover {
    background: #333;
    border: 1px solid #333;
    color: white !important;
    text-decoration: none; }

.c2-basket-layout .BuyFormQty input {
  border-color: rgba(45, 107, 168, 0.5);
  height: 38px;
  width: 60px; }

.c2-basket-layout .delete-wrap .btn {
  border-radius: 0px; }

.c2-basket-layout table thead {
  display: none; }

@media (min-width: 992px) {
  .c2-basket-layout table thead {
    display: table-header-group; } }

.c2ecbaschkbtn .btn {
  margin-right: 0 !important;
  width: 100% !important;
  margin-top: 0.5rem !important; }

.c2ecbaschkbtn .c2val {
  display: block; }

.c2-checkout-wrapper .figure-img, .c2-checkout-wrapper .c2-basket-layout__basket-options {
  display: none !important; }

.c2-checkout-wrapper .BuyFormQty {
  min-width: 0; }

.c2-basket-stage .ECStateMenu {
  list-style: none;
  margin: 0;
  padding: 0; }

.c2-basket-stage .Action.DoneAction {
  display: none; }

.c2-basket-stage__menu-upper .Action.NotDoneAction {
  display: none; }

.c2-basket-stage__menu-upper .Action.CurrentAction {
  font-weight: 700;
  font-size: 1.5rem; }

.c2-basket-stage__content > p:first-child, .c2-basket-stage__content .c2-basket-layout, .c2-basket-stage__content .c2ecconf_spacer {
  display: none; }

.c2-basket-stage__content .c2form_footer {
  margin-top: 1rem;
  float: none; }

.c2-basket-stage__content .c2ecconf_prevbtn, .c2-basket-stage__content .c2ecconf_confbtn {
  display: inline-block; }

.c2-basket-stage__content .c2form_zero input[type=text], .c2-basket-stage__content .c2form_zero input[type=password] .c2form_zero textarea {
  float: none; }

.c2-basket-stage__menu-lower {
  margin-top: 1rem; }
  .c2-basket-stage__menu-lower .Action.CurrentAction {
    display: none; }
  .c2-basket-stage__menu-lower .Action.NotDoneAction {
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 1rem;
    border: 2px solid #dee2e6;
    padding: 0.5rem 1rem; }

.c2-basket-stage select {
  border-color: #ccc;
  padding: 12px 4px;
  margin-bottom: 6px; }

.c2-basket-stage .c2form_buttons input[type=submit] {
  margin: 0px auto; }

.c2-basket-stage .c2ecconf_prevbtn {
  margin-right: 10px; }

.c2-basket-stage .c2ecconf_confbtn {
  margin-left: 10px; }

/*! DM EShop Changes Aug 21 */
.eshop .c2-product-detail .h1, .eshop .c2-product-detail h1 {
  font-size: 2.0rem;
  font-weight: 500; }

.eshop .c2-product-detail .h2, .eshop .c2-product-detail h2 {
  font-size: 1.8rem;
  font-weight: 700; }

.eshop .c2-product-detail .c2-product-tabs .h1, .eshop .c2-product-detail .c2-product-tabs h1 {
  font-size: 2.0rem;
  font-weight: 500; }

.eshop .c2-product-detail .c2-product-tabs .h2, .eshop .c2-product-detail .c2-product-tabs h2 {
  font-size: 1.4rem;
  font-weight: 500; }

.c2-product-detail .c2-product-tabs {
  margin-top: 20px; }

.c2btnbuy {
  background: #c50005 !important;
  border: 1px solid #c50005; }

html {
  scroll-behavior: smooth; }

.PD_RRP {
  font-size: 1.2rem;
  font-weight: 500;
  padding-top: 20px;
  color: #9C9B9B; }

.box_list--full .box {
  width: 100%; }

.c2price {
  font-weight: 700;
  color: #2D6BA8;
  font-style: normal; }

/*! Product Slider */
.swiper-button-next, .swiper-button-prev {
  background-color: #f7f7f7;
  padding: 15px 15px;
  border-radius: 50%;
  box-shadow: 0 0px 10px -3px rgba(0, 0, 0, 0.36); }
  @media (min-width: 1200px) {
    .swiper-button-next, .swiper-button-prev {
      background-color: #f7f7f7;
      padding: 30px 30px;
      border-radius: 50%;
      box-shadow: 0 0px 10px -3px rgba(0, 0, 0, 0.36); } }

.swiper-button-prev {
  color: #000 !important; }
  @media (min-width: 1200px) {
    .swiper-button-prev {
      left: 40px !important; } }
  @media (max-width: 1200px) {
    .swiper-button-prev:after {
      font-size: 1.3rem !important; } }

.swiper-button-next {
  color: #000 !important; }
  @media (min-width: 1200px) {
    .swiper-button-next {
      right: 40px !important; } }
  @media (max-width: 1200px) {
    .swiper-button-next:after {
      font-size: 1.3rem !important; } }

.slider-banner {
  position: relative; }

/*! Boxes */
.box_list .box {
  margin-top: 0 !important; }

/*! KG Overrides */
.list-of-features-box {
  width: max-content;
  height: auto;
  padding: 1.5rem; }
  .list-of-features-box ul {
    padding-left: 1.5rem; }
  .list-of-features-box li {
    list-style-image: url("/p/1/tick%20icon.svg"); }
  .list-of-features-box .list-of-features-text {
    margin-top: 1.5rem; }

.tpop_SHOPToken {
  max-width: 331px;
  width: 100%;
  max-height: 160px;
  height: 100%; }

.cta__title {
  position: relative; }

.cta__title a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0; }

.call-to-action-row {
  row-gap: 2rem; }

.accordion__heading.active {
  background: #333; }