@charset "UTF-8";
:root {
  --clr-blue: hsl(220, 74%, 34%);
  --clr-red: hsl(358, 84%, 52%);
  --clr-gray-light: #f6f6f6;
  --clr-light: white;
  --clr-dark: var(--clr-blue);
  --clr-primary: var(--clr-blue);
  --clr-secondary: hsl(0, 0%, 100%);
  --clr-text: var(--clr-primary);
  --clr-bg: var(--clr-primary);
  --fs-300: clamp(0.83rem, -0.17vw + 1rem, 0.89rem);
  --fs-400: 1rem;
  --fs-500: clamp(1.13rem, 0.23vw + 0.98rem, 1.2rem);
  --fs-600: clamp(1.27rem, 0.54vw + 0.92rem, 1.44rem);
  --fs-700: clamp(1.42rem, 0.95vw + 0.82rem, 1.73rem);
  --fs-800: clamp(1.6rem, 1.47vw + 0.66rem, 2.07rem);
  --fs-900: clamp(1.8rem, 2.14vw + 0.43rem, 2.49rem);
  --speed: 0.3s;
}

html {
  scroll-behavior: smooth;
}

body {
  --bg: var(--clr-light);
  --heading: var(--clr-dark);
  --body: var(--clr-dark);
  --button-bg: var(--button-color);
  --button-text: var(--clr-light);
  --button-border: var(--button-color);
  --button-color: var(--clr-blue);
}

[class*=theme-] {
  background: var(--bg);
  color: var(--body);
}
[class*=theme-] h1,
[class*=theme-] h2,
[class*=theme-] h3,
[class*=theme-] .h1,
[class*=theme-] .h2,
[class*=theme-] .h3 {
  color: var(--heading);
}

.theme-dark,
.comp-bg-uds-blue {
  --bg: var(--clr-blue);
  --heading: white;
  --body: white;
}

.theme-light {
  --bg: var(--clr-gray-light);
  --heading: var(--clr-blue);
  --body: var(--clr-blue);
}

[id] {
  scroll-padding-top: 130px;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  --flow-space: 2rem;
}
@media only screen and (min-width: 1024px) {
  .button-wrapper {
    justify-content: flex-start;
    flex-direction: row;
  }
}
.button-wrapper > * {
  margin: 0 !important;
}

.c-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto 56px;
  padding: 0;
  overflow: hidden;
  color: var(--body);
}
.c-wrapper h1,
.c-wrapper h2,
.c-wrapper .h1,
.c-wrapper .h2 {
  font-size: var(--fs-700);
}
.c-wrapper p,
.c-wrapper ul,
.c-wrapper ol {
  font-size: var(--fs-400);
}
@media only screen and (min-width: 1024px) {
  .c-wrapper {
    padding: 0 40px;
  }
}
.c-wrapper .image-box {
  aspect-ratio: var(--aspect-ratio-mobile);
  grid-area: image;
  position: relative;
  overflow: hidden;
  --image: var(--image-mobile, var(--image-desktop));
}
@media only screen and (min-width: 1024px) {
  .c-wrapper .image-box {
    aspect-ratio: var(--aspect-ratio-desktop);
    --image: var(--image-desktop, var(--image-mobile));
  }
}
.c-wrapper .image-box picture {
  transition: scale var(--speed) ease-in-out;
}
.c-wrapper .image-box picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale var(--speed) ease-in-out;
}
.c-wrapper .image-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.c-wrapper .image-box .image {
  position: absolute;
  inset: 0;
  background-image: var(--image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: scale var(--speed) ease-in-out;
}
.c-wrapper .image-box .image iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.c-wrapper .c-link {
  z-index: 1;
  position: absolute;
  inset: 0;
}
.c-wrapper .c-link:hover ~ .image, .c-wrapper .c-link:focus-visible ~ .image, .c-wrapper .c-link:hover ~ picture, .c-wrapper .c-link:focus-visible ~ picture, .c-wrapper .c-link:hover img, .c-wrapper .c-link:focus-visible img {
  scale: var(--scale-factor, 1.02);
}
.c-wrapper a:is(:hover, :focus) img {
  scale: var(--scale-factor, 1.02);
}
.c-wrapper .text-box {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: var(--bg);
}
.c-wrapper .text-box .title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.c-wrapper .text-box > *,
.c-wrapper .highlight-box > *, .c-wrapper.c-c65 > * {
  margin: 0 !important;
}
.c-wrapper .text-box > * + *,
.c-wrapper .highlight-box > * + *, .c-wrapper.c-c65 > * + * {
  margin-top: var(--flow-space, 1em) !important;
}
.c-wrapper .text-box li + li,
.c-wrapper .highlight-box li + li, .c-wrapper.c-c65 li + li {
  margin-top: var(--flow-space, 0.5em) !important;
}
.c-wrapper :is(p, ul, ol) a {
  text-decoration: underline;
}
.c-wrapper :is(p, ul, ol) a:hover {
  text-decoration: none;
}
.c-wrapper :is(p, ul, ol) a:focus-visible {
  text-decoration: none;
}
.c-wrapper.margin-false {
  margin-bottom: 0;
}
.c-wrapper.link-false .c-link {
  display: none;
}

.c-c22 {
  --aspect-ratio-mobile: 4/3;
  --aspect-ratio-desktop: 3/1;
}
.c-c22 .image-box {
  width: 100%;
  position: relative;
}

.c-c22b {
  --aspect-ratio-mobile: 4/3;
  --aspect-ratio-desktop: unset;
  display: grid;
  grid-auto-columns: 2fr 1fr;
  grid-template-areas: "image" "text";
  background-clip: content-box;
}
@media only screen and (min-width: 1024px) {
  .c-c22b {
    grid-template-areas: "image text";
  }
}
@media only screen and (min-width: 1024px) {
  .c-c22b .image-box {
    padding-top: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .c-c22b.image-right {
    grid-auto-columns: 1fr 2fr;
    grid-template-areas: "text image";
  }
}

.c-c31b {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-areas: "image" "text";
  background-clip: content-box;
}
@media only screen and (min-width: 1024px) {
  .c-c31b {
    grid-template-areas: "image text";
  }
}
.c-c31b .image-box {
  padding-top: 56.25%;
}
@media only screen and (min-width: 1024px) {
  .c-c31b.image-right {
    grid-template-areas: "text image";
  }
}

.c-c30 {
  --aspect-ratio-mobile: 2/1;
  --aspect-ratio-desktop: 3/4;
}

.c-c58 {
  --aspect-ratio-mobile: 1/1;
  --aspect-ratio-desktop: 1/1;
}

.c-c30,
.c-c58 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--flex-gap, 10px);
}

.c-c30__item,
.c-c58__item {
  position: relative;
  overflow: hidden;
  width: calc(100% / var(--flex-items-mobile) - (var(--flex-items-mobile) - 1) / var(--flex-items-mobile) * var(--flex-gap));
}
@media only screen and (min-width: 1024px) {
  .c-c30__item,
  .c-c58__item {
    width: calc(100% / var(--flex-items-desktop) - (var(--flex-items-desktop) - 1) / var(--flex-items-desktop) * var(--flex-gap));
  }
}
.c-c30__item a:hover .c-c58__cta::after,
.c-c30__item a:hover .c-c30__cta::after,
.c-c58__item a:hover .c-c58__cta::after,
.c-c58__item a:hover .c-c30__cta::after {
  scale: 0.8 1;
}

.c-c30__cta,
.c-c58__cta {
  position: absolute;
  inset: auto 1rem var(--flex-gap);
  padding: 0 0 0.4em;
  text-transform: uppercase;
  text-align: center;
  font-size: var(--fs-600);
  font-weight: 700;
  line-height: 1;
  color: white;
  text-shadow: 0 0 20px black;
}
.c-c30__cta::after,
.c-c58__cta::after {
  content: "";
  position: absolute;
  inset: auto 30% 0;
  height: 1.5px;
  background-color: white;
  transition: scale var(--speed) ease-in-out;
}

.c-c65 {
  max-width: 1000px;
  text-align: center;
  margin-block: 5rem;
  padding: 0 2rem;
}
@media only screen and (min-width: 1024px) {
  .c-c65 {
    padding: 0 4rem;
  }
}
.c-c65 .button-wrapper {
  justify-content: center;
}
.c-c65 h1,
.c-c65 .h1 {
  font-size: var(--fs-800);
  text-wrap: balance;
}
.c-c65 h2,
.c-c65 .h2 {
  font-size: var(--fs-700);
  text-wrap: balance;
}

.text-box .icon-brand {
  margin-bottom: 0.5rem;
}

.tl {
  top: 0;
  left: 0;
  transform-origin: top left;
}

.tl > * {
  -o-object-position: top left;
  object-position: top left;
}

.tr {
  top: 0;
  right: 0;
  transform-origin: top right;
}

.tr > * {
  -o-object-position: top right;
  object-position: top right;
}

.br {
  bottom: 0;
  right: 0;
  transform-origin: bottom right;
}

.br > * {
  -o-object-position: bottom right;
  object-position: bottom right;
}

.bl {
  bottom: 0;
  left: 0;
  transform-origin: bottom left;
}

.bl > * {
  -o-object-position: bottom left;
  object-position: bottom left;
}

.logo-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-bar__element {
  position: relative;
  aspect-ratio: 4/3;
  flex: 0 1 12%;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}

.logo-bar__element .image {
  position: absolute;
  inset: 0;
  padding: 1rem;
  background: var(--image);
  background-position: bottom;
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: contain;
  transition: scale var(--speed) ease-in-out;
}

.logo-bar__element h2 {
  display: none;
}

.c-c71 {
  --aspect-ratio-mobile: 4/3;
  --aspect-ratio-desktop: 4/3;
  --bg: var(--clr-gray-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: var(--flex-gap, 1.25rem);
}
.c-c71 .c-c71__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(100% / var(--flex-items-mobile) - (var(--flex-items-mobile) - 1) / var(--flex-items-mobile) * var(--flex-gap));
}
@media only screen and (min-width: 1024px) {
  .c-c71 .c-c71__item {
    width: calc(100% / var(--flex-items-desktop) - (var(--flex-items-desktop) - 1) / var(--flex-items-desktop) * var(--flex-gap));
  }
}
.c-c71 .c-c71__item .c-pretitle {
  font-size: var(--fs-400);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}
.c-c71 .c-c71__item .c-pretitle::after {
  content: "";
  position: absolute;
  inset: auto 0 calc(var(--flex-gap) / -3);
  height: 2px;
  background-color: hsla(0, 0%, 80%, 0.2);
}
.c-c71 .c-c71__item .c-title {
  font-size: var(--fs-600);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  --flow-space: var(--flex-gap, 1rem);
}
.c-c71 .c-c71__item > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.c-c71 .c-c71__item > a:hover {
  text-decoration: none;
}
.c-c71.c-wrapper .text-box {
  flex-grow: 2;
  padding: var(--flex-gap, 20px);
  justify-content: flex-start;
}
.c-c71.c-wrapper .button-wrapper {
  justify-content: flex-end;
  margin-top: auto !important;
  padding-top: var(--flex-gap, 1rem);
}

.c-bg-blue {
  --heading: white;
  --body: white;
  --bg: var(--clr-blue);
}

.c-bg-red {
  --clr-text: hsl(0, 0%, 100%);
  background-color: var(--clr-red);
}

.c-bg-blue :is(h1, h2, h3, h4, h5, h6, p, a, ol, ul, span),
.c-bg-red :is(h1, h2, h3, h4, h5, h6, p, a, ol, ul, span) {
  color: hsl(0, 0%, 100%);
}

.c-bg-gray-light {
  background: var(--clr-gray-light) !important;
}

.c-bg-gray-light :is(h1, h2, h3, h4, h5, h6, p, a, ol, ul, span) {
  color: var(--clr-blue);
}

.c-seotext {
  margin: 3rem 0 0;
}

.c-content {
  max-width: 1024px;
  margin: 0 auto;
}
.c-content .c-wrapper {
  padding: 0;
}

.c-content,
.c-seotext {
  font-size: var(--fs-400);
}
.c-content > *,
.c-content .highlight-box > *,
.c-seotext > *,
.c-seotext .highlight-box > * {
  margin: 0 !important;
}
.c-content > * + *,
.c-content .highlight-box > * + *,
.c-seotext > * + *,
.c-seotext .highlight-box > * + * {
  margin: var(--flow-space, 1.2em) 0 0 !important;
}
.c-content img,
.c-seotext img {
  display: block;
}
.c-content h1,
.c-seotext h1 {
  font-size: var(--fs-800);
}
.c-content h2,
.c-seotext h2 {
  font-size: var(--fs-700);
}
.c-content h3,
.c-seotext h3 {
  font-size: var(--fs-600);
}
.c-content h1::after,
.c-seotext h1::after {
  display: none;
}
.c-content :is(p, ul, ol) a,
.c-seotext :is(p, ul, ol) a {
  text-decoration: underline;
}
.c-content :is(p, ul, ol) a:hover,
.c-seotext :is(p, ul, ol) a:hover {
  text-decoration: none;
}
.c-content :is(p, ul, ol) a:focus-visible,
.c-seotext :is(p, ul, ol) a:focus-visible {
  text-decoration: none;
}
.c-content *:focus-visible,
.c-seotext *:focus-visible {
  outline: 2px solid #ec1d24 !important;
  outline-offset: 0.1rem;
}

.c-btn,
.c-btn--white,
.c-btn--lined,
.c-btn--lined-white,
.c34 .btn-lined,
.btn-uds-blue,
.btn {
  --fs: var(--fs-400);
  --speed: 0.1s;
  display: inline-block;
  min-width: 10rem;
  padding: calc(var(--fs) * 1.2) calc(var(--fs) * 2);
  font-size: var(--fs);
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  color: var(--button-text) !important;
  background: var(--button-bg) !important;
  border: 2px solid var(--button-border) !important;
  border-radius: 99rem;
  box-shadow: none !important;
  cursor: pointer;
  transition: color var(--speed) ease-in-out, background var(--speed) ease-in-out, scale var(--speed) ease-in-out;
  height: unset;
  line-height: var(--fs);
}
.c-btn:active,
.c-btn--white:active,
.c-btn--lined:active,
.c-btn--lined-white:active,
.c34 .btn-lined:active,
.btn-uds-blue:active,
.btn:active {
  scale: 0.95;
}

.c-btn,
.btn-uds-blue,
.btn,
.c-btn--lined:hover,
.c34 .btn-lined:hover {
  --button-bg: var(--button-color);
  --button-text: white;
  --button-border: var(--button-color);
}

.c-btn--white,
.c-btn--lined-white:hover {
  --button-bg: white;
  --button-text: black;
  --button-border: white;
  mix-blend-mode: screen;
}

.c-btn--lined,
.c34 .btn-lined,
.c-btn:hover,
.btn-uds-blue:hover,
.btn:hover {
  --button-bg: none;
  --button-text: var(--button-color);
  --button-border: var(--button-color);
}

.c-btn--lined-white,
.c-btn--white:hover {
  --button-bg: none;
  --button-text: white;
  --button-border: white;
}

.c-btn--underline {
  position: relative;
  font-size: var(--fs-400, 1rem);
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 0.1em;
  color: var(--button-color);
}
.c-btn--underline:hover {
  text-decoration: none;
}

.c-btn--underline:hover::after,
.c-c71__item > a:hover .c-btn--underline::after {
  scale: 0.8 1;
}

.c-btn--underline::after {
  content: "";
  position: absolute;
  height: 1.5px;
  background-color: var(--button-color);
  inset: auto 0 0;
  transition: scale var(--speed) ease-in-out;
}

.comp:hover .comp-banner-medium div {
  transform: none;
}

.btn,
.btn-white,
.btn:hover,
.btn-white:hover,
.btn-uds-blue,
.btn-uds-blue:hover {
  box-shadow: none !important;
}

.c-breadcrumbs {
  --gap: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: var(--gap, 1rem);
       column-gap: var(--gap, 1rem);
  list-style: none;
  padding: 0;
}
.c-breadcrumbs li {
  display: flex;
  gap: var(--gap, 1rem);
}
.c-breadcrumbs a {
  text-decoration: none !important;
}
.c-breadcrumbs a:hover {
  text-decoration: underline !important;
}
.c-breadcrumbs > *:first-child {
  display: none;
}
.c-breadcrumbs > *::after {
  content: "»";
}
.c-breadcrumbs > *:last-child::after {
  content: unset;
}

.c34-wrap .comp-title {
  text-align: center;
}
.c34-wrap .comp-tiles > * + * {
  border-left: 2px solid hsl(0, 0%, 94%);
}
.c34-wrap .comp-tiles-bottom {
  padding-top: 2rem;
}
.c34-wrap .product-desc-box {
  text-align: center;
}
.c34-wrap.comp-product-wrap {
  padding-top: 0;
}
.c34-wrap .product-desc-box__brand-name {
  font-size: clamp(0.9rem, 0.62vw + 0.6rem, 1rem);
  line-height: 1.4;
  word-break: break-word;
  text-wrap: balance;
}
.c34-wrap .pricebox {
  padding-top: 0.5em;
}
.c34-wrap .price {
  font-size: 1.3rem;
}
.c34-wrap .comp-product-cat {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.c34-wrap .comp-product-cat > * {
  margin-bottom: none !important;
}
.c34-wrap .comp-product-cat > *::after {
  content: none;
}
.c34-wrap .comp-product-cat li {
  margin: 0;
}
.c34-wrap .comp-product-cat li a {
  color: var(--clr-primary);
  opacity: 0.25;
  font-size: 1rem;
  --speed: 0s;
  transition: opacity var(--speed) ease-in-out;
}
.c34-wrap .comp-product-cat li a:hover {
  opacity: 1;
}
.c34-wrap .comp-product-cat li a::after {
  background: var(--clr-primary);
}
.c34-wrap .comp-product-cat li.active a {
  cursor: default;
  opacity: 1;
}

a[rel*=external]::after {
  content: "\ebc6";
  font-family: "iconfont-intersport";
  font-size: 1em;
  margin-left: 0.5em;
  display: inline-block;
  vertical-align: bottom;
}/*# sourceMappingURL=custom.css.map */