/** Shopify CDN: Minification failed

Line 115:35 Expected ":"

**/
.only-one-block.num-1 .promo-block{
  max-width: 100%;
  /* aspect-ratio: 1/1.25; */
  overflow:hidden;
  height:100%;
}

.num-1 .promo-block{
  max-width: 100%;
  aspect-ratio: 2/.5;
  overflow:hidden;
}
.num-2 .promo-block{
    max-width: 50%;
    aspect-ratio: 2/.85;
    overflow:hidden;
}
.num-3 .promo-block{
    max-width: 33.333333%;
    overflow:hidden;
    aspect-ratio:2/1;
}
.num-2 .promo-block .promo-block__image{
  aspect-ratio: 2/.85;
}

.promo-block {
  position: relative;
  text-decoration:none;
  display: block;
  flex: 1;
  background-color: rgb(var(--color-header-background));
}
.promo-block_after::after {
  content: "";
  display: block;
  width: 0;
}
.promo-block__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.4rem;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}
.promo-block__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-beconcept-titles);
  overflow: hidden;
  z-index: 2;
  opacity: var(--opacity);
  transition: opacity var(--duration-default);
}
.promo-block__heading {
  position: relative;
  z-index: 3;
  margin: 0;
  pointer-events: none;
  text-transform: var(--font-heading-text-transform);
}
/* .promo-block__heading.hover-effect::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0rem;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  transform: translateY(-50%);
  border-radius: 100%;
  background-color: transparent;
  transition: background-color var(--duration-default);
} */
.promo-block__image {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  display: block;
  overflow: hidden;
}
.promo-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.promo-block__button {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  max-width: 50%;
}
.promo-block__link-overlay:empty {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: all;
  z-index: 2;
}
.promo-block__content .promo-block__heading{
  color: var(--color-beconcept-lightgray);
  text-align:center;
  text-decoration:none !important;e
}
.promo-block.hover-effect img{
  transform: scale(1);
  transition-duration: 500ms;
}
.promo-block.hover-effect:hover img {
  transform: scale(1.1);
  transition-duration: 500ms;
}