/**
 * @file
 * Catalog style.
 */
/* stylelint-disable scss/at-import-partial-extension */
/* stylelint-disable scss/at-import-partial-extension */ /**
 * @file
 * Aspect ratio mixins.
 */
/**
 * @file
 * Centering mixin.
 *
 * Center an element orizontally, vertically or both, assuming the parent
 * element has relative or absolute position.
 * https://css-tricks.com/snippets/sass/centering-mixin/
 */
/**
 * @file
 * Globally used mixins and functions.
 *
 * Here you can add your custom SASS mixins or functions.
 */
/**
 * @file
 * Globally tools for images.
 */
.catalog-tree-card__cover-img {
  height: 100%;
  overflow: hidden;
}
.catalog-tree-card__cover-img img {
  width: 100%;
  max-width: inherit;
  height: 100%;
  object-fit: cover;
}

/* stylelint-enable scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/* stylelint-disable-line scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/**
 * @file
 * Shadows variables.
 */
/**
 * @file
 * Animations elements.
 */
@keyframes slideOutRight {
  from {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(5px, 0, 0);
  }
}
@keyframes selectedElementOpacity {
  0% {
    opacity: 100%;
  }
  10% {
    opacity: 60%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes opacityDecrease {
  from {
    opacity: 100%;
  }
  to {
    opacity: 60%;
  }
}
@keyframes selectedElementPaddingLeft {
  0% {
    padding-left: 0;
  }
  40% {
    padding-left: 0.75rem;
  }
  100% {
    padding-left: 0;
  }
}
@keyframes slideInFromRight {
  from {
    visibility: visible;
    transform: translate3d(32px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/**
 * @file
 * All stuff for typography.
 */
.catalog-tree-card__number {
  font-family: var(--heading-font);
  font-display: optional;
}

/* HEADING */
/* TEXT & CONTENT */
.catalog-tree-card__description, .catalog-tree-card__list-el {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

.catalog-tree-card__title-secondary, .catalog-tree-card__title {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

.catalog-tree-card__description, .catalog-tree-card__list-el {
  font-size: 0.875rem;
  line-height: 1.14;
}

.catalog-tree-card__number {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  line-height: 1.14;
  letter-spacing: 3.5px;
}

.catalog-tree-card__list-btn {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

/**
 * @file
 * Buttons elements.
 *
 * Style for buttons
 */
/**
 * @file
 * Variables for links style.
 */
.catalog-tree-card__cta-text, .catalog-tree-card__cta-text-black, .catalog-tree-card__link {
  font-family: var(--font-family-base);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.14;
  letter-spacing: normal;
  position: relative;
  padding-right: 1.5rem;
  color: #1c1c1c;
  text-decoration: none;
}
.catalog-tree-card__cta-text::after, .catalog-tree-card__cta-text-black::after, .catalog-tree-card__link::after {
  position: absolute;
  top: -0.2rem;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  background: url("../../../../images/icons/icon-triangle--black.svg");
  background-position: center;
}

.catalog-tree-card:hover .catalog-tree-card__cta-text-black, .catalog-tree-card:hover .catalog-tree-card__cta-text, .catalog-tree-card__cta-text:hover, .catalog-tree-card__cta-text-black:hover, .catalog-tree-card__link:hover {
  color: #1c1c1c;
}
.catalog-tree-card:hover .catalog-tree-card__cta-text-black::after, .catalog-tree-card:hover .catalog-tree-card__cta-text::after, .catalog-tree-card__cta-text:hover::after, .catalog-tree-card__cta-text-black:hover::after, .catalog-tree-card__link:hover::after {
  right: -0.25rem;
  transition: right 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-name: slideOutRight;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

/**
 * @file
 * Background elements style.
 */
/**
 * @file
 * Elements for Video.
 */
/**
 * @file
 * Cards variables element style.
 */
/**
 * @file
 * Forms variables element style.
 */
/* INLINE SEARCH FORM. */
/**
 * @file
 * Search, common elements style.
 */
/**
 * @file
 * Accordion elements variables.
 */
/* stylelint-enable scss/at-import-partial-extension */
/* stylelint-disable-line scss/at-import-partial-extension */
.catalog-tree {
  display: flex;
  flex-direction: column;
}
.catalog-tree__el {
  margin-bottom: 1.5rem;
}
.catalog-tree .card-element {
  height: 100%;
}
.catalog-tree__components-first {
  order: -1;
}
.catalog-tree__content {
  background-color: #f5f5f5;
}
.catalog-tree__content-wr {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.catalog-tree__navigation {
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
}
.catalog-tree__navigation-desc {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .catalog-tree__navigation-desc {
    font-size: 1.125rem;
  }
  .catalog-tree__navigation-desc p {
    font-size: 1.125rem;
  }
}

:root {
  --cover-height: 11.5rem;
}
@media (min-width: 576px) {
  :root {
    --cover-height: 21rem;
  }
}
@media (min-width: 768px) {
  :root {
    --cover-height: 14.5rem;
  }
}
@media (min-width: 1024px) {
  :root {
    --cover-height: 15.5rem;
  }
}
@media (min-width: 1680px) {
  :root {
    --cover-height: 21rem;
  }
}

.catalog-tree-card__container {
  height: 100%;
}
.catalog-tree-card__cover {
  position: relative;
  height: 100%;
  color: #fff;
}
.catalog-tree-card__cover-text {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.catalog-tree-card__covertext {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - var(--cover-height));
}
.catalog-tree-card__covertext, .catalog-tree-card__text, .catalog-tree-card__cover-text {
  padding: 1.5rem 1rem;
}
.catalog-tree-card__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.catalog-tree-card__list {
  padding-left: 1rem;
}
.catalog-tree-card__list-el {
  margin-bottom: 0.5rem;
}
.catalog-tree-card__list-el a {
  color: #000;
  text-decoration: none;
}
.catalog-tree-card__list-btn {
  color: #1c1c1c;
}
.catalog-tree-card__list-wr {
  margin-bottom: 1rem;
}
.catalog-tree-card__number {
  margin-bottom: 0.5rem;
}
.catalog-tree-card__title {
  margin-bottom: 0;
}
.catalog-tree-card__title-secondary {
  margin-bottom: 1rem;
  color: #008444;
}
.catalog-tree-card__description {
  margin-bottom: 1.5rem;
  color: #1c1c1c;
}
.catalog-tree-card__cta {
  padding-top: 0.5rem;
  text-align: right;
}
.catalog-tree-card__cta-text {
  color: #fff;
}
.catalog-tree-card__cta-text:hover {
  color: #fff;
}
.catalog-tree-card__cta-text::after {
  background: url("../../../../images/icons/icon-triangle--white.svg");
}
.catalog-tree-card.js-anchor-selected .catalog-tree-card__title, .catalog-tree-card.js-anchor-selected .catalog-tree-card__title-secondary {
  animation-name: selectedElementPaddingLeft;
  animation-duration: 2s;
  animation-fill-mode: both;
}
.catalog-tree-card.js-anchor-selected .catalog-tree-card__cover-img img {
  animation-name: selectedElementOpacity;
  animation-duration: 2s;
  animation-fill-mode: both;
}
.catalog-tree-card:hover .catalog-tree-card__cta-text {
  color: #fff;
}
.catalog-tree-card:hover .catalog-tree-card__cta-text-black {
  color: #000;
}

.family-entity--card .catalog-tree-card__title-secondary {
  font-size: 1.125rem;
}

.section-entity .catalog-content-bg,
.catalog-entity .catalog-content-bg {
  position: relative;
  padding-bottom: 4rem;
  background-image: url("../../../../images/background/catalog/catalog-bg_xs.webp");
  background-repeat: no-repeat;
  background-position: top center;
}
@media (min-width: 1024px) {
  .section-entity .catalog-content-bg,
  .catalog-entity .catalog-content-bg {
    background-image: url("../../../../images/background/catalog/catalog-bg_xl.webp");
  }
}

.subfamily-page .product-teaser-list {
  height: 100%;
  padding: 1rem;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.subfamily-page .product-teaser-list:hover {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.section-entity--card {
  min-height: 14rem;
}
@media (min-width: 768px) {
  .section-entity--card {
    min-height: 16rem;
  }
}
.section-entity .catalog-tree-card__cover-text {
  background: rgba(17, 84, 44, 0.9019607843);
}
.section-entity .catalog-tree-card__title {
  min-height: 3.75rem;
}

/*# sourceMappingURL=components.catalog.css.map */
