/*
  Mixin to manage responsive breakpoints
  @author Kitty Giraudel
  @param {String} $breakpoint - Breakpoint name
  @require $breakpoints
*/
.pb-medium {
  padding-bottom: var(--space-25);
}

.collection-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  /*//ADDED//*/
  max-height: 100%;
  min-height: auto
}
.collection-banner__title-only {
  margin-top: 4.2857142857rem;
}
.collection-banner__title-only .collection-banner__container {
  padding-top: 0;
}
.collection-banner__image img {
  width: 100%;
  height: 100%;
  display: block;
}
.collection-banner__background {
  width: 100%;
}
.collection-banner__container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
 padding-top:4.2857142857rem;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .collection-banner__container {
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
  }
}
.collection-banner__content {
  text-align: center;
  margin: auto;
  color: #fff;
  /*gap: 0.001rem;*/
  gap: 0;
  padding-left: 5rem;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .collection-banner__content {
    /*max-width:35.7142857143rem;*/
    max-width: 100%;
    text-align: left;
    margin: 0;
  }
}
.collection-banner__heading {
  /* font-size:1.4285714286rem;
    font-weight:500;
    line-height:110%;
    letter-spacing:-0.8px
    font-size: 2.8571428571rem;*/
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.2rem;
}
@media (min-width: 1025px) {
  .collection-banner__heading {
    font-size: 2.8571428571rem;
    font-weight: 700;
  }
}
.collection-banner__heading--light {
  /*color:var(--color-white)*/
    color: #fff
}
}
.collection-banner__video-has-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.collection-banner__video--desk {
  display: none;
}
.collection-banner__video--desk video {
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .collection-banner__video--desk {
    display: block;
  }
}
.collection-banner__video--mob {
  display: block;
}
.collection-banner__video--mob video {
  width: auto;
  height: 100%;
  max-height: 28.5714285714rem;
}
@media (min-width: 1024px) {
  .collection-banner__video--mob {
    display: none;
  }
}