@charset "UTF-8";
/**
 * Font family
 */
/**
 * Border radius
 */
/**
 * Scale
 */
/**
 * Translate
 */
/**
 * Skew
 */
/**
 * Rotate
 */
/**
 * Transition
 */
/**
 * REM units
 */
/*! nouislider - 14.2.0 - 3/27/2020 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

.noUi-connect {
  height: 100%;
  width: 100%;
}

.noUi-origin {
  height: 10%;
  width: 10%;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.slbOverlay, .slbWrapOuter, .slbWrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slbOverlay {
  overflow: hidden;
  z-index: 2000;
  background-color: #000;
  opacity: 0.7;
  animation: slbOverlay 0.5s;
}

.slbWrapOuter {
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2010;
}

.slbWrap {
  position: absolute;
  text-align: center;
}

.slbWrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.slbContentOuter {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0px auto;
  padding: 0 1em;
  box-sizing: border-box;
  z-index: 2020;
  text-align: left;
  max-width: 100%;
}

.slbContentEl .slbContentOuter {
  padding: 5em 1em;
}

.slbContent {
  position: relative;
}

.slbContentEl .slbContent {
  animation: slbEnter 0.3s;
  background-color: #fff;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.4);
}

.slbImageWrap {
  animation: slbEnter 0.3s;
  position: relative;
}

.slbImageWrap:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5em;
  bottom: 5em;
  display: block;
  z-index: -1;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
  background-color: #FFF;
}

.slbDirectionNext .slbImageWrap {
  animation: slbEnterNext 0.4s;
}

.slbDirectionPrev .slbImageWrap {
  animation: slbEnterPrev 0.4s;
}

.slbImage {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 5em 0;
  margin: 0 auto;
}

.slbCaption {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  font-size: 1.4em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.71429em 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.slbCloseBtn, .slbArrow {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
}

.slbCloseBtn::-moz-focus-inner, .slbArrow::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.slbCloseBtn:hover, .slbArrow:hover {
  opacity: 0.5;
}

.slbCloseBtn:active, .slbArrow:active {
  opacity: 0.8;
}

.slbCloseBtn {
  animation: slbEnter 0.3s;
  font-size: 3em;
  width: 1.66667em;
  height: 1.66667em;
  line-height: 1.66667em;
  position: absolute;
  right: -0.33333em;
  top: 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.slbLoading .slbCloseBtn {
  display: none;
}

.slbLoadingText {
  font-size: 1.4em;
  color: #fff;
  color: rgba(255, 255, 255, 0.9);
}

.slbArrows {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
}

.slbLoading .slbArrows {
  display: none;
}

.slbArrow {
  position: absolute;
  top: 50%;
  margin-top: -5em;
  width: 5em;
  height: 10em;
  opacity: 0.7;
  text-indent: -999em;
  overflow: hidden;
}

.slbArrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.8em 0 0 -0.8em;
  border: 0.8em solid transparent;
}

.slbArrow.next {
  right: 0;
}

.slbArrow.next:before {
  border-left-color: #fff;
}

.slbArrow.prev {
  left: 0;
}

.slbArrow.prev:before {
  border-right-color: #fff;
}

.slbIframeCont {
  width: 80em;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  margin: 5em 0;
}

.slbIframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
  background: #000;
}
@keyframes slbOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}
@keyframes slbEnter {
  from {
    opacity: 0;
    transform: translate3d(0, -1em, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slbEnterNext {
  from {
    opacity: 0;
    transform: translate3d(4em, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slbEnterPrev {
  from {
    opacity: 0;
    transform: translate3d(-4em, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  scroll-behavior: smooth;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  .last-sm {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .last-md {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .last-lg {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  .last-xl {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1260px) {
  .container {
    max-width: 1200px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

/**
 * Colors
 */
/**
/* Font weight variables
 */
/************************************************************************************
RESET
*************************************************************************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

:focus {
  outline: 0;
}

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

article, aside, figure, footer, header, hgroup, nav, section, img {
  display: block;
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
  *vertical-align: baseline;
}

label, input[type=button], input[type=submit], button {
  cursor: pointer;
  overflow: visible;
}

em, i {
  font-weight: inherit;
}

/************************************************************************************
GENERAL
*************************************************************************************/
body {
  font-family: Barlow, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6em;
  font-weight: 400;
  color: #373737;
  background: #fff;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

.img-full {
  margin: 0 auto;
  max-width: 1920px;
}

/* Box sizing */
*, *:after, *:before {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* Anchors */
a {
  color: #0077bb;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

/* Heading */
h1, .h1 {
  font-family: Barlow, sans-serif;
  font-size: 3.125rem;
  line-height: 1em;
  font-weight: 600;
  color: #274f95;
  margin: 0 0 1.875rem 0;
}
h1.light, .h1.light {
  font-weight: 100;
}
h1.light .hl, .h1.light .hl {
  font-weight: 600;
  display: block;
}

h2, .h2 {
  font-family: Barlow, sans-serif;
  font-size: 2.625rem;
  line-height: 1.1em;
  font-weight: 600;
  color: #274f95;
  margin: 0 0 0.625rem 0;
}
h2.light, .h2.light {
  font-weight: 100;
}
h2.light .hl, .h2.light .hl {
  font-weight: 600;
  display: block;
}
h2.big, .h2.big {
  font-size: 3.9375rem;
}
h2.regular, .h2.regular {
  font-weight: 400;
}
h2.black, .h2.black {
  color: #000;
}

h3, .h3 {
  font-family: Barlow, sans-serif;
  font-size: 2rem;
  line-height: 1.3em;
  font-weight: 400;
  color: #274f95;
  margin: 0 0 1.25rem 0;
}
h3.big, .h3.big {
  font-size: 1.5rem;
}
h3.medium, .h3.medium {
  font-size: 1.375rem;
}
h3.small, .h3.small {
  font-size: 1.125rem;
  font-weight: 400;
  color: #373737;
}
h3.smaller, .h3.smaller {
  font-size: 1rem;
  font-weight: 400;
  color: #373737;
}
h3 .hl, .h3 .hl {
  font-weight: 600;
}

h4, .h4 {
  font-family: Barlow, sans-serif;
  font-size: 1.5625rem;
  line-height: 1.3em;
  font-weight: 600;
  color: #000;
  margin: 0 0 0.625rem 0;
}

h5, .h5 {
  font-family: Barlow, sans-serif;
  font-size: 1.25rem;
  line-height: 1.3em;
  font-weight: 600;
  color: #000;
  margin: 0 0 0.625rem 0;
}

h6, .h6 {
  font-family: Barlow, sans-serif;
  font-size: 1.25rem;
  line-height: 1.3em;
  font-weight: 600;
  color: #000;
  margin: 0 0 0.625rem 0;
}

.suphead {
  font-size: 1.0625rem;
  color: #8995a6;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Paragraphs */
p {
  margin: 0 0 1.25rem 0;
}

address, cite {
  font-style: normal;
}

/* Lists */
ul {
  list-style: none;
  margin: 0 0 1.25rem 0;
  padding: 0;
}
ul li {
  padding: 0 0 0 1.25rem;
  margin: 0 0 0.3125rem 0;
}
ul.unstyled li {
  padding: 0;
  background: none;
}

ol {
  list-style: none;
  margin: 0 0 1.25rem 0;
  padding: 0;
  counter-reset: counter;
  margin-left: 0;
}
ol li {
  margin: 0 0 0.625rem 0;
  padding: 0 0 0 20px;
  counter-increment: counter;
  position: relative;
}
ol li:before {
  color: #2285c8;
  content: counter(counter) ". ";
  position: absolute;
  left: 0;
  top: 0;
}

dl {
  margin: 0 0 1.25rem 0;
}

dt {
  font-weight: bold;
}

/* Various */
sup, sub {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  _vertical-align: bottom;
  position: relative;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
hr.divider {
  margin: 0;
  border-top: 2px solid #f3f3f8;
}

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

.bold, b, strong {
  font-weight: 600;
}

.italic, i, em {
  font-style: italic;
}

.nowrap, .nobr {
  white-space: nowrap !important;
}

/************************************************************************************
CONTENT
*************************************************************************************/
.content {
  padding: 0;
  overflow: hidden;
}

/* Block */
.block {
  padding: 3.3125rem 0;
  position: relative;
}
.block.narrow {
  padding: 2.5rem 0;
}

.block.alt, .post-block.alt {
  background: #f5f5f5;
}
.block.alt-2, .post-block.alt-2 {
  background: #162d5c;
}
.block.alpha, .post-block.alpha {
  padding-top: 0;
}
.block.omega, .post-block.omega {
  padding-bottom: 0;
}
.block.shadow-b:after, .post-block.shadow-b:after {
  content: "";
  background: #f5f5f5;
  height: 15rem;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.block.shadow-b > *, .post-block.shadow-b > * {
  position: relative;
  z-index: 2;
}
.block.block-brands, .post-block.block-brands {
  background: #162e5d url("../img/block-brands.jpg") center 0 no-repeat;
}
.block.block-tr, .post-block.block-tr {
  background: #f5f5f5 url("../img/block-tr.jpg") center bottom no-repeat;
}
.block.block-lab, .post-block.block-lab {
  background: #f5f5f5 url("../img/block-lab.jpg") right center no-repeat;
}

.spacer {
  height: 3.4375rem;
}
.spacer.huge {
  height: 6.5625rem;
}
.spacer.big {
  height: 4.0625rem;
}
.spacer.medium {
  height: 2.5rem;
}
.spacer.small {
  height: 1.5625rem;
}

.block-btn {
  font-size: 1rem;
  font-weight: 600;
  display: block;
  text-align: center;
  padding: 0.625rem 0;
  color: #000;
  border-top: 2px solid #ddddde;
  border-bottom: 2px solid #ddddde;
  transition: 0.3s all;
}
.block-btn .txt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-btn .txt .icon {
  margin-left: 0.625rem;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  display: block;
  color: #000;
}

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

.invert {
  color: #fff;
}
.invert h2 {
  color: #fff;
}
.invert h2 .hl {
  color: #fad611;
}
.invert h3 {
  color: #fad611;
}
.invert .entry ul li:before {
  background: #fad611;
}

/* Various */
.section-head {
  margin-bottom: 2.5rem;
  text-align: center;
}
.section-head h1, .section-head h2, .section-head h3 {
  margin-bottom: 0;
}

.intro {
  max-width: 500px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}
.intro.wide {
  max-width: 46.875rem;
}

.narrow-col {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Pager */
.pager {
  margin: 1.875rem 0;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.pager ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pager li {
  padding: 0;
  background: none;
}
.pager li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 2.25rem;
  height: 2.25rem;
  background: #666;
  text-align: center;
}
.pager li a.active {
  background: #000;
  color: #fff;
  text-decoration: none;
}
.pager .prev {
  width: 2.25rem;
  height: 2.25rem;
  background: #000;
}
.pager .next {
  width: 2.25rem;
  height: 2.25rem;
  background: #000;
}
.pager .counter {
  display: none;
}

/* Gmap */
.gmap-wrap {
  position: relative;
}
.gmap-wrap .gmap {
  height: 600px;
  background: #e3e3e3;
}
.gmap-wrap img {
  max-width: inherit !important;
}

.gmap {
  height: 500px;
}

.popup {
  min-width: 270px;
}
.popup .img img {
  display: block;
  width: 100%;
}
.popup .text {
  font-size: 1rem;
  line-height: 1.5em;
  padding: 25px;
}
.popup .text ul li {
  padding: 0;
}
.popup .text ul li a {
  color: inherit;
  text-decoration: none;
}
.popup .text ul li a:hover {
  text-decoration: underline;
}

.gm-style .gm-style-iw-c {
  max-width: 300px !important;
  max-height: inherit !important;
  padding: 0 !important;
  background: #fff;
  border-radius: 0;
  overflow: visible !important;
}
.gm-style .gm-style-iw-t::after {
  background: #fff;
  box-shadow: none;
}
.gm-style .gm-style-iw-d {
  max-width: inherit !important;
  overflow: visible !important;
  max-height: inherit !important;
}
.gm-style .gm-ui-hover-effect {
  top: -30px !important;
  right: -5px !important;
}
.gm-style .gm-ui-hover-effect img {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.gm-style .gm-ui-hover-effect {
  display: none !important;
}

/*================================= Various Content =================================*/
.last {
  margin-bottom: 0 !important;
}

.fixer-start {
  position: relative;
}

.fixer {
  position: absolute;
}
.fixer.fixed {
  position: fixed;
  top: 0;
}

/* Buttons */
.btn,
.sendbutton {
  font-size: 1rem;
  font-family: Barlow, sans-serif;
  line-height: 1.3em;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fad611;
  color: #000 !important;
  padding: 0 1.25rem;
  height: 2.8125rem;
  text-decoration: none;
  position: relative;
  border: 2px solid #fad611;
  border-radius: 7px;
  transition: 0.5s all;
  cursor: pointer;
}
.btn:hover,
.sendbutton:hover {
  background-color: #274f95;
  border: 2px solid #274f95;
  color: #fff;
}
.btn:hover .icon-arr-r,
.sendbutton:hover .icon-arr-r {
  left: 5px;
  transition: 0.3s all;
}
.btn.line,
.sendbutton.line {
  background: none;
  color: #000;
}
.btn.line:hover,
.sendbutton.line:hover {
  background: #fad611;
  border-color: #fad611;
  color: #000;
}
.btn.alt,
.sendbutton.alt {
  background: #fff;
  border-color: #fff;
}
.btn.alt:hover,
.sendbutton.alt:hover {
  background: #fad611;
  border-color: #fad611;
  color: #000;
}
.btn.big,
.sendbutton.big {
  font-size: 1.1875rem;
  height: 3.4375rem;
  padding: 0 1.875rem;
}
.btn .icon,
.sendbutton .icon {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  margin-left: 1.25rem;
  position: relative;
  left: 0;
}

.btn-yellow {
  font-size: 1rem;
  font-family: Barlow, sans-serif;
  line-height: 1.3em;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #274f95;
  color: #fff !important;
  padding: 0 1.25rem;
  height: 2.8125rem;
  text-decoration: none;
  position: relative;
  border: 2px solid #274f95;
  border-radius: 7px;
  transition: 0.5s all;
  cursor: pointer;
}
.btn-yellow .icon-cart {
  color: #fff !important;
}
.btn-yellow:hover {
  background-color: #fad611;
  border: 2px solid #fad611;
  color: #274f95 !important;
}
.btn-yellow:hover .icon-cart {
  left: 0 !important;
  color: #274f95 !important;
  transition: 0.3s all;
}

.btn-blue .icon-cart {
  margin-left: 0;
  color: #000 !important;
}
.btn-blue:hover {
  color: #fad611 !important;
}
.btn-blue:hover .icon-cart {
  left: 0 !important;
  color: #fad611 !important;
  transition: 0.3s all;
}

/* SVG icons */
.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  fill: currentColor;
}

/* Cookie Notice */
.cookie-notice {
  font-size: 14px;
  position: fixed;
  z-index: 10000;
  bottom: 0;
  width: 100%;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.9);
  color: #CCC;
  text-align: center;
}

.cookie-button {
  display: inline-block;
  padding: 2px 10px;
  margin-left: 25px;
  background: #02ad65;
  color: #fff;
  text-align: center;
}
.cookie-button:hover {
  background: #90ca16;
  color: #fff;
}

.cookie-test {
  position: fixed;
  z-index: 10000;
  bottom: 0;
  width: 150px;
  padding: 25px 15px;
  background: rgba(50, 50, 50, 0.95);
  color: #CCC;
  text-align: center;
}

/* FY Apple! */
textarea,
input.text,
input[type=text],
input[type=button],
input[type=submit],
.btn {
  -webkit-appearance: none;
}

/************************************************************************************
ENTRY
*************************************************************************************/
.entry {
  margin: 0 0 2.5rem 0;
}
.entry h2, .entry h3 {
  margin-top: 30px;
}
.entry h2:first-child, .entry h3:first-child {
  margin-top: 0;
}
.entry ul li {
  position: relative;
}
.entry ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  display: block;
  background: #274f95;
  border-radius: 50%;
}
.entry p:last-child {
  margin-bottom: 0;
}

/************************************************************************************
TABLES
*************************************************************************************/
.entry table {
  width: 100%;
  margin: 0 0 1.875rem 0;
}
.entry table th {
  font-size: 0.8125rem;
  line-height: 1.2em;
  font-weight: 600;
  border: none;
  padding: 0.9375rem 0.625rem;
  background: #274f95;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  vertical-align: middle;
}
.entry table th:nth-child(1) {
  padding-left: 15px;
}
.entry table th:last-child {
  padding-right: 15px;
}
.entry table td {
  font-size: 0.875rem;
  border: none;
  padding: 0.625rem 0.625rem;
  text-align: left;
}
.entry table td:nth-child(1) {
  padding-left: 15px;
}
.entry table td:last-child {
  padding-right: 15px;
}
.entry table tr:nth-child(even) {
  background: #f4f4f4;
}

/************************************************************************************
FORMS
*************************************************************************************/
form.std legend {
  font-size: 1.125rem;
  line-height: 1.3em;
  font-weight: 600;
  color: #274f95;
  margin: 0 0 1.25rem 0;
}
form.std label {
  font-size: 1.0625rem;
  line-height: 1.3em;
  color: #4c4c4c;
  margin: 0 0 0.625rem 0;
  display: block;
}
form.std input.text {
  font-family: Barlow, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3em;
  color: #000;
  border: 2px solid #ddddde;
  padding: 0.3125rem 0.9375rem;
  height: 3.125rem;
  border-radius: 0.375rem;
  width: 100%;
}
form.std input.text.error {
  background: #fcf4f4;
  border-color: #be1e19;
}
form.std input.text.req {
  background-image: url("../img/req.svg");
  background-position: right center;
  background-repeat: no-repeat;
}
form.std textarea {
  font-family: Barlow, sans-serif;
  font-size: 1.125rem;
  font-family: Barlow, sans-serif;
  line-height: 1.3em;
  color: #000;
  resize: vertical;
  border: 2px solid #ddddde;
  padding: 0.9375rem 0.9375rem;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 150px;
  min-height: 150px;
  max-height: 300px;
  border-radius: 0.375rem;
  display: block;
}
form.std textarea.req {
  background-image: url("../img/req.svg");
  background-position: right center;
  background-repeat: no-repeat;
}
form.std select {
  font-family: Barlow, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3em;
  font-weight: 600;
  color: #000;
  width: 100%;
  padding: 0.125rem 0.625rem;
}
form.std option {
  font-family: Barlow, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3em;
  padding: 0.125rem 0.625rem;
}
form.std .cell {
  margin-bottom: 1.25rem;
  position: relative;
  text-align: left;
}
form.std .toggle {
  position: relative;
  padding: 0 0 0 1.5625rem;
}
form.std .toggle label {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
form.std .toggle input {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0.1875rem;
}
form.std .radio, form.std .checker {
  position: absolute;
  left: 0;
  top: 0;
}

form.form-contact .cell {
  margin-bottom: 0.625rem;
}
form.form-contact .btn.full {
  width: 100%;
}
form.form-contact .btn-set {
  display: flex;
  justify-content: center;
}

form.form-search .cell {
  position: relative;
  max-width: 115px;
  transition: 0.3s all;
}
form.form-search .cell .icon-search {
  width: 1.625rem;
  height: 1.625rem;
  flex: 0 0 1.625rem;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -0.8125rem;
}
form.form-search.active .cell {
  max-width: 250px;
}
form.form-search input.text {
  width: 100%;
  padding-left: 40px;
  padding-right: 0;
  border-color: transparent;
  transition: 0.3s all;
}
form.form-search.active input.text {
  border-color: #ddddde;
  padding-right: 15px;
}
form.form-sorting {
  margin-bottom: 0.625rem;
}
form.form-sorting .cell-set {
  display: flex;
  justify-content: flex-end;
}
form.form-sorting .cell {
  display: flex;
  align-items: center;
  display: inline-flex;
}
form.form-sorting .cell label {
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}
form.form-sorting .cell select {
  font-size: 1.125rem;
  border: none;
  display: inline-block;
  text-transform: uppercase;
}

form.form-filter label {
  font-size: 14px;
  color: #373737;
}
form.form-filter .cell {
  margin-bottom: 0.625rem;
}

#form-ajax-content {
  position: relative;
}
#form-ajax-content.loading:after {
  content: "";
  position: absolute;
  z-index: 90;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  background: url("../img/spinner.svg") center center no-repeat;
  background-size: cover !important;
  transform: translate(-50%, -50%);
}
#form-ajax-content > .inner {
  opacity: 1;
  transition: 0.3s all;
}
#form-ajax-content.loading > .inner {
  opacity: 0.4;
}

.ajax-loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
}
.ajax-loader:after {
  content: "";
  position: fixed;
  z-index: 90;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  background: #fff url("../img/spinner.svg") center center no-repeat;
  background-size: cover !important;
  transform: translate(-50%, -50%);
}

/*================================= Contact form 7 =================================*/
/* Mesages & errors */
body div.wpcf7-response-output {
  font-size: 1rem;
  line-height: 1.4em;
  padding: 0;
  background: #fae7ea;
  border: 1px solid #f1c7d2;
  color: #e5547a;
  text-align: left;
  padding: 0.9375rem 1.25rem;
  margin: 0 0 1.875rem 0;
}
body div.wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #ebf5bc;
  border: 1px solid #c7d198;
  color: #98b028;
}
body span.wpcf7-not-valid-tip {
  font-size: 13px;
}
body span.wpcf7-list-item {
  margin: 0;
}
body .wpcf7-form-control-wrap {
  position: static;
}
body div.wpcf7 .ajax-loader {
  background-image: url("../img/spinner.svg");
  background-size: cover !important;
  width: 40px;
  height: 40px;
}

/* Mesages & errors */
.flash-message {
  font-size: 1rem;
  padding: 0;
  background: #ebf5bc;
  border: 1px solid #96d775;
  color: #46b450;
  padding: 0.9375rem 1.25rem;
  margin: 0 0 1.875rem 0;
}
.flash-message.error {
  border: 1px solid #f1c7d2;
  background: #fae7ea;
  color: #e5547a;
}

/************************************************************************************
TABS
*************************************************************************************/
.tabs {
  position: relative;
}
.tabs .tab-nav {
  margin-bottom: 1.875rem;
  display: block;
}
.tabs .tab-nav ul {
  margin: 0 -0.625rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.tabs .tab-nav li {
  list-style-type: none;
  padding: 0.3125rem 0.625rem;
  background: none;
  margin: 0;
}
.tabs .tab-nav li a {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  outline: 0;
  padding: 0 1.875rem;
  background: none;
  color: #7f7f7f;
  border: 2px solid #fad611;
  height: 3.4375rem;
  border-radius: 1.6875rem;
  transition: 0.3s all;
}
.tabs .tab-nav li a:hover {
  background: #fad611;
  color: #000;
}
.tabs .tab-nav li a.selected {
  background: #fad611;
  color: #000;
}
.tabs .tab-nav.tab-nav-reverse li a {
  border-color: #274f95;
  color: #274f95;
}
.tabs .tab-nav.tab-nav-reverse li a:hover {
  background: #274f95;
  color: #fff;
}
.tabs .tab-nav.tab-nav-reverse li a.selected {
  background: #274f95;
  color: #fff;
}
.tabs .tab-content .tab {
  width: 100%;
  display: none;
}
.tabs .tab-content .tab.selected {
  position: static !important;
  display: block;
}

/************************************************************************************
QTIP
*************************************************************************************/
.qtip-default {
  padding: 8px 15px;
  background-color: #000;
  color: #000;
  border-radius: 5px;
}

.qtip-content {
  font-size: 1rem;
  color: #fff;
}

/************************************************************************************
SIMPLE LIGHTBOX
*************************************************************************************/
body .slbArrow {
  font-size: 15px;
}
body .slbArrow.prev:before {
  border: none;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(135deg);
  width: 20px;
  height: 20px;
}
body .slbArrow.prev:hover {
  opacity: 1;
}
body .slbArrow.next:before {
  border: none;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  width: 20px;
  height: 20px;
}
body .slbArrow.next:hover {
  opacity: 1;
}
body .slbCloseBtn {
  font-size: 1.875rem;
  line-height: 0;
  font-weight: 100;
  font-family: Arial, sans-serif;
  border: none;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  right: 0;
  top: 0;
  position: fixed;
  background: #274f95;
}
body .slbCloseBtn:hover {
  background: #fad611;
  color: #000;
  opacity: 1;
}
body .slbCaption {
  font-size: 1rem;
}

/************************************************************************************
MODAL
*************************************************************************************/
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex;
}
.modal .modal-content {
  padding: 3.125rem;
}
.modal .modal-content.alt {
  background: #f9fbfc;
}
.modal .modal-box {
  width: 100%;
  font-size: 1.125rem;
  max-width: 25rem;
  background-color: #fff;
  line-height: 1.5em;
  margin: auto;
  position: relative;
}
.modal .modal-box .modal-close {
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  width: 2.5rem;
  height: 2.5rem;
  transition: 0.5s all;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #274f95;
  color: #fff;
}
.modal .modal-box .modal-close:after {
  content: "×";
  font-size: 3rem;
  transition: 0.5s all;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-top: -3px;
}
.modal .modal-box .modal-close .icon {
  width: 1.125rem;
  height: 1.125rem;
  transform: rotate(0deg);
  transition: 0.3s all;
}
.modal .modal-box .modal-close:hover {
  background: #fad611;
}
.modal .modal-box .modal-close:hover:after {
  color: #000;
}
.modal .modal-box .modal-close:hover .icon {
  transform: rotate(90deg);
}
.modal .modal-box.modal-order {
  width: 100%;
  max-width: 36.25rem;
  background: #e5e5e5;
}
.modal .modal-box-wrap {
  max-width: none;
  margin: auto;
  overflow: hidden;
  position: relative;
  animation-name: animateTop;
  animation-duration: 0.4s;
}

@keyframes animateTop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
/************************************************************************************
SUDO SLIDERS
*************************************************************************************/
.slider {
  overflow: hidden;
  background: none;
}
.slider ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: block;
}
.slider li.panel {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: block;
  overflow: hidden;
  background: none;
}

.slider-nav {
  display: block;
  position: static;
  margin-bottom: 3.125rem;
  /*
  .prev[style*="opacity: 0"], .next[style*="opacity: 0"] {
  	visibility: visible !important;
  	opacity: 1 !important;
  	background-color: #eaeaea;
  	pointer-events: none;

  	.icon {
  		color: #868686;
  	}
  }
  */
}
.slider-nav ol {
  margin: 0 -0.625rem;
  display: flex;
  justify-content: center;
  position: relative;
  top: 3.125rem;
  height: 0;
}
.slider-nav li {
  margin: 0;
  padding: 0 0.625rem;
  background: none;
  display: block;
  font-size: 0;
}
.slider-nav li a {
  width: 0.5625rem;
  height: 0.5625rem;
  display: block;
  background: #c7c2be;
  text-indent: -80000px;
  border-radius: 50%;
}
.slider-nav li a:hover {
  background: #666666;
}
.slider-nav li.current a {
  background: #666666;
}
.slider-nav li:before {
  content: "";
}
.slider-nav .prev {
  position: absolute;
  left: -2.375rem;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  background: #fad611;
  transition: 0.3s all;
}
.slider-nav .prev:hover {
  background: #274f95;
  color: #fff;
}
.slider-nav .prev .icon {
  width: 1.3125rem;
  height: 1.3125rem;
  color: #000;
}
.slider-nav .next {
  position: absolute;
  right: -2.375rem;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  background: #fad611;
  transition: 0.3s all;
}
.slider-nav .next:hover {
  background: #274f95;
  color: #fff;
}
.slider-nav .next .icon {
  width: 1.3125rem;
  height: 1.3125rem;
  color: #000;
}

/* Item slider */
.item-slider {
  position: relative;
}
.item-slider.hide-nav .slider-nav {
  display: none;
}

/* Product slider */
.product-slider {
  position: relative;
}
.product-slider .slider {
  margin: 0 -0.9375rem;
}
.product-slider li.panel {
  margin: 0;
  display: flex !important;
  height: 100%;
}
.product-slider .item {
  padding: 0 0.9375rem;
}

/* Partner slider */
.partner-slider {
  margin-bottom: 2.5rem;
}
.partner-slider .slider {
  margin: 0 -15px;
}
.partner-slider .item {
  padding: 0 15px;
  display: flex;
  justify-content: center;
}

/* Image slider */
.img-slider {
  overflow: hidden;
}
.img-slider .slider-nav {
  margin: 0;
}
.img-slider .slider-nav .prev {
  width: 2.375rem;
  height: 100%;
  border-radius: 0;
  left: 0;
  background: none;
  display: flex;
  justify-content: center;
}
.img-slider .slider-nav .prev:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 15px 0;
  border-color: transparent #fad611 transparent transparent;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.img-slider .slider-nav .next {
  width: 2.375rem;
  height: 100%;
  border-radius: 0;
  right: 0;
  background: none;
}
.img-slider .slider-nav .next:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #fad611;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/************************************************************************************
CLEARFIX
*************************************************************************************/
/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* alert */
.alert {
  padding: 0.875rem 0.875rem 0.875rem 3rem;
  background-repeat: no-repeat;
  background-position: left 10px center;
  border-radius: 4px;
  border-width: 0;
  background-color: transparent;
  text-align: left;
  font-weight: 500;
  line-height: 1.3em;
  font-size: 1.125rem;
}
.alert * {
  margin-bottom: 0;
}
.alert h6 {
  margin-bottom: 2px;
}
.alert.alert-warning {
  color: #ad6b08;
  background-color: #fcf7dc;
  background-image: url("../img/icon-warning.svg") !important;
  background-size: 1.25rem 1.25rem;
}

.has-topbar main.main {
  padding-top: 32px;
}
@media (max-width: 991.98px) {
  .has-topbar main.main {
    padding-top: 90px;
    padding-top: 0;
  }
}

.topbar.com {
  background: #274f95;
  color: #fff;
  font-size: 15px;
}
@media (max-width: 991.98px) {
  .topbar.com {
    display: none;
  }
}
.topbar.com .container {
  height: 32px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.topbar.com ul {
  list-style-type: none;
  padding-left: 0;
}
.topbar.com ul li {
  display: inline-block;
}
.topbar.com ul li:first-child {
  padding: 0;
}
.topbar.com ul li + li {
  padding-left: 20px;
  margin-left: 10px;
  position: relative;
}
.topbar.com ul li + li:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 0.5em;
  background: rgba(255, 255, 255, 0.5333333333);
}
.topbar.com a {
  color: #fff;
  text-decoration: none;
}

.fancynavbar-collapse {
  max-width: 690px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-size: 17px;
  display: block;
  width: 100%;
  padding: 14px 0;
  border: none;
  position: relative;
}
@media (max-width: 767.98px) {
  .fancynavbar-collapse {
    max-width: 510px;
  }
}

.top {
  margin: 0.55556rem 0;
}

li .fa {
  margin-right: 5px;
}

.underline:hover {
  text-decoration: underline !important;
}

.fancynav-item {
  padding: 14px 0;
  width: 100%;
  max-width: 140px;
}
.fancynav-item:last-child {
  max-width: 160px;
}
@media (max-width: 520.98px) {
  .fancynav-item {
    padding: 14px 15px;
    max-width: 170px;
  }
  .fancynav-item:last-child {
    max-width: 190px;
  }
}
.fancynav-item .fancynav-link {
  justify-content: space-between;
}

.fancynav-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.white:hover {
  background-color: #fff;
}
.white:hover > .fancynav-link {
  color: #000;
}

@media (max-width: 530.98px) {
  .fancy-socials {
    padding: 14px 15px;
  }
}
.fancy-socials .row {
  padding: 8px;
}
.fancy-socials .row div {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  padding: 0.88889rem;
  margin: 0.9rem;
  width: 100%;
  max-width: 133px;
  transition: background-color 0.5s;
}
@media (max-width: 530.98px) {
  .fancy-socials .row div {
    margin: 0.2rem;
  }
}
@media (max-width: 289.98px) {
  .fancy-socials .row div {
    margin: 0.2rem !important;
  }
}
.fancy-socials .row div:first-child {
  margin: 0.9rem 0.9rem 0.9rem 0;
}
@media (max-width: 530.98px) {
  .fancy-socials .row div:first-child {
    margin: 0.2rem 0.2rem 0.2rem 0;
  }
}

/************************************************************************************
HEADER
*************************************************************************************/
.header {
  width: 100%;
  background: #fff;
}
.header .h_1 {
  position: relative;
  z-index: 100;
  background: #fff;
  margin-bottom: 0;
  transition: 0.3s all;
}
.header .h_1 .inner {
  height: 10.625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .h_2 {
  position: relative;
}
.header .h_2 .megamenu {
  background: #f8f8f8;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 200;
  display: none;
}
.header .h_2 .megamenu.activated {
  display: block;
}
.header .header-r {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  flex-grow: 0;
  flex-shrink: 1;
}
.header .logo {
  width: 6.875rem;
  flex-shrink: 0;
  flex-grow: 0;
}

.megamenu {
  font-size: 16px;
  box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.2);
}
.megamenu .m_1 {
  padding: 2.5rem 0;
}
.megamenu .m_2 {
  border-top: 1px solid #ddddde;
  text-align: center;
}
.megamenu .more-link {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 0;
  text-decoration: none;
  color: #000;
}
.megamenu .more-link:hover {
  text-decoration: underline;
}
.megamenu .more-link .icon {
  margin-left: 5px;
}
.megamenu .entry ul li:before {
  width: 4px;
  height: 4px;
  top: 0.625rem;
}
.megamenu .col-item {
  padding: 1.25rem 0;
}
.megamenu ul li {
  margin: 0;
  line-height: 1.5em;
}
.megamenu ul li a {
  color: #505050;
  text-decoration: none;
}
.megamenu ul li a:hover {
  text-decoration: underline;
}

.dropdown-search {
  position: absolute;
  z-index: 80;
  left: 0;
  top: 0;
  width: 100%;
  background: #f8f8f8;
  box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.2);
  display: none;
}

.dropdown-search.active, .search-results.active {
  display: block;
  animation: showDropdown 0.5s;
}
.dropdown-search.dropdown-search-category, .dropdown-search.dropdown-search-box, .search-results.dropdown-search-category, .search-results.dropdown-search-box {
  opacity: 0;
  transition: 0.1s opacity;
  display: block;
  height: 0;
  pointer-events: none;
}
.dropdown-search.dropdown-search-category.active, .dropdown-search.dropdown-search-box.active, .search-results.dropdown-search-category.active, .search-results.dropdown-search-box.active {
  display: block;
  animation: none;
  opacity: 1;
  height: auto;
  pointer-events: all;
  transition: 0.3s opacity;
}
.dropdown-search.dropdown-search-box, .search-results.dropdown-search-box {
  top: calc(10px + 100%);
}
.dropdown-search .dropdown-inner, .search-results .dropdown-inner {
  padding: 2.5rem 0;
  margin: 0 auto;
}
.dropdown-search .section-search, .search-results .section-search {
  margin-bottom: 1.875rem;
}
.dropdown-search .section-search:last-child, .search-results .section-search:last-child {
  margin-bottom: 0;
}
.dropdown-search .section-head, .search-results .section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.dropdown-search .section-head .head-l, .search-results .section-head .head-l {
  display: flex;
  align-items: flex-end;
}
.dropdown-search .section-head .head, .search-results .section-head .head {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 0;
  padding-right: 10px;
  color: #274f95;
}
.dropdown-search .section-head .num, .search-results .section-head .num {
  font-size: 15px;
}
.dropdown-search .section-head .more, .search-results .section-head .more {
  font-size: 15px;
  font-weight: 700;
}
.dropdown-search .item-inner, .search-results .item-inner {
  display: flex;
}
.dropdown-search .foot, .search-results .foot {
  display: flex;
  justify-content: center;
}

.search-results.active {
  display: block;
  position: relative;
  background: none;
  box-shadow: none;
}

.main-nav {
  vertical-align: top;
  text-align: left;
  padding-top: 0.625rem;
  height: 50%;
  width: 100%;
}
.main-nav ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0 -0.9375rem;
  height: 100%;
}
.main-nav ul li {
  font-size: 1.3125rem;
  font-weight: 600;
  padding: 0 0.9375rem;
  margin: 0;
  display: flex;
  height: 100%;
}
.main-nav ul li a {
  color: #274f95;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: 0.2s all;
  position: relative;
}
.main-nav ul li a:hover, .main-nav ul li a.activated {
  border-color: #274f95;
}
.main-nav ul li a:hover:after, .main-nav ul li a.activated:after {
  width: 100%;
  transition: 0.2s all;
}
.main-nav ul li a:after {
  content: "";
  width: 0;
  height: 4px;
  background: #274f95;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.secondary-nav {
  height: 50%;
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
  padding-bottom: 0.625rem;
}
.secondary-nav ul {
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 -0.9375rem;
}
.secondary-nav ul li {
  line-height: 1.3em;
  font-weight: 500;
  margin: 0;
  padding: 0 0.625rem;
  flex-grow: 1;
}
.secondary-nav ul li a {
  color: #505050;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.secondary-nav ul li a:hover {
  color: #274f95;
}
.secondary-nav ul li .icon {
  width: 1.625rem;
  height: 1.625rem;
  flex: 0 0 1.625rem;
  margin-right: 0.3125rem;
  color: #505050;
}
.secondary-nav ul li.li-search-trig {
  display: none;
}
.secondary-nav ul li.li-flag img {
  max-width: 30px;
  height: auto;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
}

.lng {
  position: relative;
  display: block;
}
.lng img {
  display: block;
  max-width: 30px;
  height: auto;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.lng .current {
  display: block;
  padding-right: 1.5625rem;
  cursor: pointer;
  /*.icon-caret {
    position: absolute;
    right: 0;
    top: 50%;
    @include translate(0,-50%);
  }*/
}
.lng .current:hover {
  color: #274f95;
}
.lng .current:before {
  content: "";
  position: absolute;
  display: block;
  right: 0.125rem;
  top: 50%;
  width: 0.625rem;
  height: 0.625rem;
  margin-top: -0.4375rem;
  border-left: 2px solid #505050;
  border-bottom: 2px solid #505050;
  border-width: 0.115625rem;
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
  transition: 0.3s all;
}
.lng ul {
  display: none;
  margin: 0;
  position: absolute;
  left: 0;
  left: -0.3125rem;
  top: 1.875rem;
  z-index: 10;
  background: #274f95;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  padding: 0.375rem;
  border-radius: 5px;
}
.lng ul li {
  font-size: 1rem;
  margin-bottom: 0.4375rem;
  padding: 0;
}
.lng ul li:last-child {
  margin-bottom: 0;
}
.lng ul li img {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
}
.lng ul li a {
  color: #fff !important;
}
.lng.active ul {
  display: block;
}
.lng.active .current:before {
  transform: rotate(135deg);
  margin-top: -0.0625rem;
}

.teaser {
  background: #274f95;
  color: #fff;
  padding: 3.4375rem 0;
  position: relative;
  overflow: hidden;
}
.teaser h1 {
  color: #fff;
  margin: 0;
}
.teaser > * {
  position: relative;
  z-index: 10;
}
.teaser .teaser-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
.teaser .teaser-logo-float {
  position: absolute;
  right: 0;
  top: 50%;
  width: 8.75rem;
  height: 8.75rem;
  margin-top: -4.375rem;
}
.teaser.teaser-detail {
  padding: 3.75rem 0;
}
.teaser.teaser-detail .breadcrumbs {
  padding-bottom: 0;
}
.teaser.teaser-detail .breadcrumbs a {
  color: #fad611;
}
.teaser.teaser-detail .breadcrumbs .pipe {
  color: #8193b1;
}

.teaser-logo-float {
  position: absolute;
  right: 0;
  top: 50%;
  width: 8.75rem;
  height: 8.75rem;
  margin-top: -4.375rem;
}

.breadcrumbs {
  font-size: 1.125rem;
  padding: 0.9375rem 0;
  border-bottom: 2px solid #f5f5f5;
}
.breadcrumbs a {
  font-weight: 600;
}
.breadcrumbs .pipe {
  color: #c7c7c7;
}
.breadcrumbs.alt {
  border: none;
}

.nav-btn {
  display: none;
  vertical-align: top;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
  z-index: 2001;
  cursor: pointer;
  align-items: center;
  margin-left: 20px;
}
.nav-btn .lines {
  width: 30px;
  height: 4px;
  flex: 0 0 30px;
  display: block;
  position: relative;
  position: absolute;
  top: 50%;
  margin-top: -2px;
}
.nav-btn .line-1,
.nav-btn .line-2,
.nav-btn .line-3 {
  display: block;
  width: 100%;
  height: 2px;
  background: #274f95;
  transition: 0.1s;
  position: absolute;
  left: 0;
  content: "";
  transform-origin: 0.28571rem center;
}
.nav-btn .line-1 {
  top: 0;
  transition: opacity 0.1s 0.1s ease;
}
.nav-btn .line-2 {
  top: 10px;
  transform-origin: 50% 50%;
  transition: top 0.1s 0.1s ease, transform 0.1s ease;
}
.nav-btn .line-3 {
  top: -10px;
  transform-origin: 50% 50%;
  transition: top 0.1s 0.1s ease, transform 0.1s ease;
}
.nav-btn.active .line-1 {
  transition: opacity 0.1s 0s ease;
  background: transparent;
  opacity: 0;
}
.nav-btn.active .line-2 {
  transform: rotate3d(0, 0, 1, 45deg);
  transition: top 0.1s ease, transform 0.1s 0.1s ease;
  top: 0;
}
.nav-btn.active .line-3 {
  transform: rotate3d(0, 0, 1, -45deg);
  transition: top 0.1s ease, transform 0.1s 0.1s ease;
  top: 0;
}
.nav-btn.active:hover .line-1,
.nav-btn.active:hover .line-2,
.nav-btn.active:hover .line-3 {
  background: #274f95;
}

.mobile-nav {
  background: #274f95;
  width: 100%;
  position: fixed;
  right: 0;
  top: -5px;
  z-index: 90;
  overflow-y: auto;
  max-height: 100%;
  padding: 8.75rem 0 1.25rem 0;
  transition: 0.3s all;
  transform: translate(0, -100%);
}
.mobile-nav.active {
  transform: translate(0, 0);
}
.mobile-nav ul {
  font-size: 17px;
  margin: 0;
  padding: 0;
}
.mobile-nav ul li {
  color: #fff;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}
.mobile-nav ul li a {
  font-weight: 400;
  display: block;
  width: 100%;
  padding: 14px 0;
  color: #fff;
  border: none;
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav ul li a .more {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.mobile-nav ul li a .more:before {
  content: "";
  position: absolute;
  display: block;
  right: 5px;
  top: 50%;
  width: 0.9375rem;
  height: 0.9375rem;
  margin-top: -0.75rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
  transition: 0.3s all;
}
.mobile-nav ul li ul {
  padding-left: 1.875rem;
  background: #20478a;
  display: none;
}
.mobile-nav ul li ul.sub-1 {
  font-size: 16px;
  padding: 10px 0;
  margin: 0 -15px;
  position: relative;
}
.mobile-nav ul li ul.sub-1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,7db9e8+100&0.5+0,0+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(125, 185, 232, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.mobile-nav ul li ul.sub-2 {
  font-size: 16px;
  padding: 0;
}
.mobile-nav ul li ul.sub-2 li {
  padding-left: 30px;
}
.mobile-nav ul li.active > a {
  color: #fff;
  border: none;
}
.mobile-nav ul li.active > ul {
  display: block;
}
.mobile-nav ul li.active > a > .more:before {
  margin-top: -0.25rem;
  transform: rotate(135deg);
}
.mobile-nav form.form-search {
  display: none;
  width: 100%;
}
.mobile-nav form.form-search .cell {
  max-width: 100%;
}

.mobile-nav-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
}

.mobile-nav-wrap {
  display: none;
}

@keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg);
  }
  70% {
    transform: rotateX(20deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
/************************************************************************************
LAYOUT
*************************************************************************************/
.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.category-filter .category-filter-item {
  position: relative;
  padding-left: 36px;
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem;
  color: #373737;
}
.category-filter .category-filter-item:before {
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #fad611;
  border-radius: 7px;
}
.category-filter .category-filter-item.active:before {
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-position: 50% 55%;
  background-size: 70% auto;
}

.map-contact {
  height: 500px;
  background: url(../img/map-contact.jpeg) no-repeat 50% 0;
  background-size: auto 100%;
}
.map-contact .marker {
  max-width: 270px;
  background: white;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}
.map-contact .marker:after {
  background: linear-gradient(45deg, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 16px;
  left: 50%;
  position: absolute;
  bottom: -16px;
  margin-left: -8px;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 16px;
}

.text-desc {
  margin-bottom: 2.8125rem;
}
.text-desc.low {
  margin-bottom: 2.5rem;
}

.products h3 {
  margin-bottom: 0.625rem;
  font-weight: 600;
  color: #274f95;
}
.products h3 a {
  color: #274f95;
  text-decoration: none;
}
.products h3 a:hover {
  text-decoration: underline;
}
.products .item {
  margin-bottom: 1.875rem;
  display: flex;
}
.products .item .img {
  display: block;
  border: 2px solid #ddddde;
  border-bottom: none;
  padding: 1.875rem 0.9375rem;
  background: #fff;
}
.products .item .img img {
  display: block;
  margin: 0 auto;
}
.products .item .desc {
  flex-grow: 1;
}
.products .item .item-inner {
  text-decoration: none;
}
.products .item .text {
  border: 2px solid #ddddde;
  padding: 1.5625rem;
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.products .item.alt .item-inner {
  display: flex;
  text-decoration: none;
}
.products .item.alt .item-inner .img {
  flex: 0 0 50%;
  max-width: 50%;
  border: 2px solid #ddddde;
  border-right: none;
}
.products .item.alt .item-inner .text {
  flex: 0 0 50%;
  max-width: 50%;
  padding-top: 3.75rem;
}
.products .item .tags {
  margin-bottom: 0.625rem;
}
.products .item .price {
  line-height: 1.3em;
  font-weight: 600;
  color: #274f95;
  margin-bottom: 0.625rem;
}
.products .item .price .suffix {
  font-size: 0.9375rem;
  font-weight: 400;
  white-space: nowrap;
}
.products .item:hover .item-inner h2, .products .item:hover .item-inner h3, .products .item:hover .item-inner h4, .products .item:hover .item-inner h5, .products .item:hover .item-inner h6 {
  text-decoration: underline;
}
.products .item-inner {
  display: block;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.products .foot {
  padding-top: 0.9375rem;
  display: flex;
  justify-content: center;
}

.systems h2 {
  margin-bottom: 1.875rem;
}
.systems .item {
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: 1.875rem;
  display: flex;
}
.systems .item .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.systems .item .img img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.systems .item .text {
  position: relative;
  z-index: 10;
}
.systems .item .desc {
  max-width: 350px;
}
.systems .item h3 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.systems .item h3:hover {
  text-decoration: underline;
}
.systems .item.c-1 .item-inner {
  background: #274f95;
}
.systems .item.c-2 .item-inner {
  background: #1a3465;
}
.systems .item.c-3 .item-inner {
  background: #0e2550;
}
.systems .item.c-4 h3 {
  color: #000000;
}
.systems .item.c-4 .item-inner {
  background: #e6e6e6;
}
.systems .item-inner {
  background: #274f95;
  padding: 5.625rem 2.5rem;
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
}
.systems .item-inner:after {
  content: "";
  background: rgba(0, 40, 110, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.systems .btn:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.posts .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 3.75rem 0;
}
.posts .head h2 {
  margin: 0.625rem 0;
}
.posts .head .btn {
  margin: 0.625rem 0;
}
.posts .item {
  margin: 0 0 2.0625rem 0;
  display: flex;
  flex-direction: column;
}
.posts .item .post-img {
  margin-bottom: 1.25rem;
}
.posts .item h3 {
  font-weight: 600;
}
.posts .item h3 a {
  color: #373737;
  text-decoration: none;
}
.posts .item h3 a:hover {
  text-decoration: underline;
}
.posts .item .date {
  font-weight: 600;
  margin-bottom: 0;
}
.posts .item .desc {
  margin: 0 0 2.8125rem 0;
  flex-grow: 1;
}

.post .post-head {
  margin-bottom: 3.125rem;
}

.tag-list {
  display: inline-flex;
}
.tag-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.125rem;
}
.tag-list ul li {
  padding: 0.125rem;
}
.tag-list ul li a {
  font-size: 1rem;
  font-weight: 600;
  background: #eaeaea;
  border-radius: 3px;
  color: #868686;
  text-decoration: none;
  padding: 0.125rem 0.5rem;
}
.tag-list ul li a:hover {
  background: #274f95;
  color: #fff;
}

.cta {
  color: #fff;
  padding: 2.3125rem 0;
}
.cta .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cta h2 {
  margin: 0.3125rem 0;
}
.cta .phone {
  font-size: 2.625rem;
  line-height: 1.3em;
  margin: 0.3125rem 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.cta .phone a {
  font-weight: 100;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
}
.cta .phone .icon {
  margin-right: 1.25rem;
  width: 3.375rem;
  height: 3.375rem;
  flex: 0 0 3.375rem;
  color: #fff;
}
.cta.invert .phone a:hover {
  color: #fad611;
}

.references .item-list {
  margin: 0;
}
.references .item {
  padding: 0;
}
.references .item h3 {
  color: #fff;
}
.references .item h3:hover {
  text-decoration: underline;
}
.references .item h3 a {
  color: #fff;
}
.references .item .black {
  color: #000;
}
.references .item .black:hover {
  text-decoration: underline;
}
.references .item .text {
  position: relative;
  z-index: 20;
  display: flex;
  padding: 3.125rem;
}
.references .item .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.references .item .img img {
  transition: 0.3s all;
  transform: scale(1);
  -o-object-fit: cover !important;
  object-fit: cover !important;
  width: 100%;
  height: 100%;
}
.references .item .img:after {
  content: "";
  background: rgba(0, 40, 110, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.references .item .cat {
  color: #fad611;
  display: flex;
  align-items: center;
}
.references .item .cat .icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.625rem;
  color: #fad611;
}
.references .item .btn {
  /*&:after {
    background-image: url('../img/arr-r-alt.svg')
  }*/
}
.references .item .btn-set {
  flex: 0 0 7.5rem;
  display: flex;
  justify-content: flex-end;
}
.references .item-inner {
  display: flex;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  min-height: 23.75rem;
  padding-bottom: 82%;
  height: 0;
}
.references .item-inner:hover .img img {
  transform: scale(1.05);
}
.references .item-inner.pr-sd {
  padding-bottom: 60%;
}

.partners .head {
  font-weight: 600;
  color: #989898;
}
.partners .item .img img {
  display: block;
  margin: 0 auto;
}

.partners-list h3 {
  margin-bottom: 1.875rem;
}

.alphabet h2 {
  margin-bottom: 1.875rem;
}
.alphabet h3 {
  margin-bottom: 1.875rem;
}
.alphabet .partners-slider {
  margin-bottom: 1.875rem;
}
.alphabet .foot {
  display: flex;
  justify-content: center;
  padding-top: 1.875rem;
}

.letter-list {
  font-size: 2.625rem;
  line-height: 1.3em;
  color: #274f95;
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.letter-list ul {
  display: flex;
  margin: 0 -0.25rem;
  flex-wrap: wrap;
}
.letter-list ul li {
  padding: 0 0.25rem;
  margin: 0;
}
.letter-list ul li.inactive a {
  color: #ddd;
  cursor: default;
  text-decoration: none !important;
}
.letter-list ul li a {
  text-decoration: none;
  color: #274f95;
}
.letter-list ul li a:hover {
  text-decoration: underline;
}

.comparing {
  overflow-x: auto;
  margin-left: -15px;
  margin-right: -15px;
}
.comparing .item-list {
  flex-wrap: nowrap;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  margin: 0;
}
.comparing .item-inner {
  border: 2px solid #ddddde;
  border-top: none;
  width: 100%;
  position: relative;
}
.comparing .item {
  display: flex;
  flex-shrink: 0;
}
.comparing .item .text {
  padding: 1.25rem 1.5rem;
}
.comparing .item .head {
  height: 7.5rem;
}
.comparing .item .params ul li {
  padding: 0.3125rem 1.5rem;
}
.comparing .item .params ul li:nth-child(even) {
  background: #f4f4f4;
}
.comparing .item .price {
  font-size: 1.125rem;
  line-height: 1.3em;
  color: #274f95;
  font-weight: 600;
  margin: 0 0 1.25rem 0;
}
.comparing .item .price .suffix {
  font-weight: 400;
  white-space: nowrap;
}
.comparing .item .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: -0.875rem;
  margin-right: -0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fad611;
  color: #000;
  border-radius: 50%;
  transition: 0.3s all;
}
.comparing .item .close:hover {
  background: #274f95;
  color: #fff;
}
.comparing .item .close .icon {
  width: 0.75rem;
  height: 0.75rem;
}
.comparing .item .btn {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
.comparing .item h3 {
  color: #274f95;
  font-weight: 600;
  margin-bottom: 0;
}
.comparing .item.empty {
  min-height: 500px;
}
.comparing .item.empty .item-inner {
  border: none;
  background: #e5eaf2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.comparing .item.empty .plus {
  width: 5rem;
  height: 5rem;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 60px auto;
  display: block;
  color: #274f95;
}
.comparing .item.item-labels .item-inner {
  border: none;
}
.comparing .item.item-labels .params {
  color: #274f95;
}

.box {
  background: #e5eaf2;
  padding: 1.875rem;
}

.contact-us div.text {
  font-size: 1.375rem;
  display: flex;
  align-items: center;
}
.contact-us div.text .desc {
  margin: 1.875rem 0;
}
.contact-us div.text .desc:last-child {
  margin-bottom: 0;
}
.contact-us div.text .desc p:last-child {
  margin-bottom: 0;
}
.contact-us div.text .inner {
  max-width: 29.375rem;
}
.contact-us div.text ul {
  max-width: 320px;
}
.contact-us div.text li.phone, .contact-us div.text li.mail {
  font-size: 1.375rem;
  padding: 0;
  margin-bottom: 1.875rem;
}
.contact-us div.text li.phone a, .contact-us div.text li.mail a {
  color: #274f95;
  background: #e5eaf2;
  display: inline-flex;
  height: 3.4375rem;
  align-items: center;
  padding: 0 2.1875rem;
  border-radius: 6px;
  text-decoration: none;
  width: 100%;
  transition: 0.3s all;
}
.contact-us div.text li.phone a:hover, .contact-us div.text li.mail a:hover {
  color: #fff;
  background: #274f95;
}
.contact-us div.text li.phone a .icon, .contact-us div.text li.mail a .icon {
  width: 1.875rem;
  height: 1.875rem;
  margin-right: 0.625rem;
}
.contact-us .btn-set {
  align-items: center;
  display: flex;
}
.contact-us .btn-set .inner {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.contact-us .box {
  padding: 3.4375rem;
  border-radius: 6px;
}

.categories {
  margin: -0.625rem 0;
}
.categories .item-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -0.625rem;
}
.categories .item {
  text-align: center;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
  margin: 0.625rem 0;
}
.categories .item .img {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.375rem;
  border: 2px solid #ddddde;
  width: 4.375rem;
  height: 4.375rem;
  margin-bottom: 0.625rem;
  transition: 0.3s all;
}
.categories .item .img:hover {
  border-color: #274f95;
}
.categories .item .img .icon {
  width: 1.875rem;
  height: 1.875rem;
}
.categories .item h3 {
  font-size: 0.76875rem;
  color: #878787;
}
.categories .item h3.break {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.categories .item h3 a {
  color: #878787;
  text-decoration: none;
}
.categories .item.active .img {
  background: #274f95;
  border-color: #274f95;
  color: #fff;
}
.categories .item.active h3 {
  color: #274f95;
}
.categories .item.active h3 a {
  color: #274f95;
}
.categories .item-inner {
  max-width: 90px;
  margin: 0 auto;
}

.category-list {
  counter-reset: counter;
}
.category-list .item-list {
  margin-bottom: -2.5rem;
}
.category-list .item {
  margin-bottom: 2.5rem;
  display: flex;
  position: relative;
}
.category-list .item .img {
  border: 2px solid #ddddde;
  height: 16.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.category-list .item .img img {
  display: block;
  margin: 0 auto;
  transition: 0.3s all;
  transform: scale(1);
}
.category-list .item .text {
  border: 2px solid #ddddde;
  border-top: none;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  position: relative;
  transition: 0.3s all;
}
.category-list .item h3 {
  font-weight: 600;
  margin-bottom: 0;
  transition: 0.3s all;
}
.category-list .item h3 .icon {
  position: absolute;
  right: 1.5625rem;
  top: 50%;
  width: 1.5625rem;
  height: 1.5625rem;
  margin-top: -0.78125rem;
  color: #1d1d1b;
  transform: rotate(0deg);
  transition: 0.3s all;
}
.category-list .item.active .text {
  background: #274f95;
  border-color: #274f95;
  color: #fff;
}
.category-list .item.active .text h3 {
  color: #fff;
}
.category-list .item.active .text h3 .icon {
  transform: rotate(180deg);
  color: #fff;
}
.category-list .item.active .text:before {
  color: #fff;
}
.category-list .item-desc {
  display: none;
  font-size: 1.25rem;
}
.category-list .item-desc.active {
  display: block;
}
.category-list .item-desc .btn {
  width: 100%;
  border-radius: 0;
  height: 3.5rem;
}
.category-list .item-desc .btn:hover {
  color: #fff;
}
.category-list .item-desc .block-btn {
  border: 2px solid #ddddde;
  background: #f5f5f5;
  color: #000;
}
.category-list .item-desc ul:last-child {
  margin-bottom: 0;
}
.category-list .item-desc ul li {
  margin-bottom: 15px;
  padding-left: 1.5625rem;
  position: relative;
}
.category-list .item-desc ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #274f95;
}
.category-list .item-desc ul li:last-child {
  margin-bottom: 0;
}
.category-list .item-desc a {
  color: #505050;
  text-decoration: none;
}
.category-list .item-desc a:hover {
  text-decoration: underline;
}
.category-list .item-main {
  counter-increment: counter;
}
.category-list .item-main .text:before {
  content: none;
}
.category-list .item-main.active:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 16px 15px 16px;
  border-color: transparent transparent #e5eaf2 transparent;
}
.category-list .item-inner {
  display: block;
  text-decoration: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.category-list .item-inner:hover .img img {
  transform: scale(1.05);
}
.category-list .item-inner:hover h3 {
  text-decoration: underline;
}

.category-fields {
  counter-reset: counter;
}
.category-fields .item-list {
  margin-bottom: -1.875rem;
  counter-reset: counter;
}
.category-fields .item {
  margin-bottom: 1.875rem;
  display: flex;
  position: relative;
  counter-increment: counter;
}
.category-fields .item .img {
  border: 2px solid #ddddde;
  height: 11.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.category-fields .item .img .icon {
  width: 3.3125rem;
  height: 3.3125rem;
  color: #aaaaaa;
}
.category-fields .item .text {
  border: 2px solid #ddddde;
  border-top: none;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  position: relative;
  transition: 0.3s all;
}
.category-fields .item .text .num {
  display: none;
}
.category-fields .item h3 {
  font-weight: 600;
  margin-bottom: 0;
  transition: 0.3s all;
}
.category-fields .item h3 .icon {
  position: absolute;
  right: 1.5625rem;
  top: 50%;
  width: 1.5625rem;
  height: 1.5625rem;
  margin-top: -0.78125rem;
  color: #1d1d1b;
  transform: rotate(0deg);
  transition: 0.3s all;
}
.category-fields .item-inner {
  display: block;
  text-decoration: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.category-fields .item-inner:hover .img img {
  transform: scale(1.05);
}
.category-fields .item-inner:hover .icon {
  color: #274f95;
}
.category-fields .item-inner:hover h3 {
  text-decoration: underline;
}

.gallery .item {
  margin-bottom: 1.25rem;
}

.img-full img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.img-full .desc {
  font-weight: 600;
  padding-top: 1.25rem;
}

.lab .img .inner {
  display: flex;
  justify-content: flex-end;
}

.navigator .head {
  font-weight: 600;
  color: #274f95;
}
.navigator ol li {
  font-size: 2rem;
  line-height: 1.3em;
  margin-bottom: 0.625rem;
  padding-left: 1.875rem;
}
.navigator ol li a {
  color: #505050;
  text-decoration: none;
}
.navigator ol li a:hover {
  text-decoration: underline;
}
.navigator ol li:before {
  color: #505050;
}

.tags ul {
  margin: 0 -3px;
  display: flex;
  flex-wrap: wrap;
}
.tags ul li {
  padding: 0 3px;
  margin: 0.125rem 0;
}
.tags ul li a {
  font-size: 0.9375rem;
  line-height: 1.3em;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 0.1875rem 0.625rem;
  border-radius: 3px;
  transition: 0.3s all;
}
.tags ul li.vyprodej a {
  background: #ddf1f1;
  color: #14a0a1;
}
.tags ul li.vyprodej a:hover {
  background: #14a0a1;
  color: #fff;
}
.tags ul li.doprodej a {
  background: #f5ede1;
  color: #b17311;
}
.tags ul li.doprodej a:hover {
  background: #b17311;
  color: #fff;
}
.tags ul li.novinka a {
  background: #f9dede;
  color: #c71d1d;
}
.tags ul li.novinka a:hover {
  background: #c71d1d;
  color: #fff;
}

.product-detail .text .tags {
  margin-bottom: 1.875rem;
}
.product-detail .text .desc {
  margin: 1.875rem 0;
}
.product-detail .text .params {
  margin: 1.875rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product-detail .text .params select {
  font-weight: 600;
  width: 4.875rem;
  height: 2.8125rem;
  padding: 0 0.625rem;
  border: 2px solid #eaeaea;
  border-radius: 7px;
  text-align: center;
}
.product-detail .text .params label {
  padding-left: 0.625rem;
  color: #373737;
  margin-bottom: 0;
}
.product-detail .text .price {
  line-height: 1.3em;
  color: #274f95;
  font-weight: 600;
  margin: 1.875rem 0;
}
.product-detail .text .price .label {
  font-weight: 400;
  width: 100%;
  display: block;
  margin-bottom: 0.625rem;
}
.product-detail .text .price .val {
  font-size: 1.5rem;
}
.product-detail .text .price .suffix {
  font-weight: 400;
  white-space: nowrap;
}
.product-detail .text .price .more-info {
  font-size: 13px;
  font-weight: 400;
  color: #7f7f7f;
  letter-spacing: -0.5px;
}
.product-detail .text .action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.875rem 0;
}
.product-detail .text .action .compare-link {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.product-detail .text .action .compare-link .icon {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  margin-left: 5px;
  position: relative;
  left: 0;
  transition: 0.3s all;
}
.product-detail .text .action .compare-link:hover {
  text-decoration: underline;
}
.product-detail .text .action .compare-link:hover .icon {
  left: 5px;
}
.product-detail .img .img-main {
  margin-bottom: 10px;
}
.product-detail .img .img-main img {
  width: 100%;
}
.product-detail .img .img-slider .slider {
  margin: 0 -5px;
}
.product-detail .img .img-slider .item {
  padding: 0 5px;
}
.product-detail .img .inner {
  margin-bottom: 1.875rem;
}
.product-detail .manufacturer .item {
  display: flex;
  align-items: center;
}
.product-detail .manufacturer .label {
  margin-right: 30px;
}
.product-detail .manufacturer .logo {
  max-width: 150px;
  padding: 15px;
}

.box-fixer {
  margin-top: -15rem;
  position: relative;
  z-index: 20;
}
.box-fixer.small-fixer {
  margin-top: -0.875rem;
}
.box-fixer .fixer {
  padding-top: 15px;
}

.box-negative {
  position: relative;
  z-index: 20;
  max-width: 23.125rem;
}

.demand-basket {
  padding: 0 0 0.9375rem 0.9375rem;
}
.demand-basket h4 {
  color: #274f95;
  margin: 0 0 1rem;
}
.demand-basket .item {
  margin: 0 0 0.625rem 0;
  position: relative;
}
.demand-basket .item .blue {
  color: #274f95;
}
.demand-basket .item .head {
  font-size: 15px;
  font-weight: 600;
  color: #274f95;
}
.demand-basket .item .head:not(.mb-auto) {
  margin: 0;
}
.demand-basket .item .head a {
  text-decoration: none;
  color: #274f95;
}
.demand-basket .item .head a:hover {
  text-decoration: underline;
}
.demand-basket .item .close {
  font-size: 32px;
  line-height: 0;
  position: absolute;
  right: 15px;
  top: 0;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.demand-basket .item .close:hover {
  color: #274f95;
}
.demand-basket .item .num {
  font-size: 1.125rem;
  position: absolute;
  left: -1.5625rem;
  width: 2.1875rem;
  text-align: right;
  top: 0;
  overflow: hidden;
}
.demand-basket .foot {
  display: flex;
  justify-content: center;
}
.demand-basket .foot .btn {
  width: 100%;
  max-width: 300px;
}

.contact .head {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.contact h3.medium {
  font-weight: 600;
  color: #274f95;
  margin-bottom: 2.5rem;
}
.contact .contact-list ul {
  display: flex;
  justify-content: center;
  margin: 0 -1.875rem;
  flex-wrap: wrap;
}
.contact .contact-list ul li {
  font-size: 2.625rem;
  line-height: 1.3em;
  margin: 0.3125rem 0;
  padding: 0 1.875rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.contact .contact-list ul li a {
  font-weight: 100;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.contact .contact-list ul li .icon {
  margin-right: 1.25rem;
  width: 3.375rem;
  height: 3.375rem;
  flex: 0 0 3.375rem;
}
.contact .item-list {
  margin-bottom: -2.5rem;
}
.contact .item {
  margin-bottom: 2.5rem;
}
.contact .item ul:last-child {
  margin-bottom: 0;
}
.contact .item ul:last-child li:last-child {
  margin-bottom: 0;
}

.icon-list .item {
  margin-bottom: 1.875rem;
}
.icon-list .item .img {
  border: 2px solid #ddddde;
  color: #274f95;
  width: 10.875rem;
  height: 10.875rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto -20px auto;
}
.icon-list .item .img .icon {
  flex: 0 0 5rem;
  width: 5rem;
  height: 5rem;
}
.icon-list .item .text {
  text-align: center;
}
.icon-list .item h3 {
  background: #fff;
  padding: 0 10px;
  display: inline-block;
}

.col-2-l-set {
  display: flex;
  margin: 0 -15px;
}
.col-2-l-set .column-1 {
  flex: 0 0 18.75rem;
  max-width: 18.75rem;
  padding: 0 15px;
}
.col-2-l-set .column-2 {
  padding: 0 15px;
}

.pagebar {
  padding-top: 1.5625rem;
}
.pagebar ul {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}
.pagebar ul li {
  padding: 0 0.375rem;
  font-weight: 600;
}
.pagebar ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ddddde;
  width: 2.6875rem;
  height: 2.6875rem;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
  transition: 0.3s all;
}
.pagebar ul li a:hover {
  border-color: #274f95;
  color: #274f95;
}
.pagebar ul li a.active {
  border-color: #fad611;
  cursor: default;
}

.product-nav {
  background: #f4f4f4;
}
.product-nav h3 {
  background: #274f95;
  color: #fff;
  padding: 0.9375rem 1.5625rem;
  margin: 0;
}
.product-nav ul {
  margin: 0;
  padding-bottom: 0.9375rem;
  padding-top: 0.9375rem;
}
.product-nav ul li {
  padding: 0;
  margin: 0;
}
.product-nav ul li a {
  display: block;
  font-size: 1.0625rem;
  line-height: 1.3em;
  font-weight: 600;
  color: #274f95;
  text-decoration: none;
  padding: 0.5rem 2.1875rem 0.5rem 1.5625rem;
  position: relative;
}
.product-nav ul li a:hover {
  text-decoration: underline;
}
.product-nav ul li a:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 0.9375rem;
  width: 8px;
  height: 8px;
  border-left: 2px solid #274f95;
  border-bottom: 2px solid #274f95;
  transform: rotate(-45deg);
}
.product-nav ul li.active a:before {
  transform: rotate(135deg);
  top: 1.125rem;
}
.product-nav ul li.active ul {
  display: block;
}
.product-nav ul ul {
  padding-left: 1.25rem;
  padding-top: 0;
  display: none;
}
.product-nav ul ul li a {
  font-size: 0.875rem;
  color: #373737;
  padding: 0.5rem 0.9375rem;
}
.product-nav ul ul li a:before {
  content: none;
}
.product-nav ul ul li.active a {
  color: #274f95;
}

.search {
  padding: 1.875rem 1.875rem;
  background-color: #f5f5f5;
  margin-bottom: 53px;
  position: relative;
}
.search form {
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
}

.search-box {
  padding: 0px;
  display: flex;
  background-color: #fff;
  border: solid;
  border-color: #ddddde;
  border-width: 2px;
  border-radius: 5px;
  width: 100%;
  position: relative;
}
.search-box .icon-search {
  width: 1.625rem;
  height: 1.625rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
.search-box input.text {
  border-color: transparent;
  padding: 5px 15px 5px 45px;
  width: 100%;
  background-color: transparent;
}

.search-buttom {
  flex-shrink: 0;
}

.search-category {
  padding: 1.25rem 1.5625rem 0rem;
  display: flex;
}
.search-category .search-box .icon-search {
  left: 5px;
}
.search-category .search-box input.text {
  padding: 8px 15px 8px 30px;
}

.product-filter {
  margin-bottom: 1.875rem;
}
.product-filter .filter-head {
  flex: 0 0 100px;
  max-width: 100px;
}
.product-filter .filter-bar {
  width: 100%;
}
.product-filter .filter-bar h3 {
  font-weight: 600;
  margin: 0.625rem 1.875rem 0.625rem 0;
}
.product-filter .filter-bar .box {
  padding: 0.625rem 1.5625rem;
  display: flex;
  justify-content: space-between;
}
.product-filter .filter-bar .filter-l {
  display: flex;
}
.product-filter .filter-bar .filter-trigger {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  padding-right: 1.5625rem;
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  margin: 0.625rem 0;
  color: #274f95;
}
.product-filter .filter-bar .filter-trigger:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.8125rem;
  width: 0.5625rem;
  height: 0.5625rem;
  transform: rotate(-45deg);
  border-bottom: 2px solid #274f95;
  border-left: 2px solid #274f95;
  transition: 0.3s all;
}
.product-filter .filter-bar .filter-trigger.active:before {
  transform: rotate(135deg);
  top: 1.125rem;
}
.product-filter .filter-bar .filtered-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product-filter .filter-bar .filtered-tags ul {
  margin: 0.5rem 0.3125rem 0.5rem -0.3125rem;
  display: flex;
  flex-wrap: wrap;
}
.product-filter .filter-bar .filtered-tags ul li {
  margin: 0;
  padding: 0.125rem 0.3125rem;
}
.product-filter .filter-bar .filtered-tags ul li a {
  font-size: 0.875rem;
  color: #373737;
  border: 2px solid #fad611;
  border-radius: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 0 0.625rem;
  cursor: default;
}
.product-filter .filter-bar .filtered-tags ul li a .remove {
  cursor: pointer;
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 0.3125rem;
}
.product-filter .filter-bar .filtered-tags ul li a .remove .icon {
  width: 0.625rem;
  height: 0.625rem;
}
.product-filter .filter-bar .filtered-tags ul li a .remove:hover {
  color: #274f95;
}
.product-filter .filter-bar .filtered-tags .delete {
  font-size: 0.875rem;
  color: #373737;
  margin: 0.625rem 0;
}
.product-filter .filter-content {
  flex-grow: 1;
  position: relative;
}
.product-filter .filter-content .content {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}
.product-filter .filter-content .foot {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.875rem;
}
.product-filter .block-btn {
  background: #274f95;
  color: #fff;
  border: 2px solid #274f95;
  text-decoration: none;
  width: 100%;
}
.product-filter .block-btn:hover {
  background: #fad611;
  border-color: #fad611;
  color: #274f95;
}
.product-filter .block-btn .txt .icon {
  color: inherit;
}
.product-filter .col {
  flex: 0 0 20%;
  max-width: 20%;
  margin-bottom: 1.25rem;
}

.range-slider-wrapper {
  padding: 0 5rem 0 0.625rem;
  display: flex;
  flex-grow: 1;
  align-items: center;
}

.range-slider {
  width: 100%;
}
.range-slider.noUi-horizontal {
  height: 4px;
  border: none;
  box-shadow: none;
  background: #dfe0e2;
}
.range-slider.noUi-horizontal .noUi-handle {
  width: 1.125rem;
  height: 1.125rem;
  top: -0.4375rem;
  right: -0.5625rem;
  border-radius: 50%;
  background: #fad611;
  box-shadow: none;
  cursor: grab !important;
  border: none;
}
.range-slider.noUi-horizontal .noUi-handle:before, .range-slider.noUi-horizontal .noUi-handle:after {
  content: none;
}
.range-slider.noUi-horizontal .noUi-connect {
  background: #274f95;
}
.range-slider.noUi-horizontal .noUi-tooltip {
  font-size: 0.875rem;
  font-weight: 600;
  color: #274f95;
  background: none;
  border: none;
  padding: 0;
  bottom: -180%;
}

.fix-contact, .fix-partner {
  position: fixed;
  z-index: 150;
  right: 0;
  top: 50%;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  transform: translate(100%, 0);
  transition: 0.3s all;
}
.fix-contact .fix-trigger, .fix-partner .fix-trigger {
  display: flex;
  align-items: center;
  position: absolute;
  top: -45px;
  left: -180px;
  transform: rotate(-90deg);
  transform-origin: 100% 100%;
  height: 45px;
  width: 180px;
  padding: 0 20px;
  background: #fad611;
  cursor: pointer;
  transition: 0.3s all;
}
.fix-contact .fix-trigger .txt, .fix-partner .fix-trigger .txt {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.fix-contact .fix-trigger .img, .fix-partner .fix-trigger .img {
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fix-contact .fix-trigger .icon, .fix-partner .fix-trigger .icon {
  margin-left: 5px;
  position: relative;
  top: 3px;
}
.fix-contact .fix-trigger .icon-phone, .fix-partner .fix-trigger .icon-phone {
  color: #fff;
  transform: rotate(90deg);
}
.fix-contact .fix-trigger .icon-arr-r, .fix-partner .fix-trigger .icon-arr-r {
  width: 11px;
  height: 11px;
  margin-left: 14px;
}
.fix-contact .fix-trigger:hover, .fix-partner .fix-trigger:hover {
  background: #274f95;
  color: #fff;
}
.fix-contact .fix-content, .fix-partner .fix-content {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  background: #fff;
}
.fix-contact .fix-content .head, .fix-partner .fix-content .head {
  font-weight: 600;
}
.fix-contact .fix-content ul, .fix-partner .fix-content ul {
  margin: 0;
}
.fix-contact .fix-content ul li, .fix-partner .fix-content ul li {
  padding: 0;
}
.fix-contact .fix-content a:not(.btn), .fix-partner .fix-content a:not(.btn) {
  color: #000;
}
.fix-contact.active, .active.fix-partner {
  transform: translate(0, 0);
}

.fix-partner {
  top: calc(50% - 180px);
}
.fix-partner .fix-trigger {
  background: #e32121;
  color: white;
  justify-content: center;
  white-space: nowrap;
}
.fix-partner .fix-trigger .txt {
  padding-left: 0;
}
.fix-partner .fix-content {
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fix-partner .fix-content p:last-child {
  margin: 0;
}

.fix-notifikace {
  position: fixed;
  z-index: 150;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  transition: 0.3s all;
  background-color: #274f95;
  color: #fff;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  color: white;
  font-size: 24px;
}
.fix-notifikace.active {
  bottom: -100px;
  opacity: 0;
}
.fix-notifikace:hover {
  color: #000;
  background-color: #fad611;
}

@media screen and (min-width: 575px) {
  .category-list .item {
    order: 100;
  }
  .category-list .item:nth-child(1) {
    order: 0;
  }
  .category-list .item-desc:nth-child(2) {
    order: 2;
  }
  .category-list .item:nth-child(3) {
    order: 1;
  }
  .category-list .item-desc:nth-child(4) {
    order: 2;
  }
  .category-list .item:nth-child(5) {
    order: 3;
  }
  .category-list .item-desc:nth-child(6) {
    order: 5;
  }
  .category-list .item:nth-child(7) {
    order: 4;
  }
  .category-list .item-desc:nth-child(8) {
    order: 5;
  }
  .category-list .item:nth-child(9) {
    order: 6;
  }
  .category-list .item-desc:nth-child(10) {
    order: 8;
  }
  .category-list .item:nth-child(11) {
    order: 7;
  }
  .category-list .item-desc:nth-child(12) {
    order: 8;
  }
  .category-list .item:nth-child(13) {
    order: 9;
  }
  .category-list .item-desc:nth-child(14) {
    order: 11;
  }
  .category-list .item:nth-child(15) {
    order: 10;
  }
  .category-list .item-desc:nth-child(16) {
    order: 11;
  }
  .category-list .item:nth-child(17) {
    order: 12;
  }
  .category-list .item-desc:nth-child(18) {
    order: 14;
  }
  .category-list .item:nth-child(19) {
    order: 13;
  }
  .category-list .item-desc:nth-child(20) {
    order: 14;
  }
  .category-list .item:nth-child(21) {
    order: 15;
  }
  .category-list .item-desc:nth-child(22) {
    order: 17;
  }
  .category-list .item:nth-child(23) {
    order: 16;
  }
  .category-list .item-desc:nth-child(24) {
    order: 17;
  }
  .category-list .item:nth-child(25) {
    order: 18;
  }
  .category-list .item-desc:nth-child(26) {
    order: 20;
  }
  .category-list .item:nth-child(27) {
    order: 19;
  }
  .category-list .item-desc:nth-child(28) {
    order: 20;
  }
  .category-list .item:nth-child(29) {
    order: 21;
  }
  .category-list .item-desc:nth-child(30) {
    order: 23;
  }
  .category-list .item:nth-child(31) {
    order: 22;
  }
  .category-list .item-desc:nth-child(32) {
    order: 23;
  }
  .category-list .item:nth-child(33) {
    order: 24;
  }
  .category-list .item-desc:nth-child(34) {
    order: 26;
  }
  .category-list .item:nth-child(35) {
    order: 25;
  }
  .category-list .item-desc:nth-child(36) {
    order: 26;
  }
  .category-list .item:nth-child(37) {
    order: 27;
  }
  .category-list .item-desc:nth-child(38) {
    order: 29;
  }
  .category-list .item:nth-child(39) {
    order: 28;
  }
  .category-list .item-desc:nth-child(40) {
    order: 29;
  }
  .category-list .item:nth-child(41) {
    order: 30;
  }
  .category-list .item-desc:nth-child(42) {
    order: 32;
  }
  .category-list .item:nth-child(43) {
    order: 31;
  }
  .category-list .item-desc:nth-child(44) {
    order: 32;
  }
}
@media screen and (min-width: 991px) {
  .category-list .item {
    order: 100;
  }
  .category-list .item:nth-child(1) {
    order: 0;
  }
  .category-list .item-desc:nth-child(2) {
    order: 3;
  }
  .category-list .item:nth-child(3) {
    order: 1;
  }
  .category-list .item-desc:nth-child(4) {
    order: 3;
  }
  .category-list .item:nth-child(5) {
    order: 2;
  }
  .category-list .item-desc:nth-child(6) {
    order: 3;
  }
  .category-list .item:nth-child(7) {
    order: 4;
  }
  .category-list .item-desc:nth-child(8) {
    order: 7;
  }
  .category-list .item:nth-child(9) {
    order: 5;
  }
  .category-list .item-desc:nth-child(10) {
    order: 7;
  }
  .category-list .item:nth-child(11) {
    order: 6;
  }
  .category-list .item-desc:nth-child(12) {
    order: 7;
  }
  .category-list .item:nth-child(13) {
    order: 8;
  }
  .category-list .item-desc:nth-child(14) {
    order: 11;
  }
  .category-list .item:nth-child(15) {
    order: 9;
  }
  .category-list .item-desc:nth-child(16) {
    order: 11;
  }
  .category-list .item:nth-child(17) {
    order: 10;
  }
  .category-list .item-desc:nth-child(18) {
    order: 11;
  }
  .category-list .item:nth-child(19) {
    order: 12;
  }
  .category-list .item-desc:nth-child(20) {
    order: 15;
  }
  .category-list .item:nth-child(21) {
    order: 13;
  }
  .category-list .item-desc:nth-child(22) {
    order: 15;
  }
  .category-list .item:nth-child(23) {
    order: 14;
  }
  .category-list .item-desc:nth-child(24) {
    order: 15;
  }
  .category-list .item:nth-child(25) {
    order: 16;
  }
  .category-list .item-desc:nth-child(26) {
    order: 19;
  }
  .category-list .item:nth-child(27) {
    order: 17;
  }
  .category-list .item-desc:nth-child(28) {
    order: 19;
  }
  .category-list .item:nth-child(29) {
    order: 18;
  }
  .category-list .item-desc:nth-child(30) {
    order: 19;
  }
  .category-list .item:nth-child(31) {
    order: 20;
  }
  .category-list .item-desc:nth-child(32) {
    order: 23;
  }
  .category-list .item:nth-child(33) {
    order: 21;
  }
  .category-list .item-desc:nth-child(34) {
    order: 23;
  }
  .category-list .item:nth-child(35) {
    order: 22;
  }
  .category-list .item-desc:nth-child(36) {
    order: 23;
  }
  .category-list .item:nth-child(37) {
    order: 24;
  }
  .category-list .item-desc:nth-child(38) {
    order: 27;
  }
  .category-list .item:nth-child(39) {
    order: 25;
  }
  .category-list .item-desc:nth-child(40) {
    order: 27;
  }
  .category-list .item:nth-child(41) {
    order: 26;
  }
  .category-list .item-desc:nth-child(42) {
    order: 27;
  }
  .category-list .item:nth-child(43) {
    order: 28;
  }
  .category-list .item-desc:nth-child(44) {
    order: 31;
  }
  .category-list .item:nth-child(45) {
    order: 29;
  }
  .category-list .item-desc:nth-child(46) {
    order: 31;
  }
  .category-list .item:nth-child(47) {
    order: 30;
  }
  .category-list .item-desc:nth-child(48) {
    order: 31;
  }
}
@keyframes showDropdown {
  0% {
    display: none;
    transform: translate(0, -100%);
  }
  5% {
    display: block;
    transform: translate(0, -100%);
  }
  100% {
    display: block;
    transform: translate(0, 0);
  }
}
@keyframes showSearch {
  0% {
    display: none;
    max-width: 0;
  }
  5% {
    display: block;
    max-width: 0;
  }
  100% {
    display: block;
    max-width: 100%;
  }
}
form #contact_form_website, #contact_form_email {
  display: none;
}

/************************************************************************************
FOOTER
*************************************************************************************/
.footer .f_1 {
  padding: 3.125rem 0;
}
.footer .f_2 .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
}
.footer .foot-item {
  margin: 1.25rem 0;
}
.footer h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #274f95;
  margin-bottom: 3.125rem;
}
.footer ul li {
  padding: 0;
  margin: 0;
  padding-left: 1.5625rem;
  position: relative;
}
.footer ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5625rem;
  width: 10px;
  height: 10px;
  background: url("../img/arr-r.svg") center center no-repeat;
  background-size: cover !important;
}
.footer ul.unstyled li {
  padding: 0;
  background: none;
}
.footer ul.unstyled li:before {
  content: none;
}
.footer a {
  color: #373737;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .copy {
  font-size: 1.125rem;
  margin: 0;
}
.footer .mw {
  position: relative;
  color: #c6c6c6;
  display: block;
}
.footer .mw:hover {
  color: #00daee;
}
.footer .mw .text {
  position: absolute;
  left: 0;
  top: 0;
  text-indent: -80000px;
  display: block;
}
.footer .mw .icon-mw {
  width: 70px;
  height: 30px;
}
.footer .orwin {
  filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android */
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  transition: 0.3s all;
  opacity: 0.5;
}
.footer .orwin:hover {
  filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
  -webkit-filter: grayscale(0%);
  opacity: 1;
}
.footer .orwin .text {
  position: absolute;
  left: 0;
  top: 0;
  text-indent: -80000px;
  display: block;
}

/************************************************************************************
MEDIA QUERIES
*************************************************************************************/
/*========================= Viewport width 1199px and lower =========================*/
@media screen and (max-width: 1199px) {
  h1, .h1 {
    font-size: 3.125rem;
  }
  h2.light .hl {
    display: inline;
  }
  .teaser-hp {
    padding: 5rem 0;
  }
  .main-nav ul li a {
    font-size: 1rem;
  }
  .products .item .text {
    padding: 0.9375rem;
  }
  .categories .item {
    flex: 0 0 16.66666%;
    max-width: 16.66666%;
  }
  .categories .item .img {
    width: 4.375rem;
    height: 4.375rem;
  }
  .box-negative {
    max-width: 18.125rem;
  }
  .demand-basket {
    padding: 0;
  }
  .demand-basket .item .num {
    position: relative;
    left: 0;
    width: auto;
    text-align: left;
    margin: 0;
  }
  .comparing .item .text {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .comparing .item .params ul li {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
/*========================= Viewport width 991px and lower =========================*/
@media screen and (max-width: 991px) {
  html {
    font-size: 15px;
  }
  h1, .h1 {
    font-size: 2.5rem;
  }
  h2, .h2 {
    font-size: 2.5rem;
  }
  h2.big, .h2.big {
    font-size: 2.5rem;
  }
  .main-nav {
    display: none;
  }
  .secondary-nav {
    height: auto;
  }
  .secondary-nav ul li .txt-1 {
    display: none;
  }
  .secondary-nav ul li.li-search-trig {
    display: block;
  }
  .secondary-nav ul li.li-search {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    top: 6.25rem;
    height: 5.625rem;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    background: #fff;
    overflow: hidden;
  }
  .secondary-nav ul li.li-search:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: #fff;
  }
  .nav-btn {
    display: block;
  }
  .header .h_1 .inner {
    height: 6.25rem;
  }
  .header .megamenu {
    display: none !important;
  }
  .header .logo {
    max-width: 5rem;
  }
  .header .header-r {
    flex-wrap: nowrap;
  }
  .header form.form-search {
    width: 100%;
  }
  .header form.form-search .cell {
    max-width: 100% !important;
    width: 100% !important;
  }
  .header form.form-search input.text {
    border: 2px solid #ddddde;
  }
  .header .secondary-nav {
    height: auto;
  }
  .header .secondary-nav ul li.li-search {
    background: transparent;
  }
  .header .secondary-nav ul li.li-search:after {
    background: transparent;
  }
  .header.search-opened .h_1 {
    margin-bottom: 5.625rem;
  }
  .header.search-opened ul li.li-search {
    display: flex;
    animation: rotateMenu 400ms ease-in-out forwards;
    transform-origin: top center;
  }
  .header.search-opened .dropdown-search {
    display: none;
  }
  .header.search-opened .dropdown-search.active {
    display: block;
  }
  .teaser-hp {
    padding: 3.125rem 0;
  }
  .mobile-nav-wrap {
    display: block;
  }
  .mobile-nav ul li a {
    max-width: 690px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .slider-nav .prev {
    left: -20px;
    width: 3.125rem;
    height: 3.125rem;
  }
  .slider-nav .next {
    right: -20px;
    width: 3.125rem;
    height: 3.125rem;
  }
  .block {
    padding: 3.75rem 0;
  }
  .block.narrow {
    padding: 2.5rem 0;
  }
  .block.alpha {
    padding-top: 0;
  }
  .block.omega {
    padding-bottom: 0;
  }
  .posts .head {
    margin-bottom: 3.125rem;
  }
  .category-filter {
    justify-content: flex-start;
  }
  .category-filter .category-filter-item {
    padding-left: 32px;
    margin: 0.5rem 0.8rem;
  }
  .category-filter .category-filter-item:before {
    width: 22px;
    height: 22px;
    border-radius: 5px;
  }
  .references .item .text {
    display: block;
    padding: 1.875rem;
  }
  .references .item .text .btn-set {
    justify-content: flex-start;
  }
  .entry .table-wrap {
    overflow-x: auto;
  }
  .footer .f_1 {
    padding: 3.75rem 0;
  }
  .contact-us .box {
    padding: 2.5rem;
  }
  .navigator ol li {
    font-size: 1.5625rem;
  }
  .product-detail .img {
    order: 0;
    margin-bottom: 1.875rem;
  }
  .product-detail div.text {
    order: 1;
    margin-bottom: 1.875rem;
  }
  .box-negative {
    margin-top: 0;
    max-width: 100%;
  }
  .box-fixer {
    margin-top: 0;
  }
  .fixer {
    position: relative !important;
  }
  .comparing .item-list {
    margin-left: -5px;
    margin-right: -5px;
    flex-wrap: nowrap;
  }
  .comparing .item {
    padding: 0 5px;
    max-width: 200px;
    flex: 0 0 200px;
    flex-shrink: 0;
  }
  .comparing .item.item-labels {
    max-width: 200px;
    flex: 0 0 200px;
  }
  .product-filter .col {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-2-l-set {
    flex-wrap: wrap;
  }
  .col-2-l-set .column-1 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1.875rem;
  }
  .product-nav h3 {
    position: relative;
  }
  .product-nav h3:after {
    content: "";
    position: absolute;
    right: 1.75rem;
    top: 1.4375rem;
    width: 0.9375rem;
    height: 0.9375rem;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    transition: 0.3s all;
  }
  .product-nav ul, .product-nav form {
    display: none;
  }
  .product-nav.active h3:after {
    transform: rotate(135deg);
    top: 1.875rem;
  }
  .product-nav.active > ul, .product-nav.active > form {
    display: block;
  }
}
/*========================= Viewport width 767px and lower =========================*/
@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  .secondary-nav {
    height: auto;
    /*.li-search {
      //display: none;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      @include rem(top, 100px);
      padding: 10px 15px;
      background: #fff;
      overflow: hidden;

      &:after {
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        left: -100%;
        width: 300%;
        height: 100%;
        background: #fff;
      }
    }*/
  }
  .references .item-inner {
    height: auto;
    padding-bottom: 0;
  }
  .gallery .item-list {
    margin-left: -10px;
    margin-right: -10px;
  }
  .gallery .item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .products .item.alt .item-inner {
    display: block;
  }
  .products .item.alt .item-inner .img {
    flex: 0 0 100%;
    max-width: 100%;
    border: 2px solid #ddddde;
    border-bottom: none;
  }
  .products .item.alt .item-inner .text {
    padding: 1.5625rem;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .lab .img .inner {
    justify-content: flex-start;
  }
  .lab .img .frame {
    max-width: 100px;
  }
  .mobile-nav form.form-search {
    display: block;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    margin-bottom: 1.25rem;
  }
  .mobile-nav ul li {
    padding: 0 15px;
  }
  .mobile-nav ul li a {
    max-width: 510px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .product-filter .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .text-desc {
    margin-bottom: 2.5rem;
  }
  .text-desc.low {
    margin-bottom: 1.875rem;
  }
  .product-filter .box {
    padding: 0.625rem 1.5625rem;
  }
  .product-filter .filter-bar .box {
    flex-wrap: wrap;
  }
  .product-filter .filter-bar .box h3 {
    margin: 0.625rem 1.25rem 0.625rem 0;
  }
  .product-filter .filter-bar .filter-l {
    flex-wrap: wrap;
  }
  .product-filter .filter-bar .filter-trigger {
    margin: 0.625rem 0;
  }
  .product-filter .filter-content .foot {
    flex-wrap: wrap;
  }
  .product-filter .filter-content .range-slider-wrapper {
    padding: 0 0.625rem;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 3.75rem;
  }
  .contact-us .btn-set .inner {
    justify-content: flex-start;
    padding-top: 1.875rem;
  }
  form.form-search.active .cell {
    max-width: 130px;
  }
  .teaser .teaser-logo-float {
    position: static;
    float: right;
    margin-left: 40px;
    width: 80px;
    height: 80px;
    margin-top: 0;
  }
}
/*========================= Viewport width 575px and lower =========================*/
@media screen and (max-width: 575px) {
  html {
    font-size: 13px;
  }
  .header {
    /*
    .secondary-nav {
      height: auto;
    }

    &.search-opened {
      .h_1 {
        @include rem(margin-bottom, 90px);
      }

      ul {
        li {
          &.li-search {
            display: flex;
            animation: rotateMenu 400ms ease-in-out forwards;
            transform-origin: top center;
          }
        }
      }

      .dropdown-search {
        display: none;

        &.active {
          display: block;
        }
      }
    }
    */
  }
  .dropdown-search {
    display: none;
  }
  .dropdown-search.active {
    display: none;
  }
  .block {
    padding: 2.5rem 0;
  }
  .block.alpha {
    padding-top: 0;
  }
  .block.omega {
    padding-bottom: 0;
  }
  .posts .item .desc {
    margin: 0 0 0.625rem 0;
  }
  .secondary-nav {
    height: auto;
  }
  .secondary-nav ul li {
    /*
    &.li-search {
      display: none;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      @include rem(top, 100px);
      @include rem(height, 90px);
      //display: flex;
      align-items: center;
      padding-left: 15px;
      padding-right: 15px;
      background: #fff;
      overflow: hidden;

      &:after {
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        left: -100%;
        width: 300%;
        height: 100%;
        background: #fff;
      }
    }
    */
  }
  .secondary-nav ul li .txt {
    display: none;
  }
  .secondary-nav ul li.li-search-trig {
    display: block;
  }
  .product-slider .slider {
    margin: 0 -0.3125rem;
  }
  .product-slider .item {
    padding: 0 0.3125rem;
  }
  .slider-nav ol {
    margin: 0 -0.3125rem;
  }
  .slider-nav ol li {
    padding: 0 0.3125rem;
  }
  .cta h2 {
    max-width: 320px;
  }
  .cta .phone {
    font-size: 2.375rem;
  }
  .contact .contact-list ul li {
    font-size: 1.75rem;
  }
  .category-filter {
    flex-direction: column;
  }
  .category-filter .category-filter-item {
    display: block;
  }
  .categories .item {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .footer .f_1 {
    padding: 2.5rem 0;
  }
  .contact-us .box {
    padding: 1.875rem;
  }
  .gallery .item-list {
    margin-left: -5px;
    margin-right: -5px;
  }
  .gallery .item {
    padding-left: 5px;
    padding-right: 5px;
  }
  .products .item-list {
    margin-left: -5px;
    margin-right: -5px;
  }
  .products .item {
    padding-left: 5px;
    padding-right: 5px;
  }
  .product-detail .text .price .more-info {
    font-size: 12px;
  }
  .product-nav ul li a {
    font-size: 1.25rem;
  }
  .product-nav ul ul li a {
    font-size: 1.125rem;
  }
  .icon-list .item .img {
    width: 10rem;
    height: 10rem;
  }
  form.form-search {
    width: 100%;
  }
  form.form-search .cell {
    max-width: 100% !important;
    width: 100% !important;
  }
  form.form-search input.text {
    border: 2px solid #ddddde;
  }
}
/*# sourceMappingURL=styles.css.map */
