/**
 SASS files that don't get compiled into CSS. Do not put element selectors in here.
 Every file not starting with '_' should import this file if you want to use functions and mixins.
 */
/**
 * SASS variables
 *
 These are only used in the properties and abstract SASS files.
 */
/**
 Breakpoints and columns
 */
/**
 Text
 */
/**
Fill in the header styles, only write the properties you want to override.
 */
/**
 Form
 */
/**
  Buttons
 */
/**
 Breakpoints

 @param {Keyword} $breakpoint - The breakpoint name of the minimum width. Can be any of the names in the $breakpoint variable
 */
/**
  Custom column size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size in columns or 'expand'/'shrink'.
  @param {number} $total - the total size in columns. Ignored when size is 'expand'/'shrink'
 */
/**
  Custom offset size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size of the offset.
  @param {number} $total - the total size in columns.
  @param {string} - the side from the offset.
 */
.paragraph--type--video > * {
  grid-column: 2/-2;
}
@media (min-width: 1200px) {
  .paragraph--type--video > * {
    grid-column: 3/-3;
  }
}
.paragraph--type--video .video-wrapper {
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .paragraph--type--video .video-wrapper {
    grid-column: 6/-6;
    max-width: 960px;
  }
}
.paragraph--type--video .video-wrapper:hover .video-button {
  transform: scale(1.1);
  opacity: 0.9;
}
.paragraph--type--video .video-wrapper .video-button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 30;
  display: flex;
  cursor: pointer;
  transition: var(--transition);
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.paragraph--type--video .video-wrapper .field--name-field-video {
  z-index: 9;
  position: relative;
  margin: 0 auto;
}
.paragraph--type--video .video-wrapper .field--name-field-video .field__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.paragraph--type--video .video-wrapper .field--name-field-video video {
  height: auto;
}
.paragraph--type--video .video-wrapper .field--name-field-media-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
  overflow: hidden;
}
.paragraph--type--video .video-wrapper .field--name-field-media-image div {
  max-height: 100%;
  position: relative;
}
.paragraph--type--video .video-wrapper .field--name-field-media-image img {
  aspect-ratio: 3/2;
  max-width: 960px;
  max-height: 640px;
}
.paragraph--type--video {
  position: relative;
}
.paragraph--type--video .field--name-field-lower-title, .paragraph--type--video .field--name-field-upper-title {
  font-size: 5rem;
  font-family: var(--header-font-family);
  font-weight: 700;
}
@media (min-width: 1200px) {
  .paragraph--type--video .field--name-field-lower-title, .paragraph--type--video .field--name-field-upper-title {
    font-size: 11.25rem;
  }
}
.paragraph--type--video .field--name-field-lower-title {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  top: auto;
  margin: auto;
  text-align: center;
  z-index: 30;
}
@media (min-width: 992px) {
  .paragraph--type--video .field--name-field-lower-title {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .paragraph--type--video .field--name-field-lower-title {
    bottom: -90px;
  }
}
.paragraph--type--video .field--name-field-upper-title {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  text-align: center;
  z-index: 30;
}
@media (min-width: 992px) {
  .paragraph--type--video .field--name-field-upper-title {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .paragraph--type--video .field--name-field-upper-title {
    top: -90px;
  }
}

.media--type-video-embed {
  width: 100%;
}
.media--type-video-embed article, .media--type-video-embed div {
  width: 100%;
}
