@charset "UTF-8";
@keyframes rotatemagic {
  0% {
    opacity: 0;
    transform: rotate(0deg);
    top: -24px;
    left: -253px;
  }
  100% {
    transform: rotate(-30deg);
    top: -24px;
    left: -78px;
  }
}
@keyframes animate-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -80px 0;
  }
}
@-webkit-keyframes animate-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -80px 0;
  }
}
@-moz-keyframes animate-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -80px 0;
  }
}
:root {
  /* Space and typography */
  /* https: //codepen.io/dmtrmrv/pen/xxBPowg */
  --step--2: clamp(0.72rem, 0.8145rem + -0.122vi, 0.7901rem
  );
  --step--1: clamp(0.8889rem, 0.885rem + 0.0193vi, 0.9rem);
  --step-0: clamp(1rem, 0.9565rem + 0.2174vi, 1.125rem);
  --step-1: clamp(1.125rem, 1.0272rem + 0.4891vi, 1.4063rem);
  --step-2: clamp(1.2656rem, 1.0944rem + 0.856vi, 1.7578rem);
  --step-3: clamp(1.4238rem, 1.1548rem + 1.3451vi, 2.1973rem);
  --step-4: clamp(1.6018rem, 1.2036rem + 1.9909vi, 2.7466rem);
  --step-5: clamp(1.802rem, 1.2347rem + 2.8369vi, 3.4332rem);
  --step-6: clamp(2.0273rem, 1.2397rem + 3.9378vi, 4.2915rem);
  --step-7: clamp(2.2807rem, 1.2081rem + 5.363vi, 5.3644rem);
  --step-8: clamp(2.5658rem, 1.1259rem + 7.1995vi, 6.7055rem);
  --shadow-color: 0deg 0% 72%;
  --shadow-elevation-low: 0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.22),
    0.4px 0.8px 1px -1.2px hsl(var(--shadow-color) / 0.22),
    0.8px 1.7px 2.1px -2.5px hsl(var(--shadow-color) / 0.22);
  --shadow-elevation-medium: 0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.18),
    0.6px 1.2px 1.5px -0.6px hsl(var(--shadow-color) / 0.18),
    1.1px 2.2px 2.8px -1.2px hsl(var(--shadow-color) / 0.18),
    2.2px 4.3px 5.4px -1.9px hsl(var(--shadow-color) / 0.18),
    4.1px 8.3px 10.4px -2.5px hsl(var(--shadow-color) / 0.18);
  --shadow-elevation-high: 0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.17),
    0.9px 1.7px 2.2px -0.3px hsl(var(--shadow-color) / 0.17),
    1.5px 2.9px 3.7px -0.6px hsl(var(--shadow-color) / 0.17),
    2.2px 4.4px 5.5px -0.8px hsl(var(--shadow-color) / 0.17),
    3.1px 6.3px 7.9px -1.1px hsl(var(--shadow-color) / 0.17),
    4.5px 8.9px 11.2px -1.4px hsl(var(--shadow-color) / 0.17),
    6.3px 12.6px 15.8px -1.7px hsl(var(--shadow-color) / 0.17),
    8.8px 17.6px 22.1px -1.9px hsl(var(--shadow-color) / 0.17),
    12.1px 24.2px 30.4px -2.2px hsl(var(--shadow-color) / 0.17),
    16.3px 32.5px 40.9px -2.5px hsl(var(--shadow-color) / 0.17);
  /* Colors */
  --blue: #00a1e4;
  --green: #72bf44;
  --dkblue: #00378b;
  --font-color: #1d2d35;
}

#brands-list__content {
  padding: 0;
}
#brands-list__content__title {
  padding: 0.5rem;
  text-align: center;
  background-color: #f5f5f5;
}
#brands-list__content__title h1 {
  margin: 8px 0;
}
#brands-list__content__title p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0;
}
@media (min-width: 992px) {
  #brands-list__content__title p {
    justify-content: space-between;
  }
}
#brands-list__content__title p a {
  display: inline-flex;
  flex-basis: 40px;
  flex-grow: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 6px;
  margin: 0 4px;
  color: var(--dkblue);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50%;
}
#brands-list__content__title p a[href] {
  font-weight: 900;
}
#brands-list__content__title p a[href]:hover, #brands-list__content__title p a[href]:focus {
  color: white;
  background-color: #00378b;
}
#brands-list__brands {
  padding: 1rem;
  background-color: #eee;
}
#brands__backlink {
  margin: -30px 0 30px;
  font-size: 14px;
  color: #00378b;
}
#brands__distributors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(0, 350px));
  justify-content: space-between;
  gap: 40px;
}

.brands-list__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}
@media only screen and (min-width: 768px) {
  .brands-list__row {
    grid-template-columns: 65px 1fr;
  }
}
.brands-list__row:last-child {
  border-bottom: none;
}
.brands-list__char {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .brands-list__char {
    padding: 0 15px;
    text-align: start;
  }
}
.brands-list__char span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: white;
  font-weight: 600;
  background-color: #00378b;
  border-radius: 50%;
}
.brands-list__char-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 220px));
  align-items: baseline;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.brands-list__char-list li {
  width: 100%;
}
.brands-list__brand {
  display: inline-block;
  width: 100%;
  padding: 6px;
  text-align: center;
  color: var(--font-color) !important;
  background-color: white;
  border: 1px solid #000;
}
.brands-list__brand:hover {
  background-color: #D2D2D2;
}
.brands-list__brand img {
  width: auto;
  max-width: 200px;
  height: 50px;
  object-fit: contain;
}
.brands-list__brand span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}
.brands-list__brand:hover, .brands-list__brand:focus {
  text-decoration: underline;
}

#range-brand__logo {
  margin: 0.4em 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
}
#range-brand__logo img {
  min-height: 80px;
  max-height: 160px;
  filter: brightness(0) invert(1);
}
#range-brand__logo.no-filter img {
  filter: unset;
}

.range-brand h1 {
  margin-top: 0;
  padding-top: 0;
  padding-left: 10px;
  color: #00378b;
  text-wrap: balance;
  background-color: transparent;
  border-bottom: 2px solid #00378b;
}
.range-brand h3 {
  padding: 0px 10px 10px 10px;
  border-bottom: 2px solid #00378b;
}
.range-brand__overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .range-brand__overview {
    grid-template-columns: 3fr 1fr;
    gap: 75px;
  }
}
.range-brand__overview a:hover,
.range-brand__overview a:focus {
  text-decoration: underline;
}
.range-brand__overview--logo {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .range-brand__overview--logo {
    grid-column: span 2;
  }
}
@media only screen and (min-width: 992px) {
  .range-brand__overview--logo {
    grid-column: span 1;
  }
}
.range-brand__overview--logo img {
  max-height: 160px;
}
.range-brand__overview--links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.range-brand__overview--links a {
  display: inline-block;
  padding: 6px 16px;
  color: white;
  text-align: center;
  text-wrap: balance;
  background-color: #2d6ca2;
  border-radius: 5px;
}
.range-brand__overview--links a:hover, .range-brand__overview--links a:focus {
  background-color: #00378b;
}
.range-brand__overview--links a:visited {
  color: white;
}
.range-brand__overview--categories h4 {
  margin-top: 0;
}
.range-brand__overview--categories ul {
  list-style-type: none;
}
.range-brand__overview--categories ul li:before {
  content: "–";
  position: absolute;
  margin-left: -20px;
}
.range-brand__overview--categories ul li a {
  color: var(--font-color);
}
.range-brand__overview--categories ul li a:hover, .range-brand__overview--categories ul li a:focus {
  text-decoration: underline;
}
.range-brand__products {
  margin-bottom: 40px;
}
.range-brand__products h3 {
  display: block;
  padding-bottom: 6px;
  font-size: 1.5em;
  border-bottom-color: lightgray;
}
.range-brand__products--more {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 16px;
  color: white;
  text-align: center;
  font-size: 12px;
  background-color: #2d6ca2;
  border-radius: 5px;
}
.range-brand__products--more:hover, .range-brand__products--more:focus {
  background-color: #00378b;
}
.range-brand__products--more:visited {
  color: white;
}
.range-brand__products--search {
  margin-top: 50px;
  text-align: center;
}
.range-brand__products--search h4 {
  margin-top: 0;
  margin-bottom: 6px;
  padding: 0;
  border: none;
}
.range-brand__products--search .loSearchPhrase {
  padding: 0 1em;
  width: 80%;
  height: 50px;
  border: 0;
  color: #4e5765;
  background-color: white;
  border: 2px solid #4e5765;
}
@media only screen and (min-width: 768px) {
  .range-brand__products--search .loSearchPhrase {
    width: 500px;
  }
}
.range-brand__products--search .loSearchBtn {
  display: inline-block;
  margin-left: 8px;
  padding: 6px 20px;
  height: 50px;
  color: white;
  text-align: center;
  background-color: #2d6ca2;
  border-radius: 0px;
  border: none;
  outline: none;
  cursor: pointer;
}
.range-brand__products--search .loSearchBtn:hover, .range-brand__products--search .loSearchBtn:focus {
  background-color: #00378b;
}
.range-brand__products--search .loSearchBtn:visited {
  color: white;
}

.brand__distributor, .brand__branch {
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}
.brand__distributor p, .brand__branch p {
  margin: 0;
  padding-top: 8px;
  font-size: 0.9em;
}
.brand__distributor p a, .brand__branch p a {
  color: inherit;
  text-decoration: underline;
}
.brand__distributor p strong, .brand__branch p strong {
  font-size: 1.1em;
  color: var(--dkblue);
}
.brand__distributor p strong a, .brand__branch p strong a {
  text-decoration: none;
}
.brand__distributor p strong a:hover, .brand__branch p strong a:hover {
  text-decoration: underline;
}
.brand__gallery {
  margin: 70px 0 40px;
}
@media (min-width: 768px) {
  .brand__gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.brand__gallery figure {
  margin: 0;
}
.brand__gallery figure img {
  min-height: 200px;
  max-height: 275px;
  border: 5px solid #FFFFFF;
  box-shadow: 0px 0px 10px 1px #c0c0c0;
  transform: rotate(-2deg);
  transition: 0.3s ease-in-out all;
}
.brand__gallery figure img:hover {
  box-shadow: 0px 0px 10px 3px #c0c0c0;
  transform: scale(1.1) !important;
}
.brand__gallery figure:nth-child(even) img {
  transform: rotate(2deg);
}

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