/**
 * @file
 * Card 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.
 */
.card__bg-background {
  height: 100%;
  overflow: hidden;
}
.card__bg-background 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.
 */
/* HEADING */
/* TEXT & CONTENT */
.card__categories-list__value {
  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;
}

.card-splitted__title, .card__title {
  font-family: var(--font-family-base);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.5rem;
  letter-spacing: normal;
}

/**
 * @file
 * Buttons elements.
 *
 * Style for buttons
 */
/**
 * @file
 * Variables for links style.
 */
.card__link, .card__link-text {
  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;
}
.card__link::after, .card__link-text::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;
}

.card:hover .card__link,
.card:hover .card__link-text, .card__link:hover, .card__link-text:hover {
  color: #1c1c1c;
}
.card:hover .card__link::after,
.card:hover .card__link-text::after, .card__link:hover::after, .card__link-text: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 */
.card {
  position: relative;
  height: 20rem;
}
.card__bg {
  position: relative;
  height: 100%;
}
.card__bg .field--type-image {
  height: 100%;
}
.card__bg img {
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.card__content {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1.5rem 1rem;
  color: #fff;
}
.card__content__top {
  display: flex;
  justify-content: space-between;
}
.card__date {
  font-size: 0.87rem;
  font-weight: 700;
}
.card__categories {
  width: 50%;
  text-align: right;
}
.card__title {
  margin-top: auto;
  margin-bottom: 1rem;
  font-family: var(--font-family-base);
}
.card__title a {
  color: inherit;
}
.card__title a:hover {
  color: inherit;
}
.card__pre_title {
  font-size: 14px;
  color: #008444;
}
.card__summary {
  margin-bottom: 1rem;
}
.card__cta {
  text-align: right;
}
.card__link, .card__link-text {
  color: #fff;
}
.card__link::after, .card__link-text::after {
  background: url("../../../images/icons/icon-triangle--white.svg") no-repeat center;
}
.card__categories-list {
  margin-bottom: 1rem;
}
.card:hover .card__bg img {
  transform: scale(1.03);
}
.card:hover .card__link,
.card:hover .card__link-text {
  color: #fff;
}

.card-splitted {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.card-splitted img {
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.card-splitted__content-top {
  position: relative;
  height: 13rem;
}
@media (min-width: 576px) {
  .card-splitted__content-top {
    height: 15rem;
  }
}
.card-splitted__content-top .card__content__center {
  display: flex;
  align-items: flex-end;
}
.card-splitted__title {
  margin-bottom: 0;
}
.card-splitted__content-bottom {
  padding: 1rem;
}
.card-splitted__content-bottom-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 2.5rem;
}
.card-splitted__content-bottom .card__cta .card__link {
  color: #1c1c1c;
}
.card-splitted__content-bottom .card__cta .card__link::after {
  background: url("../../../images/icons/icon-triangle--black.svg") no-repeat center;
}

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