/**
 * @file
 * Text with image alternated component 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.
 */
.c-textimgalt .media-content {
  height: 100%;
  overflow: hidden;
}
.c-textimgalt .media-content 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.
 */
.c-textimgalt__tagline, .c-textimgalt__title {
  font-family: var(--heading-font);
  font-display: optional;
}

/* HEADING */
.c-textimgalt__title {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  line-height: 1.5rem;
  letter-spacing: normal;
  word-wrap: break-word;
}
@media (min-width: 1024px) {
  .c-textimgalt__title {
    font-size: 1.5625rem;
    line-height: 2rem;
  }
}

/* TEXT & CONTENT */
.c-textimgalt__description p, .c-textimgalt__description {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  line-height: 1.33;
  letter-spacing: normal;
}
@media (min-width: 1440px) {
  .c-textimgalt__description p, .c-textimgalt__description {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

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

/**
 * @file
 * Buttons elements.
 *
 * Style for buttons
 */
/**
 * @file
 * Variables for links style.
 */
/**
 * @file
 * Background elements style.
 */
/**
 * @file
 * Elements for Video.
 */
.c-textimgalt .media-content .el-remote-video__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.c-textimgalt .media-content .el-remote-video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * @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 */
.c-textimgalt {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.c-textimgalt .media-content {
  position: relative;
}
.c-textimgalt .media-content img {
  border-radius: 0.25rem;
}
@media (max-width: 1023.98px) {
  .c-textimgalt .media-content {
    margin-bottom: 1.5rem;
  }
}
.c-textimgalt__title {
  margin-bottom: 1.5rem;
  color: #008444;
}
.c-textimgalt__tagline {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.c-textimgalt__description {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.c-textimgalt.img-left .text-content {
  padding-left: 0.5rem;
}

/*# sourceMappingURL=components.c-textimgalt.css.map */
