/* ==========================================================================
   import scss files
   ========================================================================== */
/* ==========================================================================
   Variables
   ========================================================================== */
/* compass defaults
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
* {
  box-sizing: border-box; }

/* normalize setup
   ========================================================================== */
/* fonts
   ========================================================================== */
/* headings
   ========================================================================== */
/* Other layout elements
   ========================================================================== */
html,
body {
  width: 100%;
  height: 100%; }

body {
  display: grid;
  font-size: 62.5%;
  min-height: 100%;
  font-family: "Open Sans", sans-serif; }

.page-wrapper {
  display: grid;
  grid-template-rows: max-content max-content max-content;
  height: 100%; }

header,
main,
footer {
  display: grid !important; }
  header section,
  main section,
  footer section {
    display: grid; }

main {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 400;
  background: #eeefef; }
  main section {
    width: 100%;
    padding: 40px; }
    @media screen and (max-width: 414px) {
      main section {
        padding: 10px; } }
    main section button,
    main section a.submit {
      background: #0e7dc7;
      border: 1px solid #0e7dc7; }
      main section button:hover,
      main section a.submit:hover {
        opacity: 0.8;
        transition: opacity 0.2s; }
    main section.batavus-main button,
    main section.batavus-main a.submit {
      background: #e20023;
      border: 1px solid #e20023; }
      main section.batavus-main button:hover,
      main section.batavus-main a.submit:hover {
        opacity: 0.8;
        transition: opacity 0.2s; }
    main section.koga-main button,
    main section.koga-main a.submit {
      background: #0e7dc7;
      border: 1px solid #0e7dc7; }
      main section.koga-main button:hover,
      main section.koga-main a.submit:hover {
        opacity: 0.8;
        transition: opacity 0.2s; }
    main section.sparta-main button,
    main section.sparta-main a.submit {
      background: #242625;
      border: 1px solid #242625; }
      main section.sparta-main button:hover,
      main section.sparta-main a.submit:hover {
        background: #378a2a;
        border: 1px solid #378a2a;
        transition: background-color 0.2s; }
    main section.raleigh-main button,
    main section.raleigh-main a.submit {
      background: #000000;
      border: 1px solid #000000; }
      main section.raleigh-main button:hover,
      main section.raleigh-main a.submit:hover {
        background: #181818;
        border: 1px solid #181818;
        transition: background-color 0.2s; }
    main section.haibike-main button,
    main section.haibike-main a.submit {
      background: #ffffff;
      border: 2px solid #000000;
      color: #000000; }
      main section.haibike-main button:hover,
      main section.haibike-main a.submit:hover {
        background: #000000;
        border: 2px solid #000000;
        transition: background-color 0.2s;
        color: #ffffff; }
    main section.ghost-main button,
    main section.ghost-main a.submit {
      background: #000000;
      border: 1px solid #000000; }
      main section.ghost-main button:hover,
      main section.ghost-main a.submit:hover {
        background: #181818;
        border: 1px solid #181818;
        transition: background-color 0.2s; }
    main section.lapierre-main button,
    main section.lapierre-main a.submit {
      background: #000000;
      border: 1px solid #000000; }
      main section.lapierre-main button:hover,
      main section.lapierre-main a.submit:hover {
        background: #181818;
        border: 1px solid #181818;
        transition: background-color 0.2s; }
  main .content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15); }
    @media screen and (max-width: 414px) {
      main .content-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr max-content; } }
  main .content-section {
    width: 100%;
    max-width: 775px;
    background-color: #ffffff;
    padding: 40px;
    opacity: 1;
    transition: all 0.15s ease-in-out;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    -webkit-backface-visibility: hidden;
    -webkit-transform: rotate(0); }
    main .content-section h1 {
      margin-top: 0;
      font-weight: 400;
      text-align: center; }
    main .content-section p {
      text-align: center; }
  main .content-section-img {
    background-color: #fff;
    display: grid; }
    main .content-section-img img {
      width: 100%;
      max-width: 460px;
      display: grid;
      height: 100%; }
  main .brands-main {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media screen and (max-width: 1024px) {
      main .brands-main {
        height: 100vw; } }
    @media screen and (max-width: 414px) {
      main .brands-main {
        height: 100vh; } }
    main .brands-main .content-wrapper .content-section .brands {
      display: flex;
      justify-content: center;
      align-items: center; }
      @media screen and (max-width: 414px) {
        main .brands-main .content-wrapper .content-section .brands {
          flex-direction: column; } }
      main .brands-main .content-wrapper .content-section .brands .brand {
        width: 33%;
        max-width: 258px;
        height: auto;
        padding: 10px; }
        @media screen and (max-width: 414px) {
          main .brands-main .content-wrapper .content-section .brands .brand {
            width: 100%; } }
        main .brands-main .content-wrapper .content-section .brands .brand img {
          width: 100%;
          height: auto; }

/*=========================================
=            Convert px to rem            =
=========================================*/
/*=====================================
=            Media queries            =
=====================================*/
/*============================
=            MISC            =
============================*/
/* ==========================================================================
  buttons
  ========================================================================== */
a.submit,
button {
  padding: 12px 20px !important;
  display: block;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  display: grid;
  justify-self: center; }
  a.submit span,
  button span {
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 600; }

/* Main Menu
========================================================================== */
/* ==========================================================================
  forms
  ========================================================================== */
form {
  margin-top: 40px; }
  form a.submit,
  form button[type="submit"] {
    margin: 10px 0 10px 0 !important; }
  form .error-message {
    color: #e20023;
    margin: 0 0 10px 0;
    display: grid;
    justify-items: start;
    width: 100%; }
  form label {
    margin-bottom: 5px; }
  form input[type="text"],
  form input[type="number"],
  form input[type="date"],
  form select {
    height: 45px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #e3e3e3; }
  form select {
    background: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat;
    background-position: right 10px center;
    /* Change the px value here to change the distance */
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 4px 25px 4px 10px; }
  form .row.submit-btn {
    display: grid;
    align-content: center; }
  form .row div {
    display: grid;
    grid-template-columns: 35% 35% 1fr;
    align-items: center;
    margin-bottom: 10px; }
    @media screen and (max-width: 414px) {
      form .row div {
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr; }
        form .row div div {
          margin-bottom: 0; } }
    form .row div .tooltip {
      position: relative;
      display: inline-block;
      width: 20px;
      justify-self: left;
      margin-left: 20px;
      cursor: help; }
      @media only screen and (max-width: 567px) {
        form .row div .tooltip {
          justify-self: end; } }
      form .row div .tooltip img {
        width: 20px; }
    form .row div .tooltip .tooltiptext {
      width: 230px;
      background-color: #ffffff;
      color: #000001;
      font-size: 10px;
      line-height: 1.5rem;
      text-align: left;
      border-radius: 6px;
      padding: 10px 15px;
      position: absolute;
      z-index: 1;
      top: 120%;
      right: -90%;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.3s;
      -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
      -moz-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
      box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15); }
    form .row div .tooltip:hover .tooltiptext {
      visibility: visible;
      opacity: 1; }
    form .row div div.flexBox {
      display: flex; }
      form .row div div.flexBox input {
        width: 90%; }
  form .row.postcode div {
    grid-template-columns: 35% 20% 1fr; }
    form .row.postcode div #houseNumber {
      margin-left: 10px; }
    @media screen and (max-width: 414px) {
      form .row.postcode div {
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr; } }
    form .row.postcode div div {
      grid-template-columns: 60% 40%; }
      @media screen and (max-width: 414px) {
        form .row.postcode div div {
          width: 140px; } }
  form .row.checkbox-row div {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    margin-bottom: 0px; }
    @media screen and (max-width: 414px) {
      form .row.checkbox-row div {
        align-items: start; } }
    form .row.checkbox-row div input {
      margin-top: 3px; }
      @media screen and (max-width: 414px) {
        form .row.checkbox-row div input {
          margin-top: 3px; } }
    form .row.checkbox-row div input[type="checkbox"] {
      accent-color: #0e7dc7; }
    form .row.checkbox-row div label {
      cursor: pointer; }
      form .row.checkbox-row div label span {
        line-height: 1.3; }
        form .row.checkbox-row div label span a:hover {
          text-decoration: none; }
  form .row.categories-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start; }
    @media only screen and (max-width: 567px) {
      form .row.categories-row {
        flex-direction: row; } }
    form .row.categories-row div {
      display: flex;
      flex-direction: column;
      width: 230px;
      padding: 0 15px; }

      @media only screen and (max-width: 567px) {
      form .row.categories-row div {
        width: 50%; }
      form .row.categories-row div.description {
        width: 100%; }
      form .row div:nth-child(odd) .tooltip .tooltiptext{
       right: -30vw; }
      form .row div:nth-child(even) .tooltip .tooltiptext{
       right: -10vw; }}

      form .row.categories-row div label {
        width: 100%;
        border: 1px solid #fff; }
        form .row.categories-row div label img {
          width: 100%; }
        form .row.categories-row div label:hover {
          background: #eeefef; }
      form .row.categories-row div input {
        display: none; }
      form .row.categories-row div input:checked + label {
        -webkit-box-shadow: 0 3px 5px 5px rgba(0, 0, 0, 0.50);
        -moz-box-shadow: 0 3px 5px 5px rgba(0, 0, 0, 0.50);
        box-shadow: 0 3px 5px 5px rgba(0, 0, 0, 0.50); }
      form .row.categories-row div .description {
        flex-direction: row; }
      form .row.categories-row div.productSize {
        flex-direction: row; }
        form .row.categories-row div.productSize label {
          border: 0;
          width: auto;
          padding-right: 30px; }
          form .row.categories-row div.productSize label:hover {
            background: none; }
      form .row.categories-row div .tooltip {
        position: relative;
        display: inline-block;
        width: 20px;
        justify-self: center;
        cursor: help;
        margin-left: 0; }
        @media only screen and (max-width: 567px) {
          form .row.categories-row div .tooltip {
            justify-self: end; } }
        form .row.categories-row div .tooltip img {
          width: 20px; }
    form .row.categories-row.four-categories {
      flex-wrap: wrap;
      padding: 0 80px; }
      @media only screen and (max-width: 567px) {
        form .row.categories-row.four-categories {
          padding: 0; } }
  form .required-txt {
    display: grid;
    text-align: center;
    width: 100%;
    font-size: 12px; }
  form .hiddenFields {
    display: none; }

/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block; }

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none; }

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* header
   ========================================================================== */
header section {
  grid-template-columns: 1fr;
  width: 100%;
  height: 64px;
  border-bottom: 1px solid #e3e3e3; }
  header section .hero-img-desktop,
  header section .hero-img-mobile {
    display: none; }
  @media screen and (min-width: 415px) {
    header section .hero-img-desktop {
      position: relative;
      padding-bottom: 30%;
      display: block; }
      header section .hero-img-desktop img {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%; } }
  @media screen and (max-width: 414px) {
    header section .hero-img-mobile {
      position: relative;
      padding-bottom: 100%;
      display: block; }
      header section .hero-img-mobile img {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%; } }
  header section .logo-wrapper {
    display: grid;
    position: relative; }
    @media screen and (max-width: 414px) {
      header section .logo-wrapper {
        justify-items: center; } }
    header section .logo-wrapper a.logo {
      display: grid;
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 30; }
      @media screen and (max-width: 414px) {
        header section .logo-wrapper a.logo {
          position: relative;
          top: 0;
          left: 0; } }
      header section .logo-wrapper a.logo img.batavus-logo, header section .logo-wrapper a.logo img.koga-logo, header section .logo-wrapper a.logo img.sparta-logo, header section .logo-wrapper a.logo img.raleigh-logo {
        height: 64px; }
      header section .logo-wrapper a.logo img.ghost-logo, header section .logo-wrapper a.logo img.lapierre-logo {
        height: 64px; }
      header section .logo-wrapper a.logo img.sparta-logo, header section .logo-wrapper a.logo img.raleight-logo, header section .logo-wrapper a.logo img.ghost-logo, header section .logo-wrapper a.logo img.lapierre-logo {
        background-color: #1e1e1d; }
  header section.batavus-hero-header, header section.koga-hero-header, header section.sparta-hero-header, header section.raleigh-hero-header, header section.haibike-hero-header, header section.ghost-hero-header, header section.lapierre-hero-header {
    grid-template-columns: 1fr;
    position: relative;
    height: 100%; }
  header section.batavus-hero-header .logo-wrapper {
    background-color: #ffffff; }
  header section.koga-hero-header .logo-wrapper {
    background-color: #0e7dc7; }
  header section.sparta-hero-header .logo-wrapper {
    background-color: #1e1e1d; }
  header section.raleigh-hero-header .logo-wrapper {
    background-color: #ffffff; }
  header section.haibike-hero-header .logo-wrapper {
    background-color: #ffffff; }
  @media screen and (max-width: 414px) {
    header section.ghost-hero-header .logo-wrapper {
      background-color: #000;
      height: 64px;
      align-content: center; } }
  @media screen and (max-width: 414px) {
    header section.lapierre-hero-header .logo-wrapper {
      background-color: #000;
      height: 64px;
      align-content: center; } }

/* footer
   ========================================================================== */
footer {
  max-width: 100%;
  border-top: 1px solid #e3e3e3; }
  footer section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-content: center;
    grid-template-rows: max-content max-content max-content;
    padding: 70px 0; }
    footer section .footerSocial {
      display: flex;
      justify-content: center;
      margin: 0 0 40px; }
      footer section .footerSocial a {
        background: no-repeat;
        background-image: url("https://image.s10.sfmc-content.com/lib/fe3f15707564077f761370/m/1/e12bec46-9886-4d06-9673-5d056c5aa805.png");
        background-size: 360px 240px;
        width: 60px;
        height: 60px;
        display: inline-block;
        margin: 0 14px;
        position: relative; }
    footer section .footerLinks {
      text-align: center;
      padding: 0 0 40px; }
      footer section .footerLinks a {
        margin: 0 0 0 8px;
        padding: 0 10px 0 0;
        font-size: 1.5em;
        font-weight: 400;
        color: #000;
        text-decoration: none;
        border-right: 1px solid #000;
        -moz-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        -webkit-transition: all 0.1s ease-in-out;
        transition: all 0.1s ease-in-out; }
        @media screen and (max-width: 374px) {
          footer section .footerLinks a {
            font-size: 9px;
            line-height: 2; } }
        @media screen and (min-width: 375px) {
          footer section .footerLinks a {
            line-height: 2; } }
        footer section .footerLinks a:last-of-type {
          padding: 0;
          border: 0; }
    footer section .partoff {
      width: 100%;
      font-size: 1.4em;
      font-weight: 400;
      line-height: 1.3em;
      color: #999;
      text-align: center; }
      @media screen and (max-width: 414px) {
        footer section .partoff {
          font-size: 11px;
          padding: 0 20px; } }
    footer section.batavus-footer .footerSocial a.youtube {
      background-position: -240px 0px; }
      footer section.batavus-footer .footerSocial a.youtube:hover {
        background-position: -240px -60px; }
    footer section.batavus-footer .footerSocial a.instagram {
      background-position: -300px 0px; }
      footer section.batavus-footer .footerSocial a.instagram:hover {
        background-position: -300px -60px; }
    footer section.batavus-footer .footerSocial a.twitter {
      background-position: -60px 0px; }
      footer section.batavus-footer .footerSocial a.twitter:hover {
        background-position: -60px -60px; }
    footer section.batavus-footer .footerSocial a.facebook {
      background-position: 0px 0px; }
      footer section.batavus-footer .footerSocial a.facebook:hover {
        background-position: 0px -60px; }
    footer section.batavus-footer .footerLinks a:hover {
      color: #e20023;
      text-decoration: none; }
    footer section.koga-footer .footerSocial a.youtube {
      background-position: -240px 0px; }
      footer section.koga-footer .footerSocial a.youtube:hover {
        background-position: -240px -120px; }
    footer section.koga-footer .footerSocial a.instagram {
      background-position: -300px 0px; }
      footer section.koga-footer .footerSocial a.instagram:hover {
        background-position: -300px -120px; }
    footer section.koga-footer .footerSocial a.twitter {
      background-position: -60px 0px; }
      footer section.koga-footer .footerSocial a.twitter:hover {
        background-position: -60px -120px; }
    footer section.koga-footer .footerSocial a.facebook {
      background-position: 0px 0px; }
      footer section.koga-footer .footerSocial a.facebook:hover {
        background-position: 0px -120px; }
    footer section.koga-footer .footerLinks a:hover {
      color: #0e7dc7;
      text-decoration: none; }
    @media screen and (max-width: 414px) {
      footer section.sparta-footer .footerSocial a {
        transform: scale(0.9);
        margin: 0 5px; } }
    footer section.sparta-footer .footerSocial a.linkedin {
      background-position: -120px 0px; }
      footer section.sparta-footer .footerSocial a.linkedin:hover {
        background-position: -120px -180px; }
    footer section.sparta-footer .footerSocial a.youtube {
      background-position: -240px 0px; }
      footer section.sparta-footer .footerSocial a.youtube:hover {
        background-position: -240px -180px; }
    footer section.sparta-footer .footerSocial a.twitter {
      background-position: -60px 0px; }
      footer section.sparta-footer .footerSocial a.twitter:hover {
        background-position: -60px -180px; }
    footer section.sparta-footer .footerSocial a.instagram {
      background-position: -300px 0px; }
      footer section.sparta-footer .footerSocial a.instagram:hover {
        background-position: -300px -180px; }
    footer section.sparta-footer .footerSocial a.facebook {
      background-position: 0px 0px; }
      footer section.sparta-footer .footerSocial a.facebook:hover {
        background-position: 0px -180px; }
    footer section.sparta-footer .footerLinks a:hover {
      color: #45ac34;
      text-decoration: none; }
    @media screen and (max-width: 414px) {
      footer section.raleigh-footer .footerSocial a {
        transform: scale(0.9);
        margin: 0 5px; } }
    footer section.raleigh-footer .footerSocial a.linkedin {
      background-position: -120px 0px; }
    footer section.raleigh-footer .footerSocial a.youtube {
      background-position: -240px 0px; }
    footer section.raleigh-footer .footerSocial a.twitter {
      background-position: -60px 0px; }
    footer section.raleigh-footer .footerSocial a.instagram {
      background-position: -300px 0px; }
    footer section.raleigh-footer .footerSocial a.facebook {
      background-position: 0px 0px; }
    footer section.raleigh-footer .footerLinks a:hover {
      color: #000000;
      text-decoration: underline; }
    footer section.raleigh-footer .line {
      color: #727272; }
    @media screen and (max-width: 414px) {
      footer section.haibike-footer .footerSocial a {
        transform: scale(0.9);
        margin: 0 5px; } }
    footer section.haibike-footer .footerSocial a.linkedin {
      background-position: -120px 0px; }
    footer section.haibike-footer .footerSocial a.youtube {
      background-position: -240px 0px; }
    footer section.haibike-footer .footerSocial a.twitter {
      background-position: -60px 0px; }
    footer section.haibike-footer .footerSocial a.instagram {
      background-position: -300px 0px; }
    footer section.haibike-footer .footerSocial a.facebook {
      background-position: 0px 0px; }
    footer section.haibike-footer .footerLinks a:hover {
      color: #000000;
      text-decoration: underline; }
    footer section.haibike-footer .line {
      color: #727272; }
      footer section.haibike-footer .line strong {
        color: #000000; }
    @media screen and (max-width: 414px) {
      footer section.ghost-footer .footerSocial a {
        transform: scale(0.9);
        margin: 0 5px; } }
    footer section.ghost-footer .footerSocial a.linkedin {
      background-position: -120px 0px; }
    footer section.ghost-footer .footerSocial a.youtube {
      background-position: -240px 0px; }
    footer section.ghost-footer .footerSocial a.twitter {
      background-position: -60px 0px; }
    footer section.ghost-footer .footerSocial a.instagram {
      background-position: -300px 0px; }
    footer section.ghost-footer .footerSocial a.facebook {
      background-position: 0px 0px; }
    footer section.ghost-footer .footerLinks a:hover {
      color: #000000;
      text-decoration: underline; }
    footer section.ghost-footer .line {
      color: #000000; }
      footer section.ghost-footer .line strong {
        color: #000000; }
    @media screen and (max-width: 414px) {
      footer section.lapierre-footer .footerSocial a {
        transform: scale(0.9);
        margin: 0 5px; } }
    footer section.lapierre-footer .footerSocial a.linkedin {
      background-position: -120px 0px; }
    footer section.lapierre-footer .footerSocial a.youtube {
      background-position: -240px 0px; }
    footer section.lapierre-footer .footerSocial a.twitter {
      background-position: -60px 0px; }
    footer section.lapierre-footer .footerSocial a.instagram {
      background-position: -300px 0px; }
    footer section.lapierre-footer .footerSocial a.facebook {
      background-position: 0px 0px; }
    footer section.lapierre-footer .footerLinks a:hover {
      color: #000000;
      text-decoration: underline; }
    footer section.lapierre-footer .line {
      color: #727272; }
      footer section.lapierre-footer .line strong {
        color: #000000; }
