/* 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.
 */
.video-cover__bg-inner {
  height: 100%;
  overflow: hidden;
}
.video-cover__bg-inner 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.
 */
.video-cover__tagline, .component-video-card__tagline, .component-video-card__title, .c-video--slider .video-cover__title, .c-video--grid .video-cover__title, .video-cover__title {
  font-family: var(--heading-font);
  font-display: optional;
}

/* HEADING */
.video-cover__title {
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  line-height: 2rem;
  letter-spacing: normal;
  word-wrap: break-word;
}
@media (min-width: 1024px) {
  .video-cover__title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.component-video-card__title, .c-video--slider .video-cover__title, .c-video--grid .video-cover__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;
}

/* TEXT & CONTENT */
.video-cover__tagline, .component-video-card__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-video .el-remote-video__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.c-video .el-remote-video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * @file
 * Cards variables element style.
 */
.component-video-card {
  height: 100%;
  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);
  transition: all 0.2s ease 0s;
}
.component-video-card:hover {
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/**
 * @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-video {
  position: relative;
  overflow: hidden;
}
.c-video--full {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.c-video--full .section-title {
  padding-top: 0;
  color: #008444;
}
.c-video--slider .video-cover__icon svg, .c-video--grid .video-cover__icon svg {
  width: 2rem;
  height: 2rem;
}

.component-video-card {
  height: 100%;
  text-align: center;
}
.component-video-card iframe {
  width: 100%;
  height: 11.5rem;
  border-radius: 0.25rem 0.25rem 0 0;
}
.component-video-card__text {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.component-video-card__tagline, .component-video-card__title {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.component-video-card__tagline {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.component-video-card__title {
  color: #008444;
}

.video-cover {
  position: relative;
}
.video-cover iframe {
  border-radius: 0.25rem;
}
.video-cover__img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 0.25rem;
}
.video-cover__img-cover--js-hidden {
  display: none;
  width: 0;
  height: 0;
}
.video-cover__image {
  position: relative;
}
.video-cover__bg, .video-cover__image {
  height: 100%;
  overflow: hidden;
  border-radius: 0.25rem;
}
.video-cover__overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.video-cover__overlay-text {
  width: 100%;
  color: #fff;
  text-align: center;
}
.video-cover__tagline {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.video-cover__icon {
  margin-bottom: 1rem;
}
.video-cover__icon svg {
  width: 4rem;
  height: 4rem;
}

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