/**
 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--images h3 {
  grid-column: 2/-2;
  margin-bottom: 35px;
}
.paragraph--type--images .field--name-field-images {
  grid-column: 1/-1;
}
.paragraph--type--images .field--name-field-images .swiper-wrapper {
  align-items: flex-end;
}
.paragraph--type--images .field--name-field-images .swiper-slide {
  width: auto;
}
.paragraph--type--images .field--name-field-images .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}
.paragraph--type--images .field--name-field-images .swiper-slide:nth-of-type(4n) img {
  aspect-ratio: 10/13;
  max-height: 520px;
  max-width: 400px;
}
.paragraph--type--images .field--name-field-images .swiper-slide:nth-of-type(4n + 1) img {
  aspect-ratio: 32/29;
  max-height: 480px;
  max-width: 435px;
}
.paragraph--type--images .field--name-field-images .swiper-slide:nth-of-type(4n + 2) img {
  aspect-ratio: 72/95;
  max-height: 360px;
  max-width: 475px;
}
.paragraph--type--images .field--name-field-images .swiper-slide:nth-of-type(4n + 3) img {
  aspect-ratio: 42/41;
  max-height: 420px;
  max-width: 410px;
}
.paragraph--type--images .field--name-field-images .swiper-pagination {
  height: 1px;
  background-color: var(--white);
  max-width: 50%;
  margin: 0 auto;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .paragraph--type--images .field--name-field-images .swiper-pagination {
    margin-top: 100px;
  }
}
.paragraph--type--images .field--name-field-images .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: var(--primary-color);
  height: 1px;
  display: block;
  margin-left: 0px;
  margin-right: auto;
}
