/* ! Base */
::-moz-placeholder {
  color: rgba(34,34,34,0.4);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(34,34,34,0.4);
}
::-webkit-input-placeholder {
  color: rgba(34,34,34,0.4);
}
body {
  overflow-x: hidden;
}
body.no-scroll {
  overflow-y: hidden;
}
body {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-color);
  font-family: 'Montserrat', sans-serif;
}
body:after {
  content: '';
  opacity: 0;
  display: block;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 510;
  background-color: rgb(0,0,0);
  transition: opacity 0.2s ease-in, visibility 0.05s ease 0.2s;
}
body.overlay:after {
  opacity: 0.6;
  visibility: visible;
  transition: opacity 0.2s ease-out 0.05s, visibility 0.05s ease 0s;
}
h1, .h1 {
  font-size: 32px;
  line-height: 1.1;
}
h2, .h2 {
  font-size: 28px;
  line-height: 1.15;
}
h3, .h3 {
  font-size: 24px;
  line-height: 1.25;
}
h4, .h4 {
  font-size: 20px;
  line-height: 1.275;
}
h5, .h5 {
  font-size: 18px;
  line-height: 1.375;
}
h6, .h6 {
  font-size: 14px;
  line-height: 1.5;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 700;
}
p, ul, ol {
}
a {
  color: var(--text-color);
}
a:hover {
  color: var(--text-light-color);
}
a, a:hover, a:focus {
  text-decoration: none;
}
@media (hover: hover) {
  a {
    transition: color 0.2s ease, opacity 0.2s ease;
  }
  a[href^="tel:"] {
    cursor: text;
    pointer-events: none;
  }
}
a, button, input[type="submit"] {
  outline: 0 !important;
}
b, strong {
  font-weight: 700;
}
ol, ul {
  padding-left: 1.4rem;
}
ol.alpha-list {
  list-style-type: lower-alpha;
}
hr {
  border: 0;
  margin: 1.6rem 0;
  border-top: 1px solid var(--border-color);
}
input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]),
select, textarea {
  border: none;
  color: inherit;
  padding: 0.5rem 1rem;
  background-color: var(--white-color);
  border-bottom: 2px solid var(--border-color);
  transition: border-bottom-color 0.15s ease;
}
input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]):focus,
select:focus, textarea:focus {
  outline: 0;
  border-bottom-color: var(--primary-color);
}
input[disabled]:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]),
select[disabled], textarea[disabled] {
  background-color: var(--light-color);
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}
input[type=search]::-ms-clear,
input[type=search]::-ms-reveal {
  width: 0;
  height: 0;
  display: none;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

/* ! Classes */
.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.clearfix:before,
.clearfix:after {
  content: ' ';
  display: table;
}
.clearfix:after {
  clear: both;
}
.row--flat {
  margin-left: 0;
  margin-right: 0;
}
.row--vend {
  align-items: flex-end;
}
.row--vcenter {
  align-items: center;
}
.row--hcenter {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.hidden {
  display: none;
  visibility: hidden;
}
.icon {
  width: 24px;
  height: 24px;
  font-size: inherit;
  font-style: normal;
  fill: currentColor;
  text-rendering: auto;
  display: inline-block;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-facebook {
  margin-right: -4px;
  margin-left: -2px;
}
.icon-down {
  margin-top: -2px;
  margin-right: -4px;
}
.flat-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}
.table td,
.table th {
  text-align: center;
  vertical-align: middle;
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--border-color);
}
.table thead th {
  vertical-align: bottom;
  background-color: var(--border-color);
}
.site-logo {
  max-width: 250px;
  font-size: inherit;
}
.site-logo--mobile {
  max-width: 243px
}
.site-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 73px;
}
.site-logo--mobile img {
  max-height: 27px;
}
.site-title {
  font-size: 1rem;
}
[class^="site-"] {
  margin: 0;
  line-height: 1;
}
[class^="site-"] a,
[class^="site-"] a:hover,
[class^="site-"] a:focus {
  text-decoration: none;
}
.not-found {
  text-align: center;
}
.not-found__text {
  color: var(--primary-color-dark);
  font-size: 132px;
  margin-bottom: 1rem;
}
.not-found__desc p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.section {
  padding: 3rem 0;
}
.section--gray {
  background-color: var(--light-color);
}
.section--primary {
  background-color: var(--primary-color);
}
.section--dealers {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.section--dealers.loading {
  opacity: 0.5;
}
.alignfull,
.section--full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
@media (hover: hover) {
  /* WARNING: depends on scrollbar */
  .alignfull,
  .section--full {
    width: calc(100vw - 15px);
    margin-left: calc(-50vw + 50% + 7.5px);
  }
}
.section__title {
  font-weight: 800;
  margin-bottom: 2.4rem;
  text-align: center;
  text-transform: uppercase;
}
.section__title small {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6333rem;
  color: var(--primary-color);
}
.section--primary .section__title small {
  color: var(--white-color);
}
.section__title--wimage {
  line-height: 1;
  font-size: 1rem;
  margin-bottom: 3.8rem;
}
.section__title--wimage img {
  width: auto;
  height: auto;
  max-width: 320px;
  max-height: 120px;
}
.product-image img,
.section--incipit img {
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 2px;
  box-shadow: 8px 8px 18px rgba(34,34,34,0.25);
}
.product-incipit p + h2,
.product-incipit p + h3,
.product-incipit p + h4,
.section--incipit p + h2,
.section--incipit p + h3,
.section--incipit p + h4 {
  margin-top: 3rem;
}
.download-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.download-filters > * {
  flex: 0 0 100%;
}
.products-list > .row:not(:first-child),
.section--dealers .download-filters + .row,
.section--dealers .download-filters + p {
  margin-top: 3rem;
}
.dealer-continents {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 -0.5rem;
  /* justify-content: center; */
}
.dealer-continents > li {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
}
.dealer-continents > li > a {
  height: 100%;
  display: block;
  padding: 0.8rem;
  border-radius: 3px;
  text-align: center;
  background-color: var(--border-color);
  box-shadow: 4px 4px 8px rgba(34,34,34,0);
  transition: box-shadow 0.2s ease;
}
.dealer-continents > li > a,
.dealer-continents > li > a:hover,
.dealer-continents > li > a:focus {
  color: inherit;
  text-decoration: none;
}
.dealer-continents > li.active > a,
.dealer-continents > li > a:hover {
  box-shadow: 8px 8px 18px rgba(34,34,34,0.2);
}
.dealer-continents > li > a img {
  width: 170px;
  height: 145px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1);
  transition: filter 0.2s ease;
}
/* .dealer-continents > li > a:hover img {
  filter: grayscale(0.87);
} */
.dealer-continents > li > a:hover img,
.dealer-continents > li.active > a img {
  filter: grayscale(0);
}
.dealer-continents > li > a h6 {
  margin: 1rem 0 0;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  height: 16px;
  line-height: 1.2;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* ! Buttons */
.btn {
  padding: 0;
  position: relative;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  display: inline-block;
  font-size: inherit;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  background-image: none;
  background-color: transparent;
  letter-spacing: 0.025em;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn,
.btn:hover,
.btn:focus {
  text-decoration: none;
}
.btn.disabled,
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn[class*="btn-"]:not(.btn-search):not(.btn-more) {
  min-width: 190px;
  border-radius: 3px;
  padding: 1rem 2.4rem;
}
.btn:not([class*="btn-"]) .icon {
  fill: var(--primary-color);
}
.btn-primary {
  color: var(--white-color);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.btn-primary:hover {
  color: var(--white-color);
  border-color: var(--primary-light-color);
  background-color: var(--primary-light-color);
}
.btn-primary:active:focus {
  color: var(--light-color);
  border-color: var(--primary-dark-color);
  background-color: var(--primary-dark-color);
}
.btn-outline {
  color: var(--alt-color);
  border-color: var(--alt-color);
}
.btn-outline:hover {
  color: var(--white-color);
  border-color: var(--alt-color);
  background-color: var(--alt-color);
}
.btn-outline:active:focus {
  color: var(--light-color);
  border-color: var(--alt-dark-color);
  background-color: var(--alt-dark-color);
}
.btn-outline--light {
  color: var(--white-color);
  border-color: var(--white-color);
}
.btn-outline--light:hover {
  color: var(--secondary-color);
  border-color: var(--white-color);
  background-color: var(--white-color);
}
.btn-outline--light:active:focus {
  color: var(--alt-color);
  border-color: var(--light-color);
  background-color: var(--light-color);
}
.btn-outline[data-download],
.btn-outline--light[data-download] {
  padding-left: 20px !important;
  padding-right: 73px !important;
}
.btn-outline[data-download] span:after,
.btn-outline--light[data-download] span:after {
  content: '';
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 53px;
}
.btn-outline[data-download] span:after {
  background-color: rgba(56,59,64,0.4);
}
.btn-outline--light[data-download] span:after {
  background-color: rgba(255,255,255,0.4);
}
.btn-outline[data-download] .icon,
.btn-outline--light[data-download] .icon {
  position: absolute;
  right: 13px;
}
.btn-default:not(.has-background) {
  background-color: var(--alt-color);
}
.btn-default.has-background {
  transition: filter 0.2s ease;
}
.btn-default.has-background:hover {
  filter: saturate(112%);
}
.btn-default.has-background:active:focus {
  filter: saturate(86%);
}
.btn-search {
  color: var(--text-color);
  min-width: inherit;
}
.btn-more .icon {
  width: 18px;
  height: 18px;
  transform: rotate(90deg);
  transition: transform 250ms linear;
}
.btn-more  span {
  margin-left: 0.5rem;
}
.btn-more--open .icon {
  transform: rotate(-90deg);
}
.btn-reset {
  display: none;
  font-weight: 500;
  font-size: 0.933rem;
  min-width: 100px !important;
  border-radius: 20px !important;
  padding: 0.25rem 1.2rem !important;
  color: var(--alt-color);
  border-color: var(--light-color);
  background-color: var(--light-color);
}
.btn-reset .icon {
  width: 14px;
  height: 14px;
}
.btn-container {
  margin-top: 2rem;
}
.btn-container[data-group] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-container[data-group] > .btn + .btn {
  margin-left: 1rem;
}

/* ! Header */
.header__top {
  padding: 1rem 0;
  background-color: var(--white-color);
}
.header__top .col-6 > * + * {
  margin-left: 0.5rem;
}
.header__top .col-6:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-title {
  color: var(--white-color);
  display: flex;
  align-items: flex-start;
  padding: 2rem 0;
  position: relative;
  height: clamp(175px, 22vw, 300px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-color: rgba(57,67,76,0.72);
  background-image: url('../img/header-pattern.png');
}
.header__main {
  min-height: 56px;
  background-color: var(--secondary-color);
}
.header-title > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  z-index: 10;
}
.header-title > .container {
  position: relative;
  z-index: 20;
}
.header-title h1,
.header-title .h1 {
  margin: 0;
  text-transform: uppercase;
}
.header-title h1 > span,
.header-title .h1 > span {
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  max-height: 110px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: none;
}
.header-title h1 small,
.header-title .h1 small {
  display: block;
  font-size: 1rem;
  margin-top: 1rem;
  color: var(--primary-color);
}

/* ! Footer */
.footer__top {
  padding: 3.6rem 0;
  background-color: var(--alt-dark-color);
}
.footer__top a,
.footer__top a:hover,
.footer__top a:focus {
  color: inherit;
}
.footer__top a:hover {
  opacity: 0.7;
}
.footer__top [class^="col-"]:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
}
.footer__bottom {
  font-size: 0.9333rem;
  padding: 1.3333rem 0;
  border-top: 1px solid var(--alt-color);
}
.footer__bottom p {
  margin: 0;
}
.footer__bottom ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer__bottom ul > li + li {
  margin-left: 1.2rem;
}
.footer__bottom ul > li + li:before {
  content: '|';
  display: inline;
  position: relative;
  left: -0.6333rem;
  line-height: 1;
}
.footer__bottom a {
  text-transform: uppercase;
  color: var(--primary-color);
}
.footer__bottom a:hover {
  color: var(--primary-light-color);
}
.footer-logo {
  margin: 0 0 2rem;
}
.footer-logo hr {
  margin-bottom: 0;
  max-width: 170px;
  border-color: #384047;
  margin-left: auto;
  margin-right: auto;
}
.footer-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.footer-logo__social {
  margin-top: 2rem;
}
.footer-logo__social [role="list"] {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--alt-dark-color);
}
.footer-logo__social a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 24px;
  border-radius: 15px;
  background-color: var(--white-color);
}
.footer-logo__social a + a {
  margin-left: 1.4rem;
}
.footer-logo__social .icon {
  width: 20px;
  height: 20px;
}
.footer-logo__social .icon-facebook {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: -4px;
}
.footer-logo__social .icon-instagram {
  margin-bottom: -2px;
}
.footer-contacts {
  margin: 0;
  /* padding: 2rem;
  background-color: var(--alt-color); */
}
.footer-contacts dl {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  /* align-items: flex-end; */
  align-items: flex-start;
}
.footer-contacts dl .icon {
  margin-top: -4px;
  vertical-align: text-top;
  fill: var(--primary-color);
}
.footer-contacts dl + dl {
  margin-top: 1rem;
}
.footer-contacts dt,
.footer-contacts dd {
  margin: 0;
  line-height: 1;
  /* flex: 0 0 auto; */
}
.footer-contacts span[aria-hidden="true"] {
  display: block;
  height: 1px;
  flex: 1 0 auto;
  margin-left: 2px;
  margin-right: 2px;
  border-bottom: 1px dotted var(--primary-color);
}
.footer-contacts dt {
  flex: 0 0 36px;
}
.footer-contacts__address dd {
  /* max-width: 156px; */
  flex: 0 0 calc(100% - 36px);
}

/* ! Navbar: Menu */
.navbar {
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar ul {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  list-style: none;
}
.navbar ul a,
.navbar ul a:hover,
.navbar ul a:focus {
  display: block;
  text-decoration: none;
}
.navbar ul .caret,
.navbar ul .icon {
  float: right;
  width: 14px;
  height: 14px;
}
.navbar ul .menu-item-wicon {
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 14px);
}
.navbar ul .menu-item-wicon > img {
  flex: 0 0 24px;
}
.navbar ul .menu-item-wicon > span {
  flex: 0 0 calc(100% - 30px);
}
.navbar ul .menu-icon {
  width: 24px;
  height: 24px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  object-position: center;
}
.navbar,
.navbar__nav,
.navbar .sub-menu {
  background-color: var(--secondary-color);
}
.navbar__nav {
  flex: 1 0 0;
}
.navbar__nav > li {
  font-weight: 600;
  text-transform: uppercase;
}
.navbar__nav > li > a,
.navbar .sub-menu > li > a {
  padding: 0.667rem 0.8rem;
}
.navbar__nav > li > a {
  display: block;
  color: var(--white-color);
}
.navbar__nav > li > a:hover,
.navbar__nav > li > a:focus,
.navbar__nav > li[class*="current-"]:not(.wpml-ls-item) > a {
  color: var(--primary-color);
}
.navbar .sub-menu > li {
  font-weight: inherit;
  text-transform: none;
}
.navbar .sub-menu > li + li {
  border-top: 1px solid rgba(170,170,170,0.4);
}
.navbar .sub-menu > li > a,
.navbar .sub-menu__panel {
  color: var(--white-color);
  background-color: transparent;
}
.navbar .sub-menu__panel:hover,
.navbar .sub-menu > li > a:hover,
.navbar .sub-menu > li > a:focus,
.navbar .sub-menu > li[class*="current-"] > a {
  color: var(--primary-color);
}
.navbar .sub-menu__panel {
  display: block;
  padding: 0.667rem 0;
  font-weight: inherit;
  text-transform: uppercase;
  color: var(--primary-color);
  border-bottom: 2px solid rgba(170,170,170,0.4);
}
.navbar .sub-menu__panel .icon,
.navbar .sub-menu__panel .caret {
  float: none;
  color: inherit;
}
@media (hover: hover) {
  .navbar__nav > li > a,
  .navbar .sub-menu__panel {
    transition: color 0.2s ease;
  }
  .navbar .sub-menu > li > a {
    transition: background-color 0.2s ease, color 0.2s ease;
  }
}

/* ! Navbar: Buttons */
.navbar__logo {
  display: inline-block;
}
.navbar__logo > * {
  margin: 0;
  font-size: 1rem;
  line-height: 1;
}
.navbar__toggle,
.navbar__search {
  padding: 0;
  display: block;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  background-image: none;
  background-color: transparent;
  border: 1px solid transparent;
}
.navbar__toggle {
  position: relative;
  z-index: 100;
}
.navbar__toggle .icon-bar {
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--white-color);
}
.navbar__toggle .icon-bar + .icon-bar {
  margin-top: 5px;
}
.navbar__toggle .icon-bar:nth-of-type(2),
.navbar__toggle .icon-bar:nth-of-type(4) {
  transform: rotate(0);
  transition: transform 0.2s ease 0.175s;
}
.navbar__toggle .icon-bar:nth-of-type(2) {
  transform-origin: 10% 10%;
}
.navbar__toggle .icon-bar:nth-of-type(3) {
  opacity: 1;
  transition: opacity 0.2s ease 0.175s;
}
.navbar__toggle .icon-bar:nth-of-type(4) {
  transform-origin: 10% 90%;
}
.navbar__toggle--dismiss .icon-bar:nth-of-type(2) {
  transform: rotate(45deg);
}
.navbar__toggle--dismiss .icon-bar:nth-of-type(3) {
  opacity: 0;
}
.navbar__toggle--dismiss .icon-bar:nth-of-type(4) {
  transform: rotate(-45deg);
}

/* ! Language */
.lang-menu {
  font-weight: 500;
  font-size: 0.9333rem;
  position: relative;
  display: inline-block;
  padding: 1px 0.667rem;
  text-align: center;
  z-index: 200;
}
.lang-menu > span[role="button"] {
  cursor: pointer;
  touch-action: manipulation;
  background-color: var(--white-color);
}
.lang-menu > span[role="button"]:after {
  content: '';
  width: 10px;
  height: 10px;
  margin-left: 4px;
  display: inline-block;
  vertical-align: baseline;
  background-image: url('../img/list-chevron.svg');
  background-position: center;
  background-size: 10px auto;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}
.lang-menu--open > span[role="button"]:after {
  transform: rotate(-90deg);
}
.lang-menu__dropdown {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  text-align: left;
  padding: 1.8rem 0 0.667rem;
  background-color: var(--white-color);
  box-shadow: 0 0 0px rgba(34,34,34,0);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  position: absolute;
  top: -2.5px;
  left: -2.5px;
  right: -2.5px;
  z-index: -1;
}
.lang-menu--open .lang-menu__dropdown {
  box-shadow: 0 0 6px rgba(34,34,34,0.15);
}
.lang-menu__dropdown > li {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.lang-menu__dropdown > li + li {
  margin-top: 2.5px;
}
.lang-menu__dropdown > li > a {
  color: inherit;
  transition: color 0.2s ease;
}
.lang-menu__dropdown > li > a:hover {
  color: var(--primary-color);
}
.lang-menu__dropdown > li > a,
.lang-menu__dropdown > li > a:hover,
.lang-menu__dropdown > li > a:focus {
  text-decoration: none;
}

/* ! Search form */
.search-form {
  position: relative;
}
.search-form__group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.search-form__group .btn {
  margin-left: -1px;
  position: static;
}
.search-form input[name="s"] {
  font-weight: 500;
}
[class^="header__"] .search-form input[name="s"] {
  width: clamp(180px, 29.995vw, 380px);
}
[class^="header__"] .search-form input[name="s"]:focus {
  border-bottom-color: var(--text-color) !important;
}
[class^="header__"] .search-form .btn {
  padding: 0.333rem 0.5rem;
  background-color: transparent;
}
.navbar .search-form {
  position: initial;
  margin-top: 0.8rem;
}
.navbar .search-form .icon-search {
  float: none;
  color: inherit;
  width: 24px;
  height: 24px;
}
.navbar .search-form .btn,
.navbar .search-form input[name="s"] {
  color: var(--white-color) !important;
}
.navbar .search-form input[name="s"] {
  width: calc(100% - 40px);
  background-color: transparent !important;
  border-bottom-width: 1px !important;
  border-bottom-color: rgba(170,170,170,0.4) !important;
}
.navbar .search-form input[name="s"]:focus {
  border-bottom-color: var(--white-color) !important;
}
.navbar .search-form ::-moz-placeholder {
  color: rgba(234,234,234,0.4);
  opacity: 1;
}
.navbar .search-form :-ms-input-placeholder {
  color: rgba(234,234,234,0.4);
}
.navbar .search-form ::-webkit-input-placeholder {
  color: rgba(234,234,234,0.4);
}

/* ! Breadcrumb */
.breadcrumb {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  justify-content: flex-end;
  color: var(--primary-color);
}
.mobile-breadcrumb .breadcrumb {
  justify-content: flex-start;
}
.breadcrumb a,
.breadcrumb a:hover,
.breadcrumb a:focus {
  color: var(--white-color);
}
.mobile-breadcrumb .breadcrumb a,
.mobile-breadcrumb .breadcrumb a:hover,
.mobile-breadcrumb .breadcrumb a:focus {
  color: var(--text-light-color);
}
.breadcrumb a:hover {
  opacity: 0.7;
}
.breadcrumb__item,
.breadcrumb__item:before {
  display: inline-block;
  vertical-align: middle;
}
.breadcrumb__item + .breadcrumb__item {
  padding-left: 0.333rem;
}
.breadcrumb__item [aria-current="page"] {
  color: inherit;
  display: inline-block;
}
.mobile-breadcrumb {
  max-width: 540px;
  padding: 3rem 15px 0;
  margin-left: auto;
  margin-right: auto;
}

/* ! Pagination */
.pagination {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
}
.posts-list__row + .pagination {
  margin-top: 3.6rem;
}
.page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
}
.page-numbers > li {
  width: 44px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}
.page-numbers > li + li {
  margin-left: 1rem;
}
.page-numbers > li > * {
  display: block;
  padding: 0 2px;
  font-size: 1rem;
  line-height: 42px;
  border-radius: 22px;
}
.page-numbers > li > a:not(.prev):not(.next) {
  border: 1px solid var(--text-color);
}
.page-numbers > li > a,
.page-numbers > li > a:hover,
.page-numbers > li > a:focus {
  color: var(--text-color);
  text-decoration: none;
}
.page-numbers > li > a .icon {
  width: 18px;
  height: 18px;
  margin-top: -3px;
}
.page-numbers > li > a.prev,
.page-numbers > li > a.next {
  position: relative;
}
.page-numbers > li > a.prev {
  right: -1rem;
}
.page-numbers > li > a.next {
  left: -1rem;
}
@media (hover: hover) {
  .page-numbers > li > a {
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .page-numbers > li > a:hover {
    color: var(--text-light-color);
  }
  .page-numbers > li > a:hover:not(.prev):not(.next) {
    border-color: var(--text-light-color);
  }
}
.page-numbers > li > .current {
  color: var(--white-color);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

/* ! Embeds */
.embed-responsive {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.embed-responsive--4by3 {
  padding-bottom: 75%;
}
.embed-responsive--16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive--21by9 {
  padding-bottom: 42.85%;
}
.embed-responsive--map {
  padding-bottom: clamp(360px, 75%, 460px);
  background-color: var(--light-color);
}
.embed-responsive__item,
.embed-responsive iframe,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ! Widgets */
.widget,
.fwidget {
  position: relative;
}
.widget + .widget {
  margin-top: 2.4rem;
}
.widget-title {
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 0.8rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
}
[class*="widget_"] ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
[class*="widget_"] ul li {
  padding-left: 2rem;
  text-indent: -1rem;
}
[class*="widget_"] ul li:before {
  content: '\25b6';
  position: relative;
  left: -0.6rem;
  font-size: 0.6em;
  color: var(--primary-color);
}
[class*="widget_"] ul li + li {
  margin-top: 0.5rem;
}
.widget[class*="widget_"] ul li a {
  color: var(--primary-color);
}
.widget[class*="widget_"] ul li a:hover,
.widget[class*="widget_"] ul li a:focus {
  color: var(--primary-light-color);
}
.widget .search-form input[name="s"] {
  height: 38px;
}
.fwidget {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 2rem;
}
.fwidget-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.275;
  margin-bottom: 20px;
}
.fwidget img {
  margin-bottom: 1.4rem;
}

/* ! Rich Text */
img[class*="align"] {
  margin-bottom: 15px;
}
img.alignleft {
  float: left;
  margin-right: 15px;
}
img.alignright {
  float: right;
  margin-left: 15px;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ! Blog */
.posts-list {
  margin-bottom: 2rem;
  transition: opacity 0.2s ease;
}
.posts-list--loading {
  opacity: 0.7;
  pointer-events: none;
}
.posts-list h2 {
  font-weight: 800;
  text-transform: uppercase;
}
.posts-list h2 small {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6333rem;
  color: var(--primary-color);
}
.posts-list__carousel:not(.tns-slider) {
  max-height: 563px;
  visibility: hidden;
}
.row > .posts-list__item {
  margin-bottom: 2rem;
}
.posts-list__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.posts-list__row + .posts-list__row {
  margin-top: 2.6rem;
}
.posts-list__row figure {
  margin: 0;
}
.posts-list__row hr {
  max-width: 520px;
}
.posts-list__filters {
  font-size: 1.0667rem;
  margin-bottom: 2rem;
}
.posts-list__filters,
.posts-list__filters ul {
  display: flex;
  align-items: center;
}
.posts-list__filters ul {
  text-transform: uppercase;
}
.posts-list__filters ul li {
  position: relative;
  line-height: 1;
  font-weight: 700;
}
.posts-list__filters ul li + li {
  margin-left: 1rem;
}
.posts-list__filters ul li:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 2px;
  margin: 0 auto;
  background-color: var(--light-color);
  transition: width 0.2s ease, background-color 0.2s ease;
}
.posts-list__filters ul li:hover:after,
.posts-list__filters ul li.active:after {
  width: 100%;
}
.posts-list__filters ul li:hover:after {
  background-color: var(--text-light-color);
}
.posts-list__filters ul li.active:after {
  background-color: var(--primary-color);
}
.posts-list__filters ul li a {
  display: inline-block;
  padding: 0.6333rem 0;
}
.posts-list__filters ul li.active a {
  color: var(--primary-color);
  pointer-events: none;
}
.posts-list__filters .btn-reset {
  margin-left: 1rem;
}
.entry {
  background-color: var(--white-color);
}
.entry--vimage {
  overflow: hidden;
  border-radius: 3px;
}
.entry__thumb {
  display: block;
  overflow: hidden;
  border-radius: 2px;
}
.entry--vimage .entry__thumb img {
  object-fit: cover;
  object-position: center;
}
.posts-list__item .entry__thumb {
  border-bottom: 6px solid var(--primary-color);
}
.entry__thumb,
.entry__thumb:hover,
.entry__thumb:focus {
  color: inherit;
  text-decoration: none;
}
.entry__thumb img {
  width: 100%;
  height: auto;
}
.entry-brand .entry__thumb {
  background-color: var(--light-color);
}
.entry-brand .entry__thumb img {
  min-height: 330px;
  object-fit: none;
  object-position: center;
}
.posts-list__item .entry__body,
.section__posts__item .entry__body {
  padding: 1.6rem;
}
.posts-list__item .entry__body h4,
.posts-list__item .entry__body p,
.section__posts__item .entry__body h5,
.section__posts__item .entry__body p {
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.posts-list__item .entry__body h4,
.section__posts__item .entry__body h5 {
  height: 48px;
  -webkit-line-clamp: 2;
}
.posts-list__item .entry__body p,
.section__posts__item .entry__body p {
  height: 66px;
  -webkit-line-clamp: 3;
}
.entry__content {
  position: relative;
  max-height: 66px;
  overflow: hidden;
  transition: max-height 250ms linear;
}
.entry__content:not([class*="--open"]) {
  mask-image: -webkit-linear-gradient(to bottom, transparent, black 0px, black 60%, transparent);
  mask-image: -moz-linear-gradient(to bottom, transparent, black 0px, black 60%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 0px, black 60%, transparent);
  -webkit-mask-image: -webkit-linear-gradient(to bottom, transparent, black 0px, black 60%, transparent);
  -webkit-mask-image: -moz-linear-gradient(to bottom, transparent, black 0px, black 60%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 0px, black 60%, transparent);
}
.post__meta,
.entry__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post__meta,
.entry__meta {
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}
.entry__meta a,
.post__meta a,
.entry__meta a:hover,
.post__meta a:hover,
.entry__meta a:focus,
.post__meta a:focus {
  color: inherit;
}
.post__meta em,
.entry__meta em {
  font-style: normal;
}
.post__meta time > span,
.entry__meta time > span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.2667rem;
}
.posts-list__row .entry__meta {
  justify-content: flex-start;
}
.posts-list__row .entry__meta > * + * {
  margin-left: 5%;
}
.entry .btn > .icon {
  width: 16px;
  height: 16px;
}
@media (hover: hover) {
  .entry {
    transform: translateY(0px);
    box-shadow: 4px 4px 8px rgba(34,34,34,0);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .entry:hover {
    transform: translateY(-8px);
    box-shadow: 8px 8px 16px rgba(34,34,34,0.2);
  }
}
.hentry {
  margin-bottom: 4rem;
}
.hentry h1,
.hentry h2,
.hentry h3,
.hentry h4,
.hentry h5,
.hentry h6 {
  margin-bottom: 1.4rem;
}
.hentry p,
.hentry ul,
.hentry ol {
  margin-bottom: 1.4rem;
}
.post__image,
.post__meta {
  margin-bottom: 2.133rem;
}
.post__image img {
  width: auto;
  height: auto;
  max-width: 100%;
}

/* ! Cards */
.card {
  display: block;
  overflow: hidden;
  position: relative;
  background-color: var(--light-color);
}
.card-wrapper {
  margin-bottom: 3rem;
}
[class^="col-"] .card:not(.card--wimage),
[class^="col-"] .card__content {
  height: 100%;
}
a.card,
a.card:hover,
a.card:focus {
  color: inherit;
}
.card--slideshow,
.card--wimage:not(.card--product):not(.card--download) {
  border-radius: 3px;
}
.card--slideshow {
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--white-color);
}
.card--slideshow .thumb {
  width: 82px;
  height: 82px;
  object-fit: contain;
  object-position: center;
}
.card--brand,
.card--product,
.card[data-style="dark"] {
  color: var(--white-color);
}
.card--brand,
.card--product .card__content,
.card:not(.card--download)[data-style="dark"],
.card--download[data-style="dark"] .card__content {
  background-color: var(--secondary-color);
}
.card--bordered {
  border-bottom: 6px solid var(--primary-color);
}
.card--brand {
  border: 1px solid var(--secondary-light-color);
}
.card--product {
  overflow: inherit;
  padding: 30px 0.8rem 0.8rem;
  background-color: transparent;
  border: 2px solid var(--text-light-color);
}
.card--product > * + *,
.card--download > * + * {
  margin-top: 0.5rem;
}
.card__image {
  margin: 0;
  position: inherit;
  padding-bottom: clamp(220px, 97%, 380px);
}
.card__image--noclamp {
  padding-bottom: initial;
}
.card--brand .card__image {
  padding-bottom: clamp(220px, 140%, 350px);
}
.card--download .card__image {
  padding-bottom: clamp(180px, 50%, 240px);
}
.products-list .card__image {
  padding-bottom: clamp(220px, 70%, 380px);
}
.section--best-seller .card__image {
  padding-bottom: clamp(220px, 120%, 380px);
}
@supports not (padding-bottom: clamp(220px, 97%, 380px)) {
  .card__image {
    min-height: 220px;
    max-height: 380px;
    height: calc(100vw - 3rem);
    padding-bottom: initial;
  }
  .card--brand .card__image {
    max-height: 350px;
  }
  .card--download .card__image {
    min-height: 180px;
    max-height: 240px;
  }
}
.card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.card__image--noclamp img {
  position: static;
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: none;
}
.card__content {
  margin: 0;
  padding: 1.4rem 1rem;
}
.card--product .card__content,
.card--download .card__content {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.card__content h3 strong,
.card__content h4 strong {
  font-weight: 800;
}
.card__content h6:not(.h5),
.card__content .h6 {
  color: var(--primary-color);
  text-transform: uppercase;
}
.card__content hr {
  margin: 1rem 0;
}
.card--brand .card__content {
  text-align: center;
}
.card--slideshow .card__content h4,
.card--brand .card__content h4 {
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.card--slideshow .card__content h4 {
  margin: 0;
  height: 76px;
  -webkit-line-clamp: 3;
}
.card--brand .card__content h4 {
  height: 52px;
  -webkit-line-clamp: 2;
}
.card--product .card__content,
.card--download .card__content {
  display: flex;
  align-items: center;
  position: relative;
}
.card--product .card__content > *,
.card--download .card__content > * {
  margin: 0;
  flex: 0 0 50%;
  max-width: 50%;
}
.card--product .card__content > *:nth-child(even),
.card--download .card__content > *:nth-child(even) {
  text-align: right;
}
.card--product .btn-container {
  position: relative;
}
.card--product .btn-container:before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.4);
}
.card--slideshow .card__content figcaption {
  margin-top: 1.8rem;
}
.card__address {
  margin: 2rem 0 0;
}
.card__address dl {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  /* align-items: flex-end; */
  align-items: flex-start;
}
.card__address dl .icon {
  margin-top: -4px;
  vertical-align: text-top;
}
.card__address dl + dl {
  margin-top: 1rem;
}
.card__address dt,
.card__address dd {
  margin: 0;
  line-height: 1;
  /* flex: 0 0 auto; */
}
.card__address dt {
  flex: 0 0 36px;
}
.card__address dd {
  /* max-width: 53%;
  text-align: right; */
  flex: 0 0 calc(100% - 36px);
}
.card__address span[aria-hidden="true"] {
  display: block;
  height: 1px;
  flex: 1 0 auto;
  margin-left: 2px;
  margin-right: 2px;
  border-bottom: 1px dotted var(--text-color);
}
.card__address span[role="listitem"] {
  display: block;
}
.card__label {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  padding: 1rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background-color: var(--light-color);
}
.card__label > * {
  margin: 0;
}
.card__label strong {
  font-weight: 800;
}
.card__label--bordered {
  text-transform: none;
  border-left: 6px solid var(--text-color);
}
[data-style="dark"] .card__label {
  width: 50%;
  left: 1.6rem;
  bottom: 2rem;
  min-width: 170px;
  text-align: left;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  color: var(--white-color);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: var(--secondary-color);
}
[data-style="dark"] .card__label--bordered {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  border-color: var(--primary-color);
}
.card__logos {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__logos__item {
  display: inline-block;
  vertical-align: middle;
  background-color: var(--white-color);
}
.card__logos__item + .card__logos__item {
  margin-left: 1rem;
}
.card__logos__item img {
  width: 48px;
  height: 48px;
}
@media (hover: hover) {
  a.card {
    transform: translateY(0px);
    box-shadow: 4px 4px 8px rgba(34,34,34,0);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  a.card:hover {
    transform: translateY(-8px);
    box-shadow: 8px 8px 18px rgba(34,34,34,0.25);
  }
  .card__label--hover {
    opacity: 0;
    transform: translateY(25%);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  }
  .card:hover .card__label--hover {
    opacity: 1;
    transform: translateY(0%);
  }
}

/* ! Slideshow */
.slideshow__slider {
  height: 40vw;
  max-height: 540px;
  min-height: 360px;
  color: var(--white-color);
}
.slideshow__item {
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-color: rgba(187,197,208,0.72);
  background-image: url('../img/slide-pattern.png');
}
.slideshow__item.tns-item {
  display: inline-flex !important;
}
.slideshow__item,
.slideshow .tns-outer,
.slideshow .tns-outer > .tns-inner {
  height: 100%;
}
.slideshow__item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}
.slideshow__item:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(29,50,77,0) 0%, rgba(29,50,77,0.2) 80%, rgba(29,50,77,0.4) 90%, rgba(29,50,77,0.6) 100%);
}
.slideshow__item__content {
  position: relative;
  top: -1.5rem;
  z-index: 30;
}
.slideshow__item__content .h1 {
  margin: 0;
  font-weight: 500;
}
.slideshow__item__content .h1 strong {
  font-weight: 800;
}
.slideshow__item__content .subtitle {
  line-height: 1.1;
  font-size: 1.1333rem;
}
.slideshow__item__content .payoff {
  color: var(--primary-color);
}
.slideshow__item__content > * {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated .slideshow__item__content > * {
  opacity: 1;
  transform: translateY(0px);
}
.animated .slideshow__item__content > *[data-delay] {
  transition-delay: 300ms;
}
.animated .slideshow__item__content > *[data-delay="600"] {
  transition-delay: 600ms;
}
.animated .slideshow__item__content > *[data-delay="900"] {
  transition-delay: 900ms;
}
.slideshow__slider:not(.tns-slider) .slideshow__item:nth-child(n+2) {
  display: none;
  visibility: hidden;
}
.slideshow__cards {
  margin-top: -3rem;
  position: relative;
  z-index: 40;
}

/* ! Brand grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 50%);
}
.brand-grid__item {
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.brand-grid__item,
.brand-grid__item:hover,
.brand-grid__item:focus {
  color: inherit;
}
.brand-grid__image {
  margin-bottom: 1rem;
  filter: grayscale(1) opacity(0.7);
}
.brand-grid__image img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  object-position: center;
}
.brand-grid__tags {
  text-align: center;
}
.brand-grid__tags > p {
  margin: 0 auto;
  max-width: 220px;
  line-height: 1.25;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  height: 34px; /* font-size*line-height*lines-to-show  */
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 991px) {
  .brand-grid__item:nth-child(4n-5),
  .brand-grid__item:nth-child(4n-6) {
    background-color: var(--light-color);
  }
}
@media (min-width: 992px) {
  .brand-grid {
    grid-template-columns: repeat(3, 33.333%);
  }
  .brand-grid__item {
    padding: 2.4rem;
  }
  .brand-grid__item:nth-child(even) {
    background-color: var(--light-color);
  }
  .brand-grid__image img {
    width: 230px;
    height: 100px;
  }
}
@media (min-width: 1200px) {
  .brand-grid__item {
    padding: 2.8rem;
  }
}
@media (hover: hover) and (min-width: 992px) {
  .brand-grid__item {
    position: relative;
    transition: box-shadow 0.2s ease;
    box-shadow: 4px 4px 8px rgba(34,34,34,0);
  }
  .brand-grid__tags,
  .brand-grid__image {
    transform: translateY(15px);
  }
  .brand-grid__image {
    transition: filter 0.2s ease, transform 0.2s ease;
  }
  .brand-grid__tags {
    opacity: 0;
    margin-bottom: -1rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .brand-grid__item:hover {
    z-index: 10;
    box-shadow: 8px 8px 16px rgba(34,34,34,0.2);
  }
  .brand-grid__item:hover .brand-grid__image,
  .brand-grid__item:hover .brand-grid__tags {
    transform: translateY(0px);
  }
  .brand-grid__item:hover .brand-grid__image {
    filter: grayscale(0) opacity(1);
  }
  .brand-grid__item:hover .brand-grid__tags {
    opacity: 1;
  }
}

/* ! Content */
body.blog #main-content,
body.search #main-content,
body.category #main-content,
body.single-product #main-content,
body[class*="page-press"] #main-content,
body[class*="page-event"] #main-content,
body[class*="page-products"] #main-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
body.blog #main-content,
body[class*="page-press"] #main-content,
body.category:not(.is-event-category) #main-content {
  background-color: var(--light-color);
}
body.single-post #main-content {
  padding-top: 4rem;
}
body[class*="page-brand"] .brand-logo {
  height: 25vw;
  min-height: 200px;
  max-height: 260px;
  background-color: var(--light-color);
}
body[class*="page-brand"] .brand-logo > img {
  position: relative;
  display: block;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 220px;
  max-height: 260px;
  top: 50%;
  transform: translateY(-50%);
}
body.single-product #main-content .products-list + .section,
body.single-product #main-content .product-content + .section {
  margin-top: 3rem;
}
body.single-product #main-content .products-list ~ .section:last-child,
body.single-product #main-content .product-content ~ .section:last-child {
  margin-bottom: -4rem;
}
body.single-product .container.products-list,
body.single-product .container.product-content {
  position: relative;
}
#contacts-content h6 {
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}
#contacts-content h2 {
  margin-bottom: 1.4rem;
}
#contacts-content h2 > strong {
  font-weight: 800;
}
#sidebar {
  padding: 3rem 0;
}
#sidebar.bg-gray {
  background-color: var(--light-color);
}
#footer {
  color: var(--white-color);
  /* background-color: var(--secondary-dark-color); */
  background-color: #384047;
}

/* ! Responsive */
@media (max-width: 575px) {
  .btn-container[data-group] {
    flex-direction: column;
  }
  .btn-container[data-group] > .btn + .btn {
    margin-left: 0;
    margin-top: 2rem;
  }
  .section__title--wimage img {
    max-width: 100%;
    max-height: inherit;
  }
  .dealer-continents > li > a img {
    width: 132px;
    height: 110px;
  }
  .dealer-continents > li > a h6 {
    font-size: 14px;
  }
  body.single-product .product-item + .product-item {
    margin-top: 3rem;
  }
  .section__gallery .card__label > h4,
  .card--product .card__content > h4,
  .card--download .card__content > h4 {
    font-size: 16px;
    line-height: 1.4;
  }
  .products-list .product-item + .product-item {
    margin-top: 3rem;
  }
}
@media (min-width: 576px) {
  .card__label {
    padding: 1.6rem;
  }
  .posts-list h2 + .tns-outer > .tns-nav:first-child:not([style*="none"]) {
    margin-top: -2.8rem;
  }
  body.single-product .product-item:nth-child(even),
  body[class*="page-products"] .product-item:nth-child(even) {
    margin-top: 4rem;
  }
  body.single-product .products-list ~ .section .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  /* .slideshow__item__content {
    width: 70%;
    max-width: 640px;
  } */
}
@media (max-width: 767px) {
  .download-filters > *:not(:last-child) {
    margin-bottom: 2rem;
  }
  .section--incipit [class^="col"] + [class^="col"] {
    margin-top: 2rem;
  }
  .section--download .download-list > [class^="col-"]:nth-child(n+3) {
    margin-top: 3rem;
  }
  .footer_top,
  .footer__bottom {
    text-align: center;
  }
  .footer__bottom ul {
    justify-content: center;
  }
  .footer__top [class^="col-"]:nth-child(2) {
    display: none;
    visibility: hidden;
  }
  .footer__bottom [class^="col-"] + [class^="col-"] {
    margin-top: 1.4rem;
  }
  .footer-logo img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-contacts {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  .posts-list__filters ul {
    justify-content: center;
  }
  #contacts-content {
    text-align: center;
  }
  #contacts-content .row:nth-child(2) .col-md-6 + .col-md-6 {
    margin-top: 2rem;
  }
  body[class*="page-brand"] .brand-logo {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .section,
  #sidebar {
    padding: 4rem 0;
  }
  .download-filters {
    justify-content: flex-end;
  }
  .download-filters > * {
    flex: 0 0 calc(36% - 2rem);
  }
  .download-filters > *:not(:last-child) {
    margin-right: 2rem;
  }
  .dealer-continents > li {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .header-title {
    align-items: flex-end;
  }
  body:not(.single-post) .header-title {
    padding-bottom: 5.3333rem;
  }
  .footer__bottom {
    padding: 1.8rem 0;
  }
  .footer__bottom [class^="col-"]:first-child {
    order: 1;
  }
  .footer__top .row--vcenter {
    overflow: hidden;
  }
  .footer__top [class^="col-"] + [class^="col-"]:before {
    content: '';
    display: block;
    width: 1px;
    height: 300px;
    position: absolute;
    top: -150px;
    left: 0;
    background-color: #384047;
  }
  /* .footer-logo__social [role="list"] {
    justify-content: flex-start;
  } */
  .footer-contacts {
    padding: 0 0 2rem 2rem;
  }
  .footer-logo {
    text-align: center;
  }
  [data-style="dark"] .card__label {
    min-width: 270px;
  }
  .slideshow__item__content .h1 {
    font-size: 42px;
  }
  .slideshow__item__content .subtitle {
    font-size: 1.6rem;
  }
  .slideshow__item__content .payoff {
    font-size: 18px;
  }
  #contacts-content .row {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  body.single-product #main-content .products-list + .section,
  body.single-product #main-content .product-content + .section {
    margin-top: 4rem;
  }
}
@media (max-width: 991px) {
  .header__top {
    display: none;
    visibility: hidden;
  }
  .header__main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
  }
  .navbar {
    height: 56px;
    position: relative;
  }
  .navbar ul {
    padding: 0 1rem;
  }
  .navbar ul .caret,
  .navbar ul .icon {
    color: var(--primary-color);
  }
  .navbar__nav,
  .navbar .sub-menu {
    position: fixed;
    left: 0;
    right: 0;
    visibility: hidden;
    transition: transform 0.2s ease-in, visibility 0.05s ease 0.2s;
  }
  .navbar__nav {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    top: 56px;
    height: calc(100vh - 56px);
    transform: translateX(-100%);
  }
  .navbar__nav > li.wpml-ls-item {
    order: 1;
  }
  .navbar__nav > li.menu-item-search {
    order: 2;
  }
  .navbar__nav > li + li {
    border-top: 1px solid rgba(170,170,170,0.4);
  }
  .navbar .sub-menu {
    top: 0;
    height: 100%;
    transform: translateX(100%);
  }
  .navbar__nav--offcanvas,
  .navbar li[class*="has-children"].active > .sub-menu {
    visibility: visible;
    transform: translateX(0%);
    transition: transform 0.2s ease-out 0.05s, visibility 0.05s ease 0s;
  }
  .navbar__nav > li > a > .icon-cart {
    display: none;
  }
  .navbar ul .menu-icon {
    filter: brightness(0) invert(1);
  }
  .entry--vimage .btn-container {
    text-align: center;
  }
  .entry--vimage .entry__thumb img {
    height: clamp(180px, 45vw, 360px);
  }
  .card--brand h4 {
    font-size: 18px;
    line-height: 1.4;
  }
  .card--brand .btn[class*="btn-"]:not(.btn-search):not(.btn-more),
  .card--product .btn[class*="btn-"]:not(.btn-search):not(.btn-more),
  .card--download .btn[class*="btn-"]:not(.btn-search):not(.btn-more) {
    min-width: inherit;
    padding: 12px 18px !important;
  }
  .card--brand .btn[class*="btn-"]:not(.btn-search):not(.btn-more) > span:after,
  .card--product .btn[class*="btn-"]:not(.btn-search):not(.btn-more) > span:after,
  .card--download .btn[class*="btn-"]:not(.btn-search):not(.btn-more) > span:after {
    display: none;
  }
  .card--brand .btn[class*="btn-"]:not(.btn-search):not(.btn-more) > .icon,
  .card--product .btn[class*="btn-"]:not(.btn-search):not(.btn-more) > .icon,
  .card--download .btn[class*="btn-"]:not(.btn-search):not(.btn-more) > .icon {
    position: static;
  }
  #header {
    padding-top: 56px;
  }
}
@media (min-width: 992px) {
  .download-filters > * {
    flex: 0 0 calc(25% - 2rem);
  }
  .navbar__logo {
    overflow: hidden;
    width: 0px;
    transition: width 0.2s ease;
  }
  .header--sticky .navbar__logo {
    width: 40px;
    transition-delay: 100ms
  }
  .navbar__logo .site-logo,
  .navbar__logo .site-logo img {
    max-width: inherit;
  }
  .navbar__logo .site-logo img {
    width: 200px;
  }
  .navbar__toggle {
    display: none;
  }
  .navbar,
  .navbar__nav,
  .navbar .sub-menu {
    background-color: transparent;
  }
  .navbar__nav {
    display: flex;
    align-items: stretch;
    justify-content: center;
    line-height: 26px !important;
  }
  .navbar__nav > li > a {
    padding-top: 1.066rem;
    padding-bottom: 1.066rem;
  }
  .navbar__nav > li > a > .caret,
  .navbar__nav > li > a > .icon {
    float: none;
  }
  .navbar__nav > li > a > .caret,
  .navbar__nav > li > a > .icon-right {
    margin-left: 0.5rem;
    transform: rotate(90deg);
  }
  .navbar__nav > li > a > .icon-cart {
    width: 21px;
    height: 21px;
    margin-right: 0.5rem;
  }
  .navbar .sub-menu {
    display: none;
    max-height: 320px;
    font-size: 0.9333rem;
    line-height: 1.1;
    position: absolute;
    z-index: 1040;
  }
  .navbar .sub-menu .sub-menu {
    top: -2px;
    left: 100%;
  }
  .navbar .sub-menu > li {
    width: clamp(190px, 18vw, 230px);
    background-color: var(--white-color);
  }
  .navbar .sub-menu > li:nth-child(2),
  .navbar .sub-menu > li:nth-child(8) {
    border-top: 2px solid var(--primary-color);
  }
  .navbar .sub-menu > li > a {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    background-color: transparent;
  }
  .navbar .sub-menu > li > a:hover,
  .navbar .sub-menu > li > a:focus,
  .navbar .sub-menu > li[class*="current-"] > a {
    color: var(--white-color);
    background-color: var(--primary-color);
  }
  .navbar .sub-menu__panel,
  .navbar__nav > li.wpml-ls-item,
  .navbar__nav > li.menu-item-search {
    display: none;
    visibility: hidden;
  }
  .navbar li[class*="has-children"] {
    position: relative;
  }
  .navbar li[class*="has-children"].active > .sub-menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .navbar ul .menu-icon {
    transition: filter 0.2s ease;
  }
  .navbar ul li[class*="current-"] > a > span > .menu-icon,
  .navbar ul li > a:hover > span > .menu-icon {
    filter: brightness(0) invert(1);
  }
  /* .footer-contacts {
    padding: 2.133rem;
  } */
  .entry--vimage {
    display: flex;
    flex-wrap: wrap;
  }
  .entry--vimage .entry__thumb {
    flex: 0 0 30%;
    max-width: 30%;
    position: relative;
  }
  .entry--vimage .entry__thumb img {
    height: 100%;
  }
  .entry--vimage .entry__thumb:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-color: rgba(64,67,74,0.25);
  }
  .entry--vimage .entry__body {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .row > .posts-list__item {
    margin-bottom: 3.6rem;
  }
  .posts-list__filters {
    margin-bottom: 3rem;
  }
  .products-list > .row:not(:first-child),
  .section--dealers .download-filters + .row,
  .section--dealers .download-filters + p {
    margin-top: 4rem;
  }
  .btn-container[data-group] > .btn + .btn {
    margin-left: 2rem;
  }
  .card--product {
    padding: 45px 1.333rem 1.333rem;
  }
  .card__logos {
    top: -35px;
  }
  .card__logos__item + .card__logos__item {
    margin-left: 2rem;
  }
  .card__logos__item img {
    width: 70px;
    height: 70px;
  }
  .slideshow__item__content .h1 {
    font-size: 56px;
  }
  .slideshow__item__content .subtitle {
    font-size: 2.4rem;
  }
  .slideshow__item__content .payoff {
    font-size: 21px;
  }
  .slideshow__cards {
    margin-top: -5rem;
  }
  #header {
    position: sticky;
    top: -103px;
    z-index: 1040;
  }
  #header.header--sticky {
    transform: translateY(0%);
    transition: transform 0.2s ease;
  }
  #header.header--off {
    transform: translateY(-45%);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section--map > .container {
    max-width: 720px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1120px;
  }
  .section {
    padding: 5rem 0;
  }
  .dealer-continents > li {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .navbar__nav > li > a {
    padding-left: 1.333rem;
    padding-right: 1.333rem;
  }
  .breadcrumb {
    font-size: 1.2rem;
  }
  .breadcrumb__item {
    font-weight: 800;
  }
  body:not(.search) .header-title h1,
  body:not(.search) .header-title .h1 {
    font-size: 54px;
  }
  .header-title h1 > span,
  .header-title .h1 > span {
    max-height: 198px;
  }
  .header-title h1 small,
  .header-title .h1 small {
    font-size: 1.2rem;
  }
  .card:not(.card--product):not(.card--download) .card__content {
    padding: 2rem 1.6rem;
  }
  body.blog #main-content,
  body.search #main-content,
  body.category #main-content,
  body.single-product #main-content,
  body[class*="page-press"] #main-content,
  body[class*="page-event"] #main-content,
  body[class*="page-products"] #main-content {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  body.single-post #main-content {
    padding-top: 6rem;
  }
  body.single-product #main-content .products-list + .section,
  body.single-product #main-content .product-content + .section {
    margin-top: 5rem;
  }
  body.single-product #main-content .products-list ~ .section:last-child,
  body.single-product #main-content .product-content ~ .section:last-child {
    margin-bottom: -6rem;
  }
}

/* ! Gravity Form */
.gform_wrapper.gravity-theme .gfield:not(:last-child) {
  margin-bottom: 1.8rem;
}
.gform_wrapper .gfield_validation_message,
.gform_wrapper .validation_message {
  padding: 8px !important;
  font-size: 12px !important;
}
.gform_wrapper .gform_validation_errors>h2.hide_summary {
  margin: 0 !important;
}
.gform_wrapper .gfield_error [aria-invalid=true] {
  border: none !important;
  border-bottom: 2px solid #c02b0a !important;
}
.gform_wrapper .gfield_required {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.gform_wrapper .btn-primary {
  text-transform: uppercase;
}

/* ! Tiny Slider */
.tns-outer {
  position: relative;
}
.section .tns-outer {
  margin-bottom: 3rem;
}
.tns-ovh {
  padding: 1.5rem 0;
}
.tns-nav,
.tns-controls {
  text-align: center;
}
.tns-nav {
  margin: 0 0 1.5rem;
}
.tns-ovh + .tns-nav {
  margin: 1.5rem 0 0;
}
.slideshow .tns-nav {
  margin: 0 !important;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5rem;
  z-index: 30;
}
.tns-nav > [aria-controls],
.tns-controls [aria-controls] {
  border: 0;
  margin: 0;
  padding: 0;
}
.tns-nav > [aria-controls] {
  width: 12px;
  height: 12px;
  position: relative;
  overflow: hidden;
  background: none;
  border-radius: 6px;
  border: 1px solid var(--alt-color);
  transition: width 0.2s ease-in;
}
.tns-style-light .tns-nav > [aria-controls] {
  border-color: var(--white-color);
}
.tns-nav > .tns-nav-active {
  width: 24px;
}
.tns-nav > [aria-controls] + [aria-controls] {
  margin-left: 0.6333rem;
}
.tns-nav > [aria-controls]:after {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: calc(100% + 2px);
  margin: auto;
  border-radius: 4px;
  transform: scale(0);
  transition: transform 0.2s ease-in;
  background-color: var(--alt-color);
}
.tns-style-light .tns-nav > [aria-controls]:after {
  background-color: var(--white-color);
}
.tns-nav > .tns-nav-active {
  pointer-events: none;
}
.tns-nav > .tns-nav-active:after {
  transform: scale(1);
}
.tns-controls {
  margin: 0;
}
.tns-controls [aria-controls] {
  position: absolute;
  top: 50%;
  z-index: 100;
  background: none;
  color: var(--text-color);
  transform: translateY(-50%);
}
.tns-style-light .tns-controls [aria-controls] {
  color: var(--white-color);
  top: calc(50% - 0.75rem);
}
.tns-controls [aria-controls][disabled] {
  opacity: 0;
  pointer-events: none;
}
.tns-nav + .tns-controls [aria-controls] {
  top: calc(50% - 12px);
}
.tns-controls [data-controls="prev"] {
  left: -1rem;
}
.tns-controls [data-controls="next"] {
  right: -1rem;
}
.slideshow .tns-controls [data-controls="prev"] {
  left: 1.4rem !important;
}
.slideshow .tns-controls [data-controls="next"] {
  right: 1.4rem !important;
}
@media (hover: hover) {
  .slideshow .tns-controls [data-controls="prev"],
  .slideshow .tns-controls [data-controls="next"] {
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .slideshow .tns-controls [data-controls="prev"] {
    transform: translateX(-15px);
  }
  .slideshow .tns-controls [data-controls="next"] {
    transform: translateX(15px);
  }
  .slideshow .tns-outer:hover .tns-controls [data-controls="prev"],
  .slideshow .tns-outer:hover .tns-controls [data-controls="next"] {
    opacity: 1;
    transform: translateX(0px);
  }
}
@media (max-width: 575px) {
  .section:not(.section--primary) .tns-ovh {
    padding-left: calc(50vw - 50%);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}
@media (min-width: 576px) {
  .tns-nav {
    text-align: right;
  }
  .slideshow .tns-nav {
    bottom: 7rem;
    text-align: center;
  }
  .tns-ovh {
    margin-left: -20px;
    margin-right: -20px;
  }
  /* .section:not(.section--primary) .tns-ovh {
    margin-left: calc(-50vw + 50% - 20px);
    margin-right: calc(-50vw + 50% + 0.5rem);
  } */
  .tns-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .slideshow .tns-inner {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .slideshow .tns-controls .icon {
    width: 42px;
    height: 42px;
  }
  .tns-controls [data-controls="prev"] {
    left: -2rem;
  }
  .tns-controls [data-controls="next"] {
    right: -2rem;
  }
}
@media (min-width: 1366px) {
  .tns-controls [data-controls="prev"] {
    left: -3rem;
  }
  .tns-controls [data-controls="next"] {
    right: -3rem;
  }
}

/* ! Slim Select */
select.slim-select {
  visibility: hidden;
}
.ss-main {
  font-weight: 700;
  color: var(--text-color);
}
.ss-content {
  margin: 0;
  border: none;
  box-shadow: 2px 2px 12px rgba(34,34,34,0.15);
}
.ss-content .ss-list .ss-option {
  padding: 0.5rem 0.667rem;
}
.ss-content .ss-list .ss-option.ss-highlighted,
.ss-content .ss-list .ss-option:hover {
  background-color: var(--primary-color);
}
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected {
  opacity: 0.75;
  color: var(--light-color);
  background-color: var(--primary-light-color);
}
.ss-main .ss-single-selected {
  height: 45px;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid var(--primary-color);
}
.ss-main .ss-single-selected.ss-disabled {
  filter: grayscale(1) opacity(0.75);
  background-color: transparent;
}
.ss-main .ss-single-selected .ss-arrow span {
  border-color: var(--primary-color);
}
.ss-main .ss-single-selected .placeholder {
  color: var(--primary-color);
}
.ss-main .ss-single-selected .placeholder .ss-disabled {
  color: inherit;
  line-height: 1.5;
  filter: grayscale(0.2) opacity(0.6);
}
.ss-content .ss-search input {
  border-radius: 0 !important;
  border: 1px solid var(--border-color) !important;
}
.ss-content .ss-search input:focus {
  box-shadow: 0 0 0 0.2rem rgba(34,34,34,0.05);
}

/* ! WP Blocks */
.wp-strong-heading {
  font-weight: 800;
  margin-top: -5px;
}
.wp-block-image {
  margin-bottom: 1.4rem;
}
.wp-block-image img,
.wp-block-media-text__media img,
.wp-block-media-text__media video {
  height: auto;
}
.wp-block-cover.alignfull,
.wp-block-group.alignfull {
  padding-left: 0;
  padding-right: 0;
}
.wp-block-cover__inner-container,
.wp-block-group__inner-container {
  width: 100% !important;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container {
  color: inherit;
}
.wp-block-buttons > .wp-block-button {
  margin: 0 !important;
}
.wp-block-button[class*="icon-"] .icon {
  margin-left: 0.7rem;
}
.section .wp-block-group {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.section .wp-block-group:last-child {
  margin-bottom: -3rem;
}
@media (max-width: 599px) {
  .wp-block-columns > .wp-block-column + .wp-block-column {
    margin-top: 3rem;
  }
}
@media (min-width: 576px) {
  .wp-block-cover__inner-container,
  .wp-block-group__inner-container {
    max-width: 540px;
  }
}
@media (min-width: 600px) {
  .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding-left: 0;
  }
  .wp-block-media-text.has-media-on-the-left .wp-block-media-text__content {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .section .wp-block-group {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .section .wp-block-group:last-child {
    margin-bottom: -4rem;
  }
  .wp-block-cover__inner-container,
  .wp-block-group__inner-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .wp-block-cover__inner-container,
  .wp-block-group__inner-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .section .wp-block-group {
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .section .wp-block-group:last-child {
    margin-bottom: -5rem;
  }
  .wp-block-cover__inner-container,
  .wp-block-group__inner-container {
    max-width: 1120px;
  }
}

/* ! Logo Pattern */
body.single-product .product-content:after,
body.single-product .products-list:after {
  content: '';
  display: block;
  position: absolute;
  left: calc(-50vw + 50% - 0.5rem);
  bottom: -4rem;
  z-index: -1;
  width: 100vw;
  height: 660px;
}
body[class*="page-products"] #main-content,
body[class*="page-event"] #main-content,
body[class*="page-press"] #main-content,
body.single-product .product-content:after,
body.single-product .products-list:after,
body.single-post #sidebar,
body.blog #main-content,
#contacts-content,
.section--incipit,
.section--brand {
  background-size: 540px auto;
  background-repeat: no-repeat;
  background-image: url('../img/bg-pattern.png');
}
body.single-product .products-list:after,
body[class*="page-products"] #main-content {
  background-position: right -90px bottom -288px;
}
body[class*="page-press"] #main-content {
  background-position: right -25px bottom -220px;
}
body[class*="page-event"] #main-content,
body.blog #main-content {
  background-position: right -25px bottom -288px;
}
body.single-post #sidebar {
  background-position: right -25px bottom -370px;
}
#contacts-content {
  background-position: left -100px bottom -240px;
}
body.single-product .product-content:after,
.section--incipit {
  background-position: left -100px bottom -128px;
}
.section--brand {
  background-position: left -100px bottom -290px;
}
@media (max-width: 767px) {
  body[class*="page-products"] #main-content,
  body[class*="page-event"] #main-content,
  body[class*="page-press"] #main-content,
  body.single-product .product-content:after,
  body.single-product .products-list:after,
  body.single-post #sidebar,
  body.blog #main-content,
  #contacts-content,
  .section--incipit,
  .section--brand {
    background-size: 240px auto;
  }
  body.single-product .product-content:after,
  body.single-product .products-list:after,
  body[class*="page-products"] #main-content,
  body[class*="page-event"] #main-content,
  body[class*="page-press"] #main-content,
  body.blog #main-content {
    background-position: left -95px bottom -90px;
  }
  #contacts-content {
    background-position: left -82px bottom -108px;
  }
  body.single-product .product-content:after,
  .section--incipit {
    background-position: left -82px bottom -100px;
  }
  body.single-post #sidebar,
  .section--brand {
    background-position: left -82px bottom -128px;
  }
  .section--map {
    background-size: 240px auto;
    background-repeat: no-repeat;
    background-position: right -25px bottom -128px;
    background-image: url('../img/bg-pattern-2.png');
  }
}
@media (min-width: 768px) {
  body[class*="page-products"] #main-content,
  body[class*="page-event"] #main-content,
  body[class*="page-press"] #main-content,
  body.single-product .products-list:after,
  body.single-post #sidebar,
  body.blog #main-content,
  .section--best-seller,
  .section--dealers {
    background-image: url('../img/bg-pattern-2.png');
  }
  .section--best-seller,
  .section--dealers {
    background-size: 540px auto;
    background-repeat: no-repeat;
  }
  .section--best-seller {
    background-position: left -190px top -100px;
  }
  .section--dealers {
    background-position: left -190px top -245px;
  }
}
@media (max-width: 991px) {
  .navbar__nav {
    background-size: 240px auto;
    background-repeat: no-repeat;
    background-blend-mode: exclusion;
    background-position: left -30px bottom -122px;
    background-image: url('../img/bg-pattern-3.png');
  }
}
@media (min-width: 1200px) {
  body.single-product .product-content:after,
  body.single-product .products-list:after {
    bottom: -5rem;
  }
}
@media (min-width: 1320px) {
  .navbar {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
  }
  .header--sticky .navbar__logo {
    width: 200px;
  }
}

/* ! Supports */
@supports not (object-fit: cover) {
  .card__image img,
  .header-title > img,
  .slideshow__item img,
  .entry--vimage .entry__thumb img { font-family: 'object-fit: cover; object-position: center;'; }
  .navbar ul .menu-icon,
  .card--slideshow .thumb,
  .dealer-continents > li > a img,
  .entry-brand .entry__thumb img[src*="logo-"] { font-family: 'object-fit: none; object-position: center;'; }
  .card__image--noclamp img { font-family: 'object-fit: none;' }
}

/* ! Chrome Hacks */
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
  .navbar ul .menu-icon,
  .navbar__logo .site-logo img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ! Language: french */
@media (min-width: 992px) and (max-width: 1320px) {
  html[lang="fr-FR"] .navbar__nav > li > a > .caret,
  html[lang="fr-FR"] .navbar__nav > li > a > .icon-right {
    margin-left: 0;
  }
}
@media (min-width: 992px) and (max-width: 1080px) {
  html[lang="fr-FR"] .navbar__nav > li > a {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  html[lang="fr-FR"] .navbar__nav > li > a > .caret,
  html[lang="fr-FR"] .navbar__nav > li > a > .icon-right {
    margin-left: 0;
  }
}
@media (min-width: 1320px) {
  html[lang="fr-FR"] .navbar__nav > li > a {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
