:root {
  --primary: #006bab;
  --secondary: #009fd5;
  --tertiary: #3a3284;
  --b-grey: #ebebeb;
  --mid-grey: #b1b1b1;
  --d-grey: #030303;
  --base: #6f6f6e;
  --white: #FFF;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html {
  font: 400 16px/1.5 'Lato', Arial, sans-serif;
  color: var(--base);
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
}

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

body {
  margin: 0 auto;
  background: var(--white);
}

/* Narrow Width of blocks */
.narrow>div:first-of-type {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Width of "wide" blocks */
.alignwide>div:first-of-type {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Width of "full-wide" blocks */
.alignfull>div:first-of-type {
  max-width: 1800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.site-header .alignfull>div:first-of-type {
  padding: 0;
}

.site-footer .alignfull>div:first-of-type {
  padding-top: 0;
  padding-bottom: 0;
}

h1, .h1,
h2 {
  font-weight: 300;
  margin: 0 0 1rem 0;
  padding: 0;
  color: var(--d-grey);
}

h3,
h4,
.h3,
.h4 {
  font-weight: 400;
  margin: 0 0 1rem 0;
  padding: 0;
  color: var(--base);
}

h1, .h1 {
  font-size: 2.5em;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

h2, .h2 {
  font-size: 2em;
  margin: 0 0 1rem 0;
  line-height: 1.15;
}

h3, .h3 {
  font-size: 1.75em;
  line-height: 1.25;
  margin: 0 0 1rem 0;
}

h4, .h4 {
  font-size: 1.3em;
  line-height: 1.5;
  margin: 0;
}

h5, .h5 {
  font-size: 1em;
  line-height: 1;
  margin: 0;
}

h6, .h6 {
  font-size: 0.85em;
  line-height: 1;
  margin: 0;
}

p {
  font-size: 1em;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  padding: 0;
}

p.has-small-font-size {
  font-size: .85em;
}

p.has-medium-font-size {
  font-size: 1.2em;
}

p.has-large-font-size {
  font-size: 1.4em;
}

b,
strong {
  font-weight: 700;
}

hr {
  background-color: var(--d-grey);
  border: 0;
  height: 1px;
  margin: 2rem 0;
}

img {
  max-width: 100%;
  width: initial;
  height: auto;
  display: block;
  margin: 0 auto;
}

.img-margin img {
  margin: 2rem 0 3rem 0;
}

svg {
  display: block;
}

figure {
  margin: 0;
}

ul.list,
ol.list {
  list-style-type: square;
  font-size: 1em;
  margin: 0 0 2rem 2rem;
  padding: 0;
  line-height: 1.6;
}

ol.list {
  list-style-type: decimal;
}

ul.list-type.crane, ul.list-type.crane li {
  list-style-type: none;
}

ul.list-type.crane li:before {
  content: '';
  width: 21px;
  height: 21px;
  position: absolute;
  background: url(/wp-content/uploads/Minicrane-Icon-Blue.png) no-repeat;
  background-position: 50%;
  background-size: 21px;
  left: 0;
  top: 5px;
}

ul.list-type.crane li {
  list-style-type: none;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

ul {
  list-style-type: none;
  font-size: 1em;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  color: var(--primary);
}

a:hover,
a:focus,
a:active {
  cursor: pointer;
  text-decoration: none;
  color: var(--primary);
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

.no-padding-all {
  padding: 0 !important;
}

.no-padding .wp-block-group__inner-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.no-padding-bottom .wp-block-group__inner-container {
  padding-bottom: 0 !important;
}

.sm-padding {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.lg-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.right-pad {
  padding-right: 5rem;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.secondary {
  color: var(--secondary);
}

.dark {
  color: var(--d-grey);
}

.white-text {
  color: var(--white);
}

.highlight, .highlight p {
  color: var(--highlight) !important;
}

.mid-blue {
  color: var(--mid-blue) !important;
}

.mb-lg {
  margin-bottom: 3rem;
}

.mb-md {
  margin-bottom: 2rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-md {
  margin-top: 2rem;
}

.margin-0 {
  margin: 0;
}

.restrict-width {
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
}

.restrict-width-sm {
  max-width: 35rem;
  margin-left: auto;
  margin-right: auto;
}

.restrict-width-boxes {
  max-width: 35rem;
}

/* Breadcrumbs */
.ah-breadcrumb {
  width: 100%;
  margin: .5rem auto 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.ah-breadcrumb li {
  display: inline-block;
  margin: 0 .25rem;
  font-size: .9em;
}

.centre-blocks {
  justify-content: center;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: var(--b-grey);
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: var(--secondary);
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Video (YouTube)
--------------------------------------------------------------*/
.wp-block-video {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.wp-block-video video {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* cross-browser fix */
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 0;
  display: inline-block;
  margin: 0;
  padding: 1.4rem 1.6rem;
  background: var(--primary);
  border-radius: 4px;
  font: 400 .9em/0 'Lato', Arial, sans-serif;
  text-transform: uppercase;
  line-height: 0;
  white-space: nowrap;
  color: var(--white);
  cursor: pointer;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: var(--primary);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: var(--base);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
  color: var(--d-grey);
  border: 1px solid var(--base);
  border-radius: 0;
  margin: 0 0 1.5em 0;
  padding: .75rem 1rem;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: var(--base);
}

/* contact 7 forms */
span.required {
  color: var(--secondary);
  font-size: 0.8em;
}

span.wpcf7-not-valid-tip {
  color: var(--secondary);
}

span.wpcf7-list-item {
  display: block;
}

/*--------------------------------------------------------------
## Site logo
--------------------------------------------------------------*/
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 3;
  -webkit-box-shadow: 0 8px 20px -4px rgba(0, 0, 0, .15);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, .15);
}

.site-header .alignfull {
  padding: 0;
}

.site-branding {
  margin: .6rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 400px !important
    /*! justify-content: center; */
}

.site-branding a {
  position: absolute;
  top: -1.2rem;
  left: 0;
  width: 19rem !important
}

.site-branding img {
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.site-branding a:hover img {
  opacity: .75;
}

.top-nav {
  display: none;
}

/* Social Media */
.menu-social-media-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-social-media-container ul li {
  margin: .65rem 1rem .65rem 0;
}

.menu-social-media-container ul li:last-of-type {
  margin-right: 0;
}

.menu-social-media-container img {
  width: .9rem;
}

/* Language selector */
.menu-languages-container {
  position: relative;
  top: 0;
  cursor: pointer;
}

.menu-languages-container ul {
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 3;
}

.menu-languages-container ul .sub-menu {
  position: relative;
}

.menu-languages-container ul li a {
  display: block;
  padding: .5rem 1rem;
  background: url(/wp-content/uploads/icon-submenu.svg) no-repeat right center;
  background-size: 8px;
  font-size: .8em;
  line-height: 1.55;
  text-align: right;
}

.menu-languages-container ul .sub-menu li a {
  text-align: left;
}

.flags-main a img {
  display: inline;
  vertical-align: middle;
  margin-right: .45rem;
  position: relative;
  bottom: 1px;
}

.menu-languages-container ul.sub-menu {
  display: none;
  border: 1px solid var(--d-grey);
}

.menu-languages-container:hover ul.sub-menu {
  display: block;
}

.flags-main .sub-menu li a{
  display: block;
  padding: .5rem 1rem;
  -webkit-box-shadow: 0px 4px 12px -3px rgb(0 0 0 / 20%);
  box-shadow: 0px 4px 12px -3px rgb(0 0 0 / 20%);
  background-color: var(--white)!important;
  border-bottom: 1px solid var(--primary)!important;
  text-decoration: none;
  color: var(--base);
  font-size: .9em!important;
}

.menu-languages-container ul.sub-menu li:last-child a {
  border: 0;
}

.menu-languages-container ul.sub-menu a:hover {
  color: var(--primary);
  background: var(--b-grey);
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/* Hide/show nav*/
.btn-content {
  display: none;
  width: 100%;
  background: var(--primary);
  padding: 2rem 1.5rem;
  text-align: center;
  -webkit-box-shadow: 0 8px 14px -4px rgba(0, 0, 0, 0.5);
  box-shadow: 0 8px 14px -4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  /*! top: 25px; */
  border-top: 1px solid rgba(225, 225, 225, .6);
}

.btn-content a {
  color: var(--white);
  text-decoration: none;
  line-height: 1.8;
  /*  text-transform: uppercase;*/
}

.main-navigation .btn-toggle {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-radius: 0;
  background: var(--primary);
  color: var(--white);
  font-size: 1em;
  line-height: 0;
  outline: none;
  cursor: pointer;
  padding: 2rem 1rem;
  margin: 0;
  z-index: 2;
}

.main-navigation .btn-toggle i.bar {
  position: relative;
  display: block;
  width: 2rem;
  height: 3px;
  background: var(--white);
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.main-navigation .btn-toggle i.bar::before,
.main-navigation .btn-toggle i.bar::after {
  content: '';
  width: 2rem;
  height: 3px;
  background: var(--white);
  position: absolute;
  left: 0;
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.main-navigation .btn-toggle i.bar::before {
  top: -10px;
}

.main-navigation .btn-toggle i.bar::after {
  bottom: -10px;
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar {
  background: rgba(0, 0, 0, 0);
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar::before {
  top: 0;
  -webkit-transform: rotateZ(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotateZ(-135deg);
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar::after {
  bottom: 0;
  -webkit-transform: rotateZ(135deg);
  -ms-transform: rotate(135deg);
  transform: rotateZ(135deg);
}

.main-navigation li a {
  display: block;
  padding: .75rem;
  /*border-bottom: 1px solid rgba(225, 225, 225, .5);*/
  line-height: 1.25;
}

.main-navigation li:last-child a {
  border: 0;
}

/* Blue boxes */
.blue-box-arrow {
  background: var(--primary);
  padding: 2rem 1rem;
  margin-top: -40px;
  position: relative;
}

.blue-box-arrow:after {
  background: url(/wp-content/uploads/blue-box.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: auto;
  bottom: 100%;
  right: 0;
  z-index: 1;
  content: "";
  height: 60px;
  width: 100%;
  background-position: center bottom;
}

/* Feature boxes */
.feature-boxes .wp-block-hyperlink-group, .product-boxes .wp-block-hyperlink-group {
  padding: 0 0.5rem;
  height: 100%;
  text-align: center;
}

.feature-boxes .wp-block-hyperlink-group>div {
  padding: 1.5rem 1.5rem 4rem 1.5rem;
  border: 1px solid var(--base);
  text-align: center;
  border-radius: 8px;
  height: 100%;
  position: relative;
}

.feature-boxes .wp-block-hyperlink-group>div .wp-block-buttons {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.product-boxes .wp-block-hyperlink-group img {
  width: auto !important;
}

.feature-boxes .wp-block-hyperlink-group p, .product-boxes .wp-block-hyperlink-group p {
  color: var(--base);
}

.eco-img {
  margin-top: 0.5rem;
}

.product-boxes h3 {
  margin: 1rem 0 0;
}

.product-boxes .owl-nav {
  top: calc(50% - 15px);
  position: absolute;
  left: -2rem;
  right: -2rem;
  margin: 0 auto;
  color: #999;
  width: calc(100% + 4rem);
}

.product-boxes .owl-nav i {
  font-size: 2.5em;
}

.img-box {
  position: relative;
}

.top-left {
  position: absolute;
  top: 0;
  left: 0;
}

.top-left img {
  max-width: 14rem;
}

.catalog-links .wp-block-image {
  margin-bottom: 1.5rem;
}

.catalog-links .wp-block-column {
  margin-bottom: 1.5rem !important;
}

/*--------------------------------------------------------------
## col and Modules
--------------------------------------------------------------*/
/* quotations */
blockquote {
  display: block;
  margin: 0 0 .75rem 0;
  padding: 0;
  font-style: normal;
  quotes: "\201C""\201D";
}

blockquote p:before {
  content: open-quote;
  margin-right: .1rem
}

blockquote p:after {
  content: close-quote;
}

blockquote p {
  color: var(--white);
  font-size: 1.15rem;
}

.quotee {
  font-size: 1em;
  font-style: normal;
  font-weight: 700;
}

address {
  font-style: normal;
}

iframe,
object,
embed {
  max-width: 100%;
}

/* col */
div.wp-block-columns,
ul.wp-block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1.5rem;
  /*gutter*/
  gap: 0;
  align-items: initial;
}

.wp-block-columns .wp-block-column {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.wp-block-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* without gutter */
.wp-block-columns.no-gutter {
  margin-left: 0;
  /*no-gutter*/
}

.wp-block-columns.no-gutter .wp-block-column {
  padding-left: 0;
  margin-bottom: 0;
}

.wp-block-columns.no-gutter-bottom .wp-block-column {
  margin-bottom: 0;
}

/* center text */
.has-text-align-center {
  text-align: center;
}

/* text right */
.has-text-align-right {
  text-align: right;
}

/* text left */
.text-left {
  text-align: left;
}

/* justify per row */
.align-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.align-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* vertical alignment */
div.is-vertically-aligned-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

div.is-vertically-aligned-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

div.is-vertically-aligned-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

div.is-vertically-aligned-baseline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/* horizontal alignment */
.h-align-height .module,
.h-align-height .module-box {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%;
}

/* base classes for all media - mobile first */
.one-item>.wp-block-column,
.one-of-one>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.two-items>.wp-block-column,
.one-of-two>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.three-items>.wp-block-column,
.one-of-three>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
  /* IE11 < */
  -ms-flex: 0 0 calc(100% / 3);
  flex: 0 0 calc(100% / 3);
}

.four-items>.wp-block-column,
.one-of-four>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.five-items>.wp-block-column,
.one-of-five>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}

.six-items>.wp-block-column,
.one-of-six>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66666666666667%;
  flex: 0 0 16.66666666666667%;
  /* IE11 < */
  -ms-flex: 0 0 calc(100% / 6);
  flex: 0 0 calc(100% / 6);
}

.two-of-three>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.6666%;
  flex: 0 0 66.6666%;
  /* IE11 < */
  -ms-flex: 0 0 calc(100% / 3 * 2);
  flex: 0 0 calc(100% / 3 * 2);
}

.three-of-four>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
}

.three-of-five>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
}

.five-of-six>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.3333%;
  flex: 0 0 83.3333%;
  /* IE11 < */
  -ms-flex: 0 0 calc(100% / 6 * 5);
  flex: 0 0 calc(100% / 6 * 5);
}

/* Switch 2 column order */
.switcharoo:nth-of-type(1) {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.switcharoo:nth-of-type(2) {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

/* slider */
.hero .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*justify-content: center;*/
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--b-grey);
  position: relative;
  padding: 4rem;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.slider {
  display: block;
}

.hero .message p {
  font-size: 1.4em;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  color: var(--primary);
}

.hero .h1 {
  margin-top: 2rem !important;
  font-size: 4em;
}

.hero img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero .wp-block-image:before {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 39%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 39%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 39%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
  /* IE6-9 */
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
}

.text-block-right,
.text-block-left {
  padding: 2rem 0 0 0;
}

.grey, .grey-timeline .wp-block-getwid-content-timeline-item__content-wrapper, .grey-timeline .wp-block-getwid-content-timeline-item__card::after {
  background: #f5f5f5;
}

.mid-grey:not(.wp-block-button) {
  background: var(--mid-grey);
}

.white:not(.wp-block-button) {
  background: var(--white);
}

.primary-bg {
  background: var(--primary);
}

.secondary-bg {
  background: var(--secondary);
}

.wp-block-cover {
  padding: 4rem 0;
  position: relative;
}

.wp-block-cover div.wp-block-cover__image-background {
  padding: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.wp-block-cover.bg-overlay {
  background-color: var(--primary);
  position: relative;
}

.wp-block-cover.bg-overlay::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(244, 171, 28, 0)), color-stop(50%, rgba(244, 171, 28, .5)));
  background-image: -o-linear-gradient(left, rgba(244, 171, 28, 0) 0%, rgba(244, 171, 28, .5) 50%);
  background-image: linear-gradient(90deg, rgba(244, 171, 28, 0) 0%, rgba(244, 171, 28, .5) 50%);
}

.wp-block-cover .module-box {
  display: block;
  width: calc(100vw - 4rem);
  padding: 2rem;
  background: var(--white);
  background: rgba(255, 255, 255, .85);
  border-radius: 3px;
  position: relative;
  z-index: 2;
}

.hexagon {
  text-align: center;
}

.hexagon a {
  display: block;
  padding: 1rem .75rem;
}

.hexagon a:hover {
  background: rgba(0, 0, 0, .015);
  border-radius: 3px;
}

.hexagon h3 {
  margin: .5rem 0 .25rem 0;
}

.hexagon a:hover h3 {
  color: var(--primary);
}

.hexagon a img {
  margin: auto;
  -webkit-transform: scale(0.94);
  -ms-transform: scale(0.94);
  transform: scale(0.94);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.hexagon a:hover img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hexagon p {
  margin: 0 0 .5rem 0;
  line-height: 1.4;
  color: var(--base);
}

.heading-only {
  margin: 0 0 2rem 0;
}

.blog .latest-news h2 {
  font-size: 1.15em
}

.blog .latest-news p {
  font-size: .85em;
}

/* Support & Resources */
.border-top {
  border-top: 1px solid var(--d-grey);
}

.latest-news .outer-link {
  display: block;
  border: 1px solid var(--d-grey);
  border-radius: 4px;
  color: var(--base);
  position: relative;
}

.latest-news .outer-img {
  position: relative;
  overflow: hidden;
}

.latest-news .outer-link img {
  border-radius: 4px 4px 0 0;
  -webkit-transition: -webkit-transform .75s;
  transition: -webkit-transform .75s;
  -o-transition: transform .75s;
  transition: transform .75s;
  transition: transform .75s, -webkit-transform .75s;
  width: 100%;
}

.latest-news .outer-link:hover img {
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15)
}

.latest-news .inner-content {
  font-size: 1.15em;
  padding: 1.5rem;
  height: 100%;
}

.latest-news .category {
  display: block;
  background: var(--primary);
  padding: .5rem 1.75rem;
  border-radius: 0 4px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: .75em;
  text-transform: uppercase;
  color: var(--white);
}

.latest-news .read {
  display: block;
  margin: 1.75rem 0 0 0;
  font-size: .9em;
  color: var(--primary);
  text-transform: uppercase;
}

.latest-news .outer-link:hover .read {
  color: var(--primary);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.white-box-text {
  border: 4px solid var(--white);
  border-radius: 8px;
  display: inline-block;
  padding: 2rem 1rem;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}

.white-box-text-v2 {
  border: 4px solid var(--white);
  border-radius: 0;
  display: inline-block;
  padding: 2rem 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 4rem;
}

.white-box-text .lg, .white-box-text-v2 .lg {
  display: block;
  clear: both;
  font-size: 3.5rem;
}

/* buttons */
.wp-block-button a, .wp-block-button__link {
  display: inline-block;
  padding: 0.6rem 2rem;
  background: var(--primary);
  border-radius: 4px;
  font-weight: 700;
  color: var(--white);
  /*white-space: nowrap;*/
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  font-size: 0.8em;
  line-height: 1.4em;
}

.wp-block-button a:hover, .wp-block-button__link:hover {
  background: var(--base);
  color: var(--white);
}

.wp-block-button.white a {
  background: var(--white);
  color: var(--secondary);
}

.wp-block-button.white a:hover {
  background: var(--secondary);
  color: var(--white);
}

.wp-block-buttons.is-content-justification-center {
  text-align: center;
}

.wp-block-buttons .wp-block-button {
  display: inline-block;
  margin-right: 0.5rem;
}

.wp-block-buttons .wp-block-button:last-of-type {
  margin: 0;
}

/*table styling*/
.wp-block-table {
  max-width: calc(100vw - 2rem);
  padding: 1rem 0;
}

.wp-block-table table {
  border-collapse: collapse;
  overflow-x: auto;
  display: table;
  /*width: fit-content;*/
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  width: 100%;
}

.wp-block-table table td,
.wp-block-table table th {
  border: 1px solid var(--d-grey);
  padding: 1.5rem 1.75rem;
}

.wp-block-table table thead {
  color: var(--primary);
  background: transparent;
}

.wp-block-table table th {
  text-align: left;
  font-weight: 700;
}

.wp-block-table table td {
  /*white-space: nowrap;*/
  /*  border-bottom: none;*/
  font-size: 0.9em;
  font-weight: 100;
  line-height: 1.3;
}

.wp-block-table table td:first-of-type,
.wp-block-table table th:first-of-type {
  border-left: none;
}

.wp-block-table table td:last-of-type,
.wp-block-table table th:last-of-type {
  border-right: none;
}

.is-style-stripes table {
  font-size: .9em
}

.is-style-stripes table th {
  font-size: 1.2em
}

.is-style-stripes table td:first-child {
  font-size: 1em;
}

.is-style-stripes table td,
.is-style-stripes table th {
  padding: .5rem;
}

.is-style-stripes table tr:nth-child(even) {
  background: var(--b-grey);
}

.widget {
  margin-bottom: 2rem;
}

.site-header .widget {
  margin-bottom: 0;
}

/* footer */
.site-footer {
  background: var(--primary);
  color: var(--white);
}

.site-info {
  padding: 2rem 0 .5rem 0;
  background: url(/wp-content/uploads/footer-overlay-e1660755368994.png) no-repeat 50px 0;
}

.site-info .logo {
  position: relative;
  bottom: 1.25rem
}

.site-info .logo img {
  margin: auto;
}

.site-info h2 {
  color: var(--white);
}

/*
.site-info h2::after {
  content: "";
  background: var(--white);
  position: absolute;
  top: 1.75rem;
  left: 0;
  width: 2rem;
  height: 1px;
}*/
.site-info p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.site-info .menu-social-media-container ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-info .menu-social-media-container ul li {
  margin: 1.75rem 1.5rem .75rem 0;
}

.site-info .menu-social-media-container img {
  width: 1.15rem;
}

.copyright {
  display: block;
  padding: 1rem 0;
  width: 100%;
  background: var(--white);
  color: var(--base);
  font-size: .6em;
}

.copyright img {
  margin-bottom: 0.5rem;
}

.copyright ul,
.copyright p {
  margin: 0;
  padding: 0;
}

.copyright ul li,
.copyright p {
  display: inline-block;
}

.copyright a,
.copyright li a {
  color: var(--base);
  padding-right: 0.5rem;
  margin-right: 0.5rem;
  border-right: 1px solid var(--base);
  line-height: 0.6em;
}

.menu-footer-bottom-container, #menu-footer-bottom {
  display: inline;
}

/* Main content */
.module {
  margin: 0 0 3.5rem 0;
}

.grey {
  background: #f5f5f5
}

.module a h2 {
  display: block;
  font-size: 1.85em;
  line-height: 1.25;
  color: var(--primary);
}

.model p {
  color: #000;
  font-weight: 600;
  font-size: 1.3em;
  margin-top: 1.65rem;
  margin-bottom: 0rem
}

.standard-equipment p {
  text-align: center;
  padding: 0rem 2.8rem;
  margin-top: .8rem;
  font-weight: 550
}

.model a {
  margin-top: 1.5rem !important
}

.model h2 {
  font-size: 2em;
  padding-top: 2rem
}

.model {
  font-weight: 600
}

.checkmark li {
  position: relative;
  list-style-type: none;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
}

.checkmark li:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 11px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: #006bab;
  transform-origin: bottom left;
  transform: rotate(45deg);
}

/* Cookie popup */
.cookie-banner {
  position: fixed;
  display: none;
  width: 100%;
  bottom: 0;
  padding: 1rem 2rem .5rem 2rem;
  background: var(--primary);
  color: var(--white);
  z-index: 99;
  left: 0;
  -webkit-box-shadow: 0px 1px 23px 1px rgb(0 0 0 / 36%);
  box-shadow: 0px 1px 23px 1px rgb(0 0 0 / 36%);
}

.cookie-banner a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner .wp-block-button a {
  padding: .5rem 1rem;
  text-decoration: none;
  background: var(--white);
  color: var(--base);
  font-size: 13px;
}

.cad-data li {
  margin-bottom: .8rem
}

.cad-data a {
  background: none;
  border: 1px solid var(--base);
  color: var(--base);
  margin-top: 3rem;
  text-transform: none;
  font-weight: 400;
  padding: .5rem 2.5rem !important
}

.cookie-banner .wp-block-button a:hover {
  opacity: .8;
}

.cookie-banner p {
  color: var(--white);
  font-size: .85em;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner .close {
  color: var(--base);
}

/* Applications */
#app-links {
  margin-bottom: 2rem;
  margin-top: 1rem;
}

#app-links .owl-dot {
  display: inline-flex;
  width: 33.3%;
  color: var(--d-grey);
  padding-right: 3rem;
  line-height: 1.3em;
  font-size: 0.85em;
  cursor: pointer;
  margin-bottom: 0.5rem;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

#app-links .owl-dot i {
  margin-right: 0.5rem;
  color: var(--primary);
}

#app-links .owl-dot:hover {
  padding-left: 0.5rem;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.app-block {
  overflow: hidden;
}

.applications.owl-carousel {
  margin-bottom: 5rem;
}

.applications.owl-carousel .module-box {
  padding: 2.5rem 2.5rem 2.5rem 1.5rem;
}

.useLink {
  display: block;
  margin-bottom: 1rem;
  font-size: 1em;
  text-transform: uppercase;
  float: left;
  width: 100%;
}

.useLink img {
  margin: 0 0.5rem;
  max-width: 3.5rem;
  float: left;
}

.useLink span {
  float: left;
}

.hidden-thumb {
  display: none !important;
}

.gallery-column {
  margin-bottom: 0 !important;
}

.applications.owl-carousel .gallery-column img {
  display: inline-block;
}

.applications.owl-carousel .gallery-column img {
  margin: 0.6rem 0.2rem 0;
  width: calc(33.3% - 0.4rem);
}

.applications.owl-carousel .gallery-column img:nth-child(1) {
  margin: 0 0 0 0.2rem;
  width: calc(100% - 0.4rem);
}

/*.applications.owl-carousel .gallery-column img:not(.hidden-thumb):not(.main-img):nth-child(3n+1){
  margin-right: 0;
}*/
.applications.owl-carousel .owl-nav {
  width: calc(33% - 1.5rem);
  margin-top: -5rem;
  z-index: 1;
  padding-left: 2.5rem;
  position: relative;
  color: var(--d-grey);
  font-size: 0.85em;
}

.owl-prev, .owl-next {
  width: 50%;
  display: inline-block;
  text-transform: uppercase;
}

.owl-next {
  text-align: right;
}

.wp-block-getwid-content-slider.has-arrows-inside .slick-next::before, .wp-block-getwid-content-slider.has-arrows-inside .slick-prev::before, .wp-block-getwid-images-slider.has-arrows-inside .slick-next::before, .wp-block-getwid-images-slider.has-arrows-inside .slick-prev::before, .wp-block-getwid-media-text-slider.has-arrows-inside .slick-next::before, .wp-block-getwid-media-text-slider.has-arrows-inside .slick-prev::before, .wp-block-getwid-post-carousel.has-arrows-inside .slick-next::before, .wp-block-getwid-post-carousel.has-arrows-inside .slick-prev::before, .wp-block-getwid-post-slider.has-arrows-inside .slick-next::before, .wp-block-getwid-post-slider.has-arrows-inside .slick-prev::before, .wp-block-getwid-content-slider .slick-next::before, .wp-block-getwid-content-slider .slick-prev::before, .wp-block-getwid-images-slider .slick-next::before, .wp-block-getwid-images-slider .slick-prev::before, .wp-block-getwid-media-text-slider .slick-next::before, .wp-block-getwid-media-text-slider .slick-prev::before, .wp-block-getwid-post-carousel .slick-next::before, .wp-block-getwid-post-carousel .slick-prev::before, .wp-block-getwid-post-slider .slick-next::before, .wp-block-getwid-post-slider .slick-prev::before {
  color: var(--primary);
  text-shadow: none;
  font-size: 2.5rem;
}

.slick-next, .slick-prev {
  width: 40px;
}

.has-arrows-outside .slick-prev {
  left: -40px;
}

.has-arrows-outside .slick-next {
  right: -50px;
}

.use-block .wp-block-columns {
  background: var(--primary);
  position: relative;
}

.use-block:nth-child(4n+0) {
  background: rgb(0, 107, 171);
  background: linear-gradient(90deg, rgba(0, 107, 171, 1) 0%, rgba(0, 107, 171, 1) 35%, rgba(255, 255, 255, 1) 50%);
}

.use-block:nth-child(4n+0) .wp-block-columns {
  background: var(--primary);
}

.use-block:nth-child(4n+0) .wp-block-columns:after {
  background: url(/wp-content/uploads/use1.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  right: auto;
  z-index: 1;
  content: "";
  height: 100%;
  width: 60px;
  background-position: left center;
}

.use-block:nth-child(2n+1) {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(177, 177, 177, 1) 65%);
}

.use-block:nth-child(2n+1) .wp-block-columns {
  background: var(--mid-grey);
}

.use-block:nth-child(2n+1) .wp-block-columns:after {
  background: url(/wp-content/uploads/use2.png) no-repeat;
  background-size: 100% 100%;
  background-position: right center;
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  left: auto;
  z-index: 1;
  content: "";
  height: 100%;
  width: 60px;
}

.use-block:nth-child(4n+2) {
  background: rgb(0, 159, 213);
  background: linear-gradient(90deg, rgba(0, 159, 213, 1) 0%, rgba(0, 159, 213, 1) 35%, rgba(255, 255, 255, 1) 50%);
}

.use-block:nth-child(4n+2) .wp-block-columns {
  background: var(--secondary);
}

.use-block:nth-child(4n+2) .wp-block-columns:after {
  background: url(/wp-content/uploads/use3.png) no-repeat;
  background-size: 100% 100%;
  background-position: left center;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  right: auto;
  z-index: 1;
  content: "";
  height: 100%;
  width: 60px;
}

/* Home */
.hero-slider h2 {
  position: absolute;
  color: var(--white);
  top: 2rem;
  text-align: center;
  width: 100%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 400;
  z-index: 2;
}

.applicationLinks .slick-list {
  overflow: visible;
}

.applicationLinks .slick-slide {
  margin: 5px;
}

.appLink {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 4rem 0.5rem 2rem;
  min-width: 10rem;
  margin-right: 20px;
  position: relative;
}

.appLink a {
  color: var(--white);
}

.appLink:before {
  width: 0;
  height: 0;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #FFFFFF;
  border-style: solid;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.appLink:after {
  width: 0;
  height: 0;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent var(--primary);
  border-style: solid;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  z-index: 2;
  content: "";
}

/* Toggles */
.wp-block-getwid-toggle__row:first-child .wp-block-getwid-toggle__header-wrapper, .wp-block-getwid-toggle .wp-block-getwid-toggle__header-wrapper, .wp-block-getwid-toggle__content {
  border: none !important;
}

.toggle-box {
  width: 100%;
}

.wp-block-getwid-toggle .wp-block-getwid-toggle__header {
  border-bottom: 1px solid var(--b-grey);
}

.wp-block-getwid-toggle__header a {
  color: var(--tertiary);
}

#primary-menu li.mobile {
  display: none;
}
#primary-menu li.no-border-right a {
  border-right: none;
}


@media (max-width: 1366px) {
  .hero .h1 {
    margin-top: 6rem !important;
  }

  .main-navigation li a {
    display: block;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(225, 225, 225, .5);
    line-height: 1;
  }

  ul.sub-menu li a {
    font-size: 0.85em;
    background: #0576ba;
  }

  .menu-main-navigation-container .sub-menu {
    display: none;
  }

  #primary-menu .menu-item-has-children {
    position: relative;
  }

  #primary-menu .menu-item-has-children:after {
    background: url(/wp-content/uploads/chevron-down-white.svg) no-repeat 50% 50%;
    background-size: auto;
    background-size: 10px;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 35px;
    content: "";
    z-index: 111;
  }

  .btn-content {
    overflow-y: scroll;
    max-height: 80vh;
    top: 0;
  }

  #primary-menu li.mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero .h1 {
    font-size: 2em;
  }

  .site-branding img {
    max-width: 200px;
    margin: 5px 0;
  }

  .hero img {
    min-height: 300px;
  }

  .product-boxes .owl-nav {
    left: 0;
    right: 0;
    width: 100%;
  }

  .top-left {
    position: relative;
  }

  .white-box-text .lg, .white-box-text-v2 .lg {
    font-size: 2rem;
  }

  .single-product .wp-block-buttons a {
    margin-bottom: 0.5rem;
  }

  .wp-block-getwid-images-slider.has-arrows-inside .slick-next {
    right: -15px;
  }

  .wp-block-getwid-images-slider.has-arrows-inside .slick-prev {
    left: -15px;
  }

  .has-arrows-outside .slick-prev {
    left: -30px;
  }

  .has-arrows-outside .slick-next {
    right: -30px;
  }

  div.wp-block-columns.standard-equipment, div.wp-block-columns.fw-mob, .wp-block-getwid-content-slider-slide__wrapper div.wp-block-columns {
    display: block;
  }

  .use-block .wp-block-column:nth-child(1) {
    padding-top: 2rem;
  }

  .use-block .wp-block-column:nth-child(2) {
    padding-bottom: 2rem;
  }

  .blue-box-arrow {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .wp-block-table table td, .wp-block-table table th {
    padding: 0.5rem;
  }

  .wp-block-table table {
    display: block;
  }

  .cad-data, .blog #main-content, .single-post, .no-hero {
    /*padding-top: 65px;*/
  }

  #asl-storelocator {
    padding: 20px;
  }

  .use-block {
    overflow: hidden;
  }
}

/*font-size: 2em;*/
/* tablet (medium) screens */
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }

  .narrow>div:first-of-type,
  .alignwide>div:first-of-type,
  .alignfull>div:first-of-type {
    padding: 4rem 2rem;
  }

  .site-header .alignfull>div:first-of-type {
    padding: .6rem 0;
  }

  .t-one-item>.wp-block-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .t-two-items>.wp-block-column,
  .t-one-of-two>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .t-three-items>.wp-block-column,
  .t-one-of-three>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 3);
    flex: 0 0 calc(100% / 3);
  }

  .t-four-items>.wp-block-column,
  .t-one-of-four>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }

  .t-five-items>.wp-block-column,
  .t-one-of-five>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }

  .t-six-items>.wp-block-column,
  .t-one-of-six>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66666666666667%;
    flex: 0 0 16.66666666666667%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 6);
    flex: 0 0 calc(100% / 6);
  }

  .t-two-of-three>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666%;
    flex: 0 0 66.6666%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 3 * 2);
    flex: 0 0 calc(100% / 3 * 2);
  }

  .t-three-of-four>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
  }

  .t-three-of-five>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
  }

  .t-five-of-six>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333%;
    flex: 0 0 83.3333%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 6 * 5);
    flex: 0 0 calc(100% / 6 * 5);
  }

  .hero .switcharoo:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .hero .switcharoo:nth-of-type(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .t-align-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .t-align-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .t-has-text-align-center {
    text-align: center;
  }

  .t-has-text-align-right {
    text-align: right;
  }

  .t-has-text-align-left {
    text-align: left;
  }

  .main-navigation li a {
    border-bottom: 0;
    line-height: 1.5;
  }

  .site-branding {
    margin: 1rem 2rem;
  }

  .site-branding img {
    width: 19rem;
  }

  .main-navigation .btn-toggle {
    padding: 3rem 2rem;
  }

  .main-navigation .btn-toggle i.bar,
  .main-navigation .btn-toggle i.bar::before,
  .main-navigation .btn-toggle i.bar::after {
    width: 2.25rem;
  }

  .main-navigation .btn-toggle i.bar::before {
    top: -12px;
  }

  .main-navigation .btn-toggle i.bar::after {
    bottom: -12px;
  }

  .site-info .logo img {
    margin: 0;
  }

  .site-info .menu-social-media-container ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .hero img {
    height: 100vh;
  }

  .slider .owl-dots,
  .slider .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
  }

  .slider .owl-dots {
    position: absolute;
    bottom: 1em;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
  }

  .slider .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
  }

  .slider .owl-nav {
    top: 0
  }

  .slider .owl-dots .owl-dot span {
    display: block;
    width: 1rem;
    height: 1rem;
    margin: 0 .2rem;
    background: var(--white);
    border-radius: 100%;
    -webkit-backface-visibility: visible;
    background-size: 16px 19px;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
  }

  .slider .owl-dots .owl-dot.active span,
  .slider .owl-dots .owl-dot:hover span {
    background: var(--secondary);
    border-radius: 100%;
  }

  .slider .owl-nav [class*=owl-] {
    display: inline-block;
    cursor: pointer;
    width: 42px;
    height: 82px;
    background-size: 11px 20px;
    background-size: 42px 82px;
  }

  .slider .owl-nav .owl-prev,
  .slider .owl-nav .owl-prev:hover {
    background: url(/wp-content/themes/ibtonline/img/chevron-left.svg) no-repeat;
    background-size: 11px 20px;
    background-size: 42px 82px;
  }

  .slider .owl-nav .owl-next,
  .slider .owl-nav .owl-next:hover {
    background: url(/wp-content/themes/ibtonline/img/chevron-right.svg) no-repeat;
    background-size: 11px 20px;
    background-size: 42px 82px;
  }

  .slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    left: 98%;
    -webkit-transform: translate(-98%, -50%);
    -ms-transform: translate(-98%, -50%);
    transform: translate(-98%, -50%)
  }

  .slider .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 2%;
    -webkit-transform: translate(-2%, -50%);
    -ms-transform: translate(-2%, -50%);
    transform: translate(-2%, -50%)
  }

  .slider .owl-nav [class*=owl-]:hover {
    opacity: .8
  }

  .wp-block-cover {
    padding: 4rem 0;
  }

  .wp-block-cover .module-box {
    padding: 3rem;
  }

  .wp-block-cover {
    padding: 4rem 0;
    background-position: top left;
    background-size: cover;
  }

  .wp-block-cover .module-box {
    display: block;
    width: 100%;
    background: var(--white);
  }

  .list-three-cols {
    -moz-columns: 2;
    -webkit-columns: 2;
    columns: 2;
    -moz-column-gap: 1rem;
    -webkit-column-gap: 1rem;
    column-gap: 1rem;
  }

  .list-three-cols li {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
  }

  .feature-button {
    padding-top: 1.5rem !important
  }

  .feature-button-first {
    padding-top: 2.9rem !important
  }
}

/* desktop */
@media (min-width: 1366px) {
  html {
    font-size: 16px;
  }

  #main-content {
    /*padding-top: 72px;*/
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 2.5em;
  }

  .narrow>div:first-of-type,
  .alignwide>div:first-of-type,
  .alignfull>div:first-of-type {
    padding: 3.5rem;
  }

  .site-header .alignfull>div:first-of-type {
    padding: 1.45rem 2.5rem;
  }

  .site-header .top-nav .alignfull>div:first-of-type {
    padding: 0 2.5rem;
  }

  .wp-block-columns {
    margin-left: -2.5rem;
  }

  .model {
    width: 85%;
    margin-right: auto;
    margin-left: auto !important
  }

  .wp-block-columns .wp-block-column {
    padding-left: 2.5rem;
    margin-bottom: 2.5rem;
  }

  /* slim gutter */
  .wp-block-columns.slim-gutter {
    margin-left: -.5rem;
  }

  .wp-block-columns.slim-gutter .wp-block-column {
    padding-left: .5rem;
    margin-bottom: .5rem;
  }

  .d-one-item>.wp-block-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .d-two-items>.wp-block-column,
  .d-one-of-two>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .d-three-items>.wp-block-column,
  .d-one-of-three>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 3);
    flex: 0 0 calc(100% / 3);
  }

  .d-four-items>.wp-block-column,
  .d-one-of-four>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }

  .d-five-items>.wp-block-column,
  .d-one-of-five>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }

  .d-six-items>.wp-block-column,
  .d-one-of-six>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66666666666667%;
    flex: 0 0 16.66666666666667%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 6);
    flex: 0 0 calc(100% / 6);
  }

  .d-two-of-three>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666%;
    flex: 0 0 66.6666%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 3 * 2);
    flex: 0 0 calc(100% / 3 * 2);
  }

  .d-three-of-four>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
  }

  .d-three-of-five>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
  }

  .d-five-of-six>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333%;
    flex: 0 0 83.3333%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 6 * 5);
    flex: 0 0 calc(100% / 6 * 5);
  }

  /* Switch 2 column order */
  .switcharoo:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .switcharoo:nth-of-type(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .d-align-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .d-align-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .d-has-text-align-center {
    text-align: center;
  }

  .d-has-text-align-right {
    text-align: right;
  }

  .d-has-text-align-left {
    text-align: left;
  }

  .top-nav {
    display: block;
    width: 100%;
    margin: 0;
    background: var(--primary);
    font-size: .85em;
  }

  .site-header .one-item>.wp-block-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .site-branding {
    margin: 0;
    display: inline-block;
    vertical-align: top;
    top: 1.2rem
  }

  .site-branding img {
    width: 100%;
  }

  .btn-toggle,
  .btn-toggle2 {
    display: none;
  }

  .btn-content {
    display: inline !important;
  }

  .main-navigation {
    position: relative;
    z-index: 2;
    padding: 0.7rem;
  }

  .main-navigation .btn-content {
    background: transparent;
    padding: 0;
  }

  #primary-menu,#menu-top-bar-menu  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin: 0;
    width: 100%;
  }

  #primary-menu li, #menu-top-bar-menu li {
    font-size: .9rem;
    margin: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    position: relative;
  }

  #menu-top-bar-menu li a {
    color: white;
    padding: 0px 20px;
    text-transform: uppercase;
    font-size: 0.85em;
    font-weight: 700;
  }

  ul#menu-top-bar-menu {
      padding: 8px 0px;
  }
  
  .alignfull.main-nav {
    padding: 10px 0px;
  }

  #primary-menu li a {
    display: block;
    margin: 0;
    padding: 0 0.8rem;
    white-space: nowrap;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    color: var(--tertiary);
    font-size: 1em;
    font-weight: 700;
    line-height: 0.75rem;
  }

  #primary-menu>li>a {
    border-right: 2px solid var(--secondary);
  }

  #primary-menu li:last-child a {
    border: none;
    display: flex
  }

  #primary-menu .flags-main img {
    margin-right: 6px;
    justify-content: last baseline;
  }

  #primary-menu li:last-of-type a, #primary-menu li:nth-last-child(2) a {
    /*margin: 0 0 0 .5rem;
    padding: 0.8rem 1.2rem;
    background: var(--tertiary);
    border-radius: 4px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    line-height: 0;*/
  }

  #primary-menu li:last-of-type a:hover, #primary-menu li:nth-last-child(2) a:hover {
    /*background: var(--primary);
    color: var(--white); */
  }

  #primary-menu li:nth-last-child(2) a, #primary-menu li:nth-last-child(2) a:hover {
    /*background: var(--primary);*/
  }

  #primary-menu li:first-child a {
    margin-left: 0;
  }

  #primary-menu li:last-child a {
    margin-right: 0;
  }

  #primary-menu li a:hover {
    color: var(--primary);
  }

  #primary-menu .current-menu-parent a,
  #primary-menu .current_page_item a {
    color: var(--primary);
  }

  /* sub menu drop-down */
  #primary-menu .menu-item-has-children {
    background: url(/wp-content/uploads/chevron-down.svg) no-repeat calc(100% - 1rem) 50%;
    background-size: 10px;
  }

  #primary-menu .menu-item-has-children a {
    padding-right: 2em;
  }

  #primary-menu .sub-menu {
    position: absolute;
    display: none;
    margin: 0;
    width: 150%;
    padding-top: 1rem;
  }

  #primary-menu li:hover .sub-menu {
    display: block;
  }

  #primary-menu li .sub-menu li a,
  #primary-menu li .sub-menu li:last-of-type a {
    margin: 0;
    padding: 0.8rem 1.2rem;
    background: var(--primary);
    display: block;
    color: var(--white);
    border-top: 1px solid var(--white);
    border-radius: 0;
    text-align: left;
    white-space: normal;
    text-transform: capitalize;
    line-height: 1.4;
  }

  #primary-menu li .sub-menu li.current-menu-item a,
  #primary-menu li .sub-menu li a:hover,
  #primary-menu li .sub-menu li:last-of-type a:hover {
    background: var(--white);
    color: var(--primary);
  }

  .site-info .wp-block-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .hero figure {
    max-height: 750px;
    overflow: hidden;
  }

  .hero img {
    height: auto;
  }

  .text-block-right {
    padding: 0 0 0 5rem;
  }

  .text-block-left {
    padding: 0 5rem 0 0;
  }

  .parallax div[role=img] {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .wp-block-cover.cyan-overlay {
    background-size: 60%;
  }

  .wp-block-cover.cyan-overlay::after {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(14, 110, 128, 0)), color-stop(60%, rgba(14, 110, 128, 1)));
    background-image: -o-linear-gradient(left, rgba(14, 110, 128, 0) 0%, rgba(14, 110, 128, 1) 60%);
    background-image: linear-gradient(90deg, rgba(14, 110, 128, 0) 0%, rgba(14, 110, 128, 1) 60%);
  }

  .list-three-cols {
    -moz-columns: 3;
    -webkit-columns: 3;
    columns: 3;
    -moz-column-gap: 4rem;
    -webkit-column-gap: 4rem;
    column-gap: 4rem;
  }

  .latest-news .outer-link {
    display: -ms-grid;
    display: grid;
    grid-auto-rows: 1fr;
    height: 100%;
    /* equal height columns */
  }

  .latest-news .read {
    position: absolute;
    bottom: 1.75rem;
  }

  .feature-button {
    padding-top: 4.5rem !important
  }

  .feature-button-first {
    padding-top: 7.5rem !important
  }
}
