/*
 * Hide only visually, but have it available for screen readers: h5bp.com/v
 */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap");
.screen-reader-text,
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
Theme Name: ip-performance
Theme URI: http://properdesign.rs
Description: IP-Performance
Author: Proper Design
Author URI: http://properdesign.rs
Version: 1
Tags:
*/
img[class*=wp-image-],
.wp-caption {
  display: block;
  max-width: 100%;
  height: auto;
}

.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

.gallery {
  margin: 1em -0.5em;
}

.gallery-item {
  padding: 0.5em;
  margin: 0;
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}
.gallery-item figcaption {
  margin-top: 0.5em;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33.3333333333%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.6666666667%;
}

.gallery-columns-7 .gallery-item {
  width: 14.2857142857%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.1111111111%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

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

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

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: "Open Sans", sans-serif;
  /* 1 */
  line-height: 1.8;
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  box-sizing: border-box;
}

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

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

::selection {
  background-color: #fcb13d;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
blockquote,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 0;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
  padding: 1em;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  background-color: #0a1b3a;
  color: #00FF00;
  padding: 1em;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1rem 0;
  line-height: 1.2;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1,
h2 {
  font-weight: 300;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #f811e1;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  color: #0053a5;
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

tr {
  border-bottom: solid thin;
}

td, th {
  vertical-align: top;
  padding: 0.5em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
  margin: 0;
  max-width: 100%;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

.siteHeader-wrapper {
  background-color: #0053a5;
  color: white;
  padding: 1rem 2rem;
}

.siteHeader {
  max-width: 116rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.siteHeader a {
  color: currentColor;
  text-decoration: none;
}

.siteHeader-title {
  margin: 0;
  flex: 1;
  flex-basis: 50%;
}

.siteHeader-logo {
  display: block;
  max-width: 12rem;
  height: auto;
  fill: currentColor;
}

.siteHeader-actions {
  flex-basis: 50%;
  text-align: right;
}

a.siteHeader-action {
  line-height: 1;
  display: block;
  margin-bottom: 0.5em;
}
a.siteHeader-action + .siteHeader-action {
  margin-left: 0.75em;
}
@media (min-width: 30em) {
  a.siteHeader-action {
    display: inline-block;
  }
}

.siteHeader-action-icon {
  display: inline-block;
  margin: 0 0.25em 0 0;
  fill: currentColor;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  transform: translateY(-0.1em);
}

.siteNav-wrapper {
  position: relative;
  background-color: #0053a5;
  color: white;
}
.siteNav-wrapper a {
  color: currentColor;
  text-decoration: none;
}

.siteNav {
  margin: auto;
  max-width: 116rem;
}

.wp-header-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 1px;
}

.megaMenu-parentItem {
  height: 100%;
  line-height: 1.2;
  display: grid;
  grid-template-columns: 1fr min-content;
  align-items: flex-end;
  justify-content: space-between;
}
.megaMenu-parentItem > a {
  display: block;
  text-decoration: none;
  padding: 1em;
  height: 100%;
  padding-right: 1rem;
}
.megaMenu-parentItem:hover {
  background-color: #01376e;
}

.current-menu-ancestor .megaMenu-parentItem,
.current-menu-parent .megaMenu-parentItem,
.current_page_ancestor .megaMenu-parentItem,
.current-menu-item .megaMenu-parentItem {
  background-color: #01376e;
}

.megaMenu-parent-label {
  font-weight: 700;
}

.megaMenu-parent-description {
  font-size: small;
}

.megaMenu-subNav-toggle {
  background-color: rgba(0, 0, 0, 0.1);
  border: 0;
  height: 100%;
  display: none;
}

.menu-item-has-children .megaMenu-subNav-toggle {
  display: block;
}
.menu-item-has-children .megaMenu-subNav-toggle .subNav-toggle-icon {
  width: 2rem;
  height: 2rem;
}
.menu-item-has-children .megaMenu-subNav-toggle:hover {
  color: #fcb13d;
}

.megaMenu-child-label {
  font-size: x-large;
}

.sub-menu .current-menu-item > a {
  color: #fcb13d;
  text-decoration: underline;
}

.megaMenu-parentItem + .sub-menu {
  gap: 1rem;
  padding: 1rem;
  background-color: #01376e;
  display: none;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  left: 0;
  list-style: none;
  margin: 0;
  max-width: 116rem;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 10;
}
@media (min-width: 60rem) {
  .megaMenu-parentItem + .sub-menu {
    gap: 2rem;
  }
}
@media (min-width: 60rem) {
  .megaMenu-parentItem + .sub-menu {
    padding: 2rem;
  }
}
.megaMenu-parentItem + .sub-menu.open {
  display: grid;
}
@media (min-width: 116rem) {
  .megaMenu-parentItem + .sub-menu {
    left: calc((100% - 116rem) / 2);
  }
}
.megaMenu-parentItem + .sub-menu > .menu-item {
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1em;
}
.megaMenu-parentItem + .sub-menu .menu-item a:hover {
  color: #fcb13d;
}

.sub-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.squish-ready .wp-header-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.squish-ready.too-small .wp-header-menu {
  display: block;
}
.squish-ready.too-small .megaMenu-parentItem {
  border-top: solid thin;
}
.squish-ready.too-small .megaMenu-parentItem + .sub-menu {
  position: relative;
  top: 0;
}

.siteFooter-wrapper {
  overflow: hidden;
  padding: 1rem;
  background-color: #0053a5;
}
@media screen and (min-width: 50rem) {
  .siteFooter-wrapper {
    padding: 2rem;
  }
}

.siteFooter {
  color: white;
  max-width: 116rem;
  margin: auto;
}
@media screen and (min-width: 50rem) {
  .siteFooter {
    display: flex;
    justify-content: space-between;
  }
}

.footer-hcard h3 {
  margin: 0;
}
.footer-hcard a {
  color: white;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
}
.footer-contacts button {
  margin-right: 0.5em;
}

.footerSocials svg {
  display: inline-block;
  width: 2.7em;
  height: 2.7em;
  fill: white;
}
.footerSocials a + a {
  margin-left: 0.5em;
}

.footerPartners {
  border-top: solid thin #ecebeb;
  grid-area: partners;
  height: 6rem;
  overflow: hidden;
}

.footerPartner {
  display: block;
  height: 6rem;
  width: auto;
}

.footerPartner-logo {
  padding: 1rem;
  height: 6rem;
  width: auto;
  max-width: 12rem;
  object-fit: contain;
}

.footerNav ul {
  list-style: none;
  padding: 0;
}
.footerNav li {
  display: inline-block;
  margin-right: 0.25em;
}
.footerNav a {
  color: currentColor;
}

.productCategory-wrapper {
  padding: 1rem;
  max-width: 80rem;
  margin: auto;
}
@media (min-width: 60rem) {
  .productCategory-wrapper {
    padding: 2rem;
  }
}

.productCategories {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  width: 100%;
}

.productCategories-item {
  background: #0053a5;
}
.productCategories-item a {
  font-size: 1.5rem;
  font-weight: 200;
  display: block;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
}

.productCategory-withProducts {
  max-width: 80rem;
  gap: 1rem;
}
@media (min-width: 60rem) {
  .productCategory-withProducts {
    gap: 2rem;
  }
}
@media screen and (min-width: 50rem) {
  .productCategory-withProducts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: dense;
  }
  .productCategory-withProducts .testimonialList {
    grid-column: 1;
  }
  .productCategory-withProducts .productsList {
    grid-column: 2;
  }
}

.productsList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.productTeaser {
  display: flex;
  gap: 1rem;
  padding: 1em;
  background-color: white;
  border-left: solid thick #0053a5;
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2);
}
.productTeaser.active {
  cursor: pointer;
}
.productTeaser.active:hover {
  background-color: #d1e7f6;
}

.productTeaser-title {
  margin: 0;
}

.productTeaser-logo-wrapper {
  flex-shrink: 0;
}

.productTeaser-logo {
  background-color: white;
  display: block;
  height: auto;
  max-height: 8rem;
  width: 8rem;
  object-fit: contain;
  padding: 0.5em;
}

.contact-ctaButton {
  background-color: #fcb13d;
  color: black;
  padding: 0.5rem 2rem;
  border: none;
}

.modal-overlay {
  position: fixed;
  z-index: 15;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow-y: scroll;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  animation: fade-in 0.5s forwards ease-out;
  backdrop-filter: blur(3px);
}
@media (min-width: 60rem) {
  .modal-overlay {
    padding: 2rem;
  }
}
.admin-bar .modal-overlay {
  top: 46px;
}
@media screen and (min-width: 782px) {
  .admin-bar .modal-overlay {
    top: 32px;
  }
}

.modal {
  position: relative;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  background: white;
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  animation: slide-up forwards 0.8s;
}
.modal fieldset {
  display: block;
  border: none;
  padding: 0;
}
.modal label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.modal .field-wrapper {
  margin-bottom: 1rem;
}
.modal .field-help {
  padding: 0.25rem;
  background-color: #efefea;
  margin: 0.5rem 0;
}
.modal .field-error {
  padding: 0.25rem;
  background-color: #dd4347;
  color: white;
  margin: 0.5rem 0;
}
.modal [type=text],
.modal [type=url],
.modal [type=email],
.modal textarea {
  width: 100%;
  max-width: 40rem;
  border: solid thin black;
  padding: 0.75rem;
}

.modal-header {
  background-color: #0053a5;
  text-align: right;
  color: white;
}

.modal-close {
  padding: 1rem 2rem;
  border: none;
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
}

.modal-title {
  background-color: #0053a5;
  color: white;
  padding: 2rem;
  margin: 0;
}

.modal-content {
  padding: 2rem;
  background: white;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.shareButtons {
  display: flex;
}

.hero-wrapper {
  padding: 2rem;
}

.hero {
  max-width: 80rem;
  margin: 0 auto;
}
.hero:after {
  content: "";
  display: table;
  clear: both;
}

.hero-image {
  display: block;
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.hero-preTitle {
  padding: 1em 0 0;
}

h1.hero-title {
  font-size: calc(
    1.5rem + 2 * ((100vw - 30rem) / 70)
  );
  color: #0053a5;
  margin: 2rem 0;
}
@media screen and (max-width: 30rem) {
  h1.hero-title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 100rem) {
  h1.hero-title {
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 50rem) {
  .hero {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 2rem min-content 1fr;
    grid-column-gap: 2rem;
    justify-items: start;
  }

  .hero-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
    grid-column-start: 6;
    grid-column-end: 13;
    grid-row-start: 1;
    grid-row-end: 4;
  }

  .hero-preTitle {
    padding: 0;
    grid-column-start: 1;
    grid-row-start: 1;
  }

  h1.hero-title {
    color: #0053a5;
    background: white;
    padding: 0.3em 2rem 0.5em 0;
    margin: 0;
    grid-column-start: 1;
    grid-column-end: 8;
    grid-row-start: 2;
    grid-row-end: 3;
  }

  .hero-content {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 3;
  }
}
.testimonialList {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.testimonial-quote {
  background-color: #ecebeb;
  padding: 0.5rem 2rem;
  position: relative;
  color: #0053a5;
  font-size: 1.2rem;
  font-weight: 200;
}
.testimonial-quote:after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border: solid 1rem transparent;
  border-top-color: #b9b9b9;
  border-right-color: #b9b9b9;
  position: absolute;
  top: 100%;
  left: 2rem;
}

.testimonial-attribution {
  margin-left: 4rem;
  padding: 1rem;
}

.categoryNav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  line-height: 1;
  letter-spacing: 0.02em;
}
.categoryNav a {
  display: block;
  padding: 0.5em 0.75em;
  text-decoration: none;
}

.cat-item a {
  background-color: #d1e7f6;
}

.current-cat a {
  color: black;
  background-color: #fcb13d;
}

.button,
a.button {
  background-color: #fcb13d;
  color: black;
  padding: 0.5rem 2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.siteNav-wrapper {
  position: relative;
  background-color: #0053a5;
  color: white;
}
.siteNav-wrapper a {
  color: currentColor;
  text-decoration: none;
}

.siteNav {
  margin: auto;
  max-width: 116rem;
}

.wp-header-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 1px;
}

.megaMenu-parentItem {
  height: 100%;
  line-height: 1.2;
  display: grid;
  grid-template-columns: 1fr min-content;
  align-items: flex-end;
  justify-content: space-between;
}
.megaMenu-parentItem > a {
  display: block;
  text-decoration: none;
  padding: 1em;
  height: 100%;
  padding-right: 1rem;
}
.megaMenu-parentItem:hover {
  background-color: #01376e;
}

.current-menu-ancestor .megaMenu-parentItem,
.current-menu-parent .megaMenu-parentItem,
.current_page_ancestor .megaMenu-parentItem,
.current-menu-item .megaMenu-parentItem {
  background-color: #01376e;
}

.megaMenu-parent-label {
  font-weight: 700;
}

.megaMenu-parent-description {
  font-size: small;
}

.megaMenu-subNav-toggle {
  background-color: rgba(0, 0, 0, 0.1);
  border: 0;
  height: 100%;
  display: none;
}

.menu-item-has-children .megaMenu-subNav-toggle {
  display: block;
}
.menu-item-has-children .megaMenu-subNav-toggle .subNav-toggle-icon {
  width: 2rem;
  height: 2rem;
}
.menu-item-has-children .megaMenu-subNav-toggle:hover {
  color: #fcb13d;
}

.megaMenu-child-label {
  font-size: x-large;
}

.sub-menu .current-menu-item > a {
  color: #fcb13d;
  text-decoration: underline;
}

.megaMenu-parentItem + .sub-menu {
  gap: 1rem;
  padding: 1rem;
  background-color: #01376e;
  display: none;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  left: 0;
  list-style: none;
  margin: 0;
  max-width: 116rem;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 10;
}
@media (min-width: 60rem) {
  .megaMenu-parentItem + .sub-menu {
    gap: 2rem;
  }
}
@media (min-width: 60rem) {
  .megaMenu-parentItem + .sub-menu {
    padding: 2rem;
  }
}
.megaMenu-parentItem + .sub-menu.open {
  display: grid;
}
@media (min-width: 116rem) {
  .megaMenu-parentItem + .sub-menu {
    left: calc((100% - 116rem) / 2);
  }
}
.megaMenu-parentItem + .sub-menu > .menu-item {
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1em;
}
.megaMenu-parentItem + .sub-menu .menu-item a:hover {
  color: #fcb13d;
}

.sub-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.squish-ready .wp-header-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.squish-ready.too-small .wp-header-menu {
  display: block;
}
.squish-ready.too-small .megaMenu-parentItem {
  border-top: solid thin;
}
.squish-ready.too-small .megaMenu-parentItem + .sub-menu {
  position: relative;
  top: 0;
}

.siteWrapper {
  min-height: 100vh;
}
.siteWrapper[aria-hidden=true] {
  pointer-events: none;
}

.siteFooter-wrapper {
  position: sticky;
  top: 100vh;
}

.frontPage-testimonials {
  margin: 0 auto;
  max-width: 80rem;
}

.frontPage-sections {
  background: #d1e7f6;
  background-image: linear-gradient(black 15%, white);
  background-attachment: fixed;
  background-blend-mode: screen;
  padding: 2em;
  margin: auto;
}

.frontPage-sectionsList {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 50rem) {
  .frontPage-sectionsList {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
    max-width: 80rem;
  }
}
.frontPage-sectionsList a {
  text-decoration: none;
  color: currentColor;
}

.frontPage-sectionsList-item {
  background-color: white;
  padding: 1rem;
  text-align: center;
}
.frontPage-sectionsList-item h2 {
  color: #0053a5;
  font-size: calc(
    1.2rem + 0.8 * ((100vw - 20rem) / 70)
  );
  margin: 0;
}
@media screen and (max-width: 20rem) {
  .frontPage-sectionsList-item h2 {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 90rem) {
  .frontPage-sectionsList-item h2 {
    font-size: 2rem;
  }
}

.frontPage-sectionsList-item-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.frontPage-video-wrapper {
  background-color: #0053a5;
  background-image: linear-gradient(black 15%, white);
  background-attachment: fixed;
  background-blend-mode: screen;
  padding: 1rem;
}
@media (min-width: 60rem) {
  .frontPage-video-wrapper {
    padding: 2rem;
  }
}

.frontPage-video-inner {
  max-width: 80rem;
  margin: auto;
}

.frontpage-productCategory-list {
  list-style: none;
  display: grid;
  overflow: hidden;
  padding: 0;
  margin: auto;
  max-width: 116rem;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 60rem) {
  .frontpage-productCategory-list {
    gap: 2rem;
  }
}
@media (min-width: 70rem) {
  .frontpage-productCategory-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.frontpage-productCategory {
  display: flex;
  flex-direction: column-reverse;
  background: #0053a5;
}
@media (min-width: 40rem) {
  .frontpage-productCategory {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .frontpage-productCategory:nth-child(even) .frontpage-productCategory-content {
    order: 2;
  }
  .frontpage-productCategory:nth-child(even) .frontpage-productCategory-image-wrapper {
    order: 1;
  }
}
.frontpage-productCategory a {
  font-size: 1.5rem;
  font-weight: 200;
  display: block;
  color: white;
  text-decoration: none;
  padding: 0;
}

.frontpage-productCategory-content {
  padding: 1rem;
  color: white;
  display: block;
  order: 1;
}

.frontpage-productCategory-image {
  display: block;
  margin: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.frontpage-productCategory-image-wrapper {
  order: 2;
}

.frontPage-productCategory-wrapper {
  padding: 1rem;
  background-image: linear-gradient(#d1e7f6, white);
}
@media (min-width: 60rem) {
  .frontPage-productCategory-wrapper {
    padding: 2rem;
  }
}

.frontPage-productCategory-title {
  font-size: xx-large;
  text-align: center;
  color: #0053a5;
}

.frontPage-posts-wrapper {
  padding: 1rem;
  background-color: #d1e7f6;
  background-image: linear-gradient(black 15%, white);
  background-attachment: fixed;
  background-blend-mode: screen;
}
@media (min-width: 60rem) {
  .frontPage-posts-wrapper {
    padding: 2rem;
  }
}

.frontPage-posts-title {
  font-size: xx-large;
  text-align: center;
  color: #0053a5;
}

.frontPage-posts {
  list-style: none;
  padding: 0;
  margin: auto;
  display: grid;
  gap: 2rem;
  max-width: 116rem;
}
@media (min-width: 60em) {
  .frontPage-posts {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.frontPage-posts-catLink {
  padding: 0.5em;
  display: block;
  color: black;
  letter-spacing: 0.05em;
  background-color: #fcb13d;
  text-align: center;
}

.frontPage-post {
  background-color: white;
  padding: 1em;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.frontPage-post a {
  text-decoration: none;
}

.frontPage-post-content {
  flex-grow: 1;
  word-break: break-word;
}

.frontPage-post-title {
  font-size: x-large;
  margin: 0;
}

.frontPage-post-image {
  display: block;
  height: auto;
  margin: 0;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.frontPagePost-date {
  position: absolute;
  font-size: small;
  top: 2rem;
  left: 0.5rem;
  background-color: white;
  padding: 0.25em 0.5em;
}

.frontPage-hero-wrapper {
  background-color: #0053a5;
}

.frontPage-hero-inner {
  display: grid;
  overflow: hidden;
  background-size: cover;
  background-position: 50%;
  grid-template-rows: 30vh min-content;
  grid-template-columns: 2rem 1fr 2rem;
  max-width: 116rem;
  margin: auto;
}
@media (min-width: 60rem) {
  .frontPage-hero-inner {
    min-height: 50vh;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 10vh min-content 10vh;
  }
}

h1.frontPage-hero-title {
  color: #0053a5;
}

.frontPage-hero {
  padding: 1rem;
  background: white;
  grid-column: 2;
  grid-row: 2;
  margin: 0 0 0 auto;
  width: 100%;
}
@media (min-width: 60rem) {
  .frontPage-hero {
    padding: 2rem;
  }
}
@media (min-width: 60rem) {
  .frontPage-hero {
    max-width: 40rem;
  }
}

.frontPage-hero-content {
  margin-bottom: 1rem;
}

@media (min-width: 60rem) {
  .frontPage-hero-wrapper:nth-of-type(even) .frontPage-hero {
    grid-column: 1;
    margin: 0 auto 0 0;
  }
}
.archive-wrapper {
  padding: 1rem;
}
@media (min-width: 60rem) {
  .archive-wrapper {
    padding: 2rem;
  }
}

.archive-header,
.archive-list,
.archive-pagination-wrapper {
  padding: 1rem;
  margin: auto;
  max-width: 80rem;
}
@media (min-width: 60rem) {
  .archive-header,
.archive-list,
.archive-pagination-wrapper {
    padding: 2rem;
  }
}

.archive-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  overflow: hidden;
}
@media (min-width: 60rem) {
  .archive-list {
    gap: 2rem;
  }
}

.archive-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  gap: 1rem;
}
@media (min-width: 60rem) {
  .archive-grid {
    gap: 2rem;
  }
}

.page-content {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1rem;
  background-color: white;
  position: relative;
  z-index: 2;
}
@media (min-width: 60rem) {
  .page-content {
    padding: 2rem;
  }
}
@media (min-width: 50rem) {
  .page-content {
    transform: translateY(-2rem);
  }
}

.page-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 50rem) {
  .page-image {
    height: 50vh;
  }
}
@media screen and (min-width: 68rem) {
  .page-image {
    margin-bottom: -3rem;
  }
}

.page-title {
  color: #0053a5;
}

@media screen and (min-width: 50rem) {
  .topProductCats-columns {
    max-width: 80rem;
    margin: 0 auto;
  }
}

@media screen and (min-width: 50rem) {
  .topServices-columns {
    max-width: 80rem;
    margin: 0 auto;
  }
}

.services-list {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 80rem;
}
@media (min-width: 44rem) {
  .services-list {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
    margin: 2rem auto 0;
  }
}

.services-list-item {
  background: #0053a5;
}
.services-list-item a {
  font-size: 1.5rem;
  font-weight: 200;
  display: block;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
}

.single-partner main {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  padding: 1rem;
  gap: 1rem;
}
@media (min-width: 60rem) {
  .single-partner main {
    padding: 2rem;
  }
}
@media (min-width: 60rem) {
  .single-partner main {
    gap: 2rem;
  }
}
@media screen and (min-width: 50rem) {
  .single-partner main {
    align-items: start;
    grid-template-columns: 1fr 1fr;
  }
}
.single-partner section {
  position: sticky;
}

.singlePartner-logo {
  width: 33.3333333333%;
  height: auto;
}

.singlePartner-name {
  color: #0053a5;
  font-size: calc(
    1.5rem + 1.5 * ((100vw - 20em) / 40)
  );
}
@media screen and (max-width: 20em) {
  .singlePartner-name {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 60em) {
  .singlePartner-name {
    font-size: 3rem;
  }
}

.partnerProducts-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.partnerProduct + .partnerProduct {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: solid thin;
}

h3.partnerProduct-title {
  font-size: calc(
    1.2rem + 0.8 * ((100vw - 20em) / 40)
  );
  font-weight: 700;
}
@media screen and (max-width: 20em) {
  h3.partnerProduct-title {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 60em) {
  h3.partnerProduct-title {
    font-size: 2rem;
  }
}

.partnerTeaser {
  background-color: white;
  aspect-ratio: 4/3;
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  border-top: solid thick #0053a5;
}

.partnerTeaser-logo {
  display: block;
  padding: 1rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.2s;
}
@media (min-width: 60rem) {
  .partnerTeaser-logo {
    padding: 2rem;
  }
}
a:hover .partnerTeaser-logo {
  padding: 1rem;
}

.postTeaser {
  width: 100%;
  display: grid;
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  padding: 1rem;
  gap: 1rem;
}
@media (min-width: 60rem) {
  .postTeaser {
    padding: 2rem;
  }
}
@media (min-width: 60rem) {
  .postTeaser {
    gap: 2rem;
  }
}
@media (min-width: 40rem) {
  .postTeaser {
    grid-template-columns: 2fr 1fr;
  }
}
@media (min-width: 60rem) {
  .postTeaser {
    grid-template-columns: 3fr 1fr;
  }
}

@media (min-width: 40rem) {
  .postTeaser-content {
    grid-row: 1;
    grid-column: 1;
  }

  .postTeaser-image-link {
    display: block;
    overflow: hidden;
    grid-row: 1;
    grid-column: 2;
    width: 100%;
  }
}
.postTeaser-image {
  width: 100%;
  height: auto;
}

.postTeaser-title {
  font-size: xx-large;
}

.postTeaser-button {
  background-color: #fcb13d;
  padding: 0.5em 1em;
  text-decoration: none;
  color: currentColor;
}

.post-content {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1rem;
  background-color: white;
  position: relative;
  z-index: 2;
}
@media (min-width: 60rem) {
  .post-content {
    padding: 2rem;
  }
}

.post-content .has-image {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1rem;
  background-color: white;
  position: relative;
  z-index: 2;
}
@media (min-width: 60rem) {
  .post-content .has-image {
    padding: 2rem;
  }
}
@media (min-width: 50rem) {
  .post-content .has-image {
    transform: translateY(-2rem);
  }
}

.post-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 50rem) {
  .post-image {
    height: 50vh;
  }
}
@media screen and (min-width: 68rem) {
  .post-image {
    margin-bottom: -3rem;
  }
}

.post-title {
  color: #0053a5;
}

.post-categories {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  line-height: 1;
}
.post-categories a {
  display: block;
  padding: 0.5em 0.75em;
  text-decoration: none;
  background-color: #d1e7f6;
}

.aboutPage-logo-list {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.aboutPage-logo-listItem {
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  aspect-ratio: 1;
}

img.aboutPage-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.5rem;
}

/*# sourceMappingURL=style.css.map */
