:root {
  --global-blue: #0e7dc2;
  --hover-blue: #0b6aa6;
}

@font-face {
  font-family: 'erbaum';
 src: url('../fonts/Erbaum-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Assistant';
  src: url('../fonts/Assistant-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Assistant';
  src: url('../fonts/Assistant-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Assistant';
  src: url('../fonts/Assistant-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Assistant';
  src: url('../fonts/Assistant-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Assistant';
  src: url('../fonts/Assistant-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-display: swap;
}


.cart-additionalCheckoutButtons {
    display: none !important;
}

.previewCartCheckout-additionalCheckoutButtons {
    display: none !important;
}

/*Home page carousel*/

  .hero-main-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
  }
  .hero-main-banner__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .hero-main-banner__track {
    position: relative;
    width: 100%;
    min-height: var(--hero-desktop-height, 760px);
    height: var(--hero-desktop-height, 760px);
  }
  .hero-main-banner__slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    transform: translateX(100%);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: transform 0.55s ease;
    will-change: transform;
  }
  .hero-main-banner__slide.is-active {
    z-index: 3;
    transform: translateX(0);
    pointer-events: auto;
  }
  .hero-main-banner__slide.is-prev {
    z-index: 2;
    transform: translateX(-100%);
    pointer-events: none;
  }
  .hero-main-banner__slide.is-next {
    z-index: 2;
    transform: translateX(100%);
    pointer-events: none;
  }
  .hero-main-banner__slide.is-initial {
    position: relative;
    z-index: 3;
    transform: translateX(0);
    pointer-events: auto;
  }
  .hero-main-banner__media,
  .hero-main-banner__media picture,
  .hero-main-banner__image {
    display: block;
    width: 100%;
    height: var(--hero-desktop-height, 760px);
  }
  .hero-main-banner__image {
    object-fit: cover;
    object-position: center center;
  }
  .hero-main-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
    pointer-events: none;
  }
  .hero-main-banner__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 40px 56px;
    box-sizing: border-box;
  }
  .hero-main-banner__content--left {
    justify-content: flex-start;
    text-align: left;
  }
  .hero-main-banner__content--center {
    justify-content: center;
    text-align: center;
  }
  .hero-main-banner__content--right {
    justify-content: flex-end;
    text-align: right;
  }
  .hero-main-banner__content-inner {
    width: 100%;
    max-width: 760px;
    color: #fff;
  }
  .hero-main-banner__subheading {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
  }
  .hero-main-banner__heading {
    margin: 0;
    font-size: 60px;
    line-height: 0.95;
    font-weight: 800;
    color: #fff;
  }
  .hero-main-banner__pre-heading {
    display: inline;
    margin-right: 10px;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
  }
  .hero-main-banner__heading-text {
    display: inline;
  }
  .hero-main-banner__actions {
    margin-top: 26px;
  }
  .hero-main-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 48px;
    padding: 12px 22px;
    background: #1478c9;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }
  .hero-main-banner__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
  }
  .hero-main-banner__arrow--prev { left: 20px; }
  .hero-main-banner__arrow--next { right: 20px; }
  .hero-main-banner__dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
  }
  .hero-main-banner__dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    padding: 0;
  }
  .hero-main-banner__dot.is-active {
    background: #fff;
  }
  @media (max-width: 767px) {
  .hero-main-banner {

  }
  .hero-main-banner__track,
  .hero-main-banner__slide {
    min-height: var(--hero-mobile-height, 320px);
    height: var(--hero-mobile-height, 320px);
    background: #efefef;
  }
  .hero-main-banner__media,
  .hero-main-banner__media picture,
  .hero-main-banner__image {
    display: block;
    width: 100%;
    height: 260px;
    min-height: 260px;
  }
  .hero-main-banner__image {
    object-fit: cover;
    object-position: center center;
  }
  .hero-main-banner__overlay {
    display: none;
  }
  .hero-main-banner__content {
    position: absolute;
    inset: auto 0 0 0;
    top: auto;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(var(--hero-mobile-height, 320px) - 400px);
    min-height: calc(var(--hero-mobile-height, 320px) - 400px);
    padding: 28px 20px 40px;
    box-sizing: border-box;

  }
  .hero-main-banner__content--left,
  .hero-main-banner__content--center,
  .hero-main-banner__content--right {
    justify-content: center;
    text-align: center;
  }
  .hero-main-banner__content-inner {
    width: 100%;
    max-width: 100%;
    text-align: center;
    color: #0f2433;
  }
  .hero-main-banner__subheading {
    font-size: 16px;
    margin: 0 0 8px;
    color: #0f2433;
  }
  .hero-main-banner__heading {
    display: block;
    margin: 0;
    font-size: 26px;
    line-height: 1.08;
    font-weight: 800;
    color: #0f2433;
  }
  .hero-main-banner__pre-heading,
  .hero-main-banner__heading-text {
    display: inline;
    color: inherit;
  }
  .hero-main-banner__actions {
    margin-top: 22px;
  }
  .hero-main-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    min-height: 42px;
    padding: 12px 24px;
    font-size: 13px;
    line-height: 1;
  }
  .hero-main-banner__arrow {
    display: none;
  }
  .hero-main-banner__dots {
    bottom: 12px;
  }
  .hero-main-banner__dot {
    width: 10px;
    height: 10px;
  }
  .hero-main-banner__heading {
    display: block !important;
  }
}

