/**
 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--intro {
  padding-top: 150px;
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .paragraph--type--intro {
    padding-top: 250px;
    padding-bottom: 250px;
  }
}
.paragraph--type--intro > * {
  grid-column: 2/-2;
}
@media (min-width: 992px) {
  .paragraph--type--intro > * {
    grid-column: 7/-7;
  }
}
.paragraph--type--intro .field--name-field-text {
  margin-bottom: 40px;
}
.paragraph--type--intro .field--name-field-text p {
  font-family: var(--header-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
}
@media (min-width: 992px) {
  .paragraph--type--intro .field--name-field-text p {
    font-size: 2rem;
    line-height: 32px;
  }
}
.paragraph--type--intro .field--name-field-text p {
  text-align: center;
}
.paragraph--type--intro .actions-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .paragraph--type--intro .actions-wrapper {
    flex-direction: row;
  }
}
.paragraph--type--intro > * {
  grid-column: 2/-2;
}
@media (min-width: 992px) {
  .paragraph--type--intro > * {
    grid-column: 7/-7;
  }
}
.paragraph--type--intro .field--name-field-text {
  margin-bottom: 40px;
}
.paragraph--type--intro .field--name-field-text p {
  font-family: var(--header-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
}
@media (min-width: 992px) {
  .paragraph--type--intro .field--name-field-text p {
    font-size: 2rem;
    line-height: 32px;
  }
}
.paragraph--type--intro .field--name-field-text p {
  text-align: center;
}
.paragraph--type--intro .actions-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .paragraph--type--intro .actions-wrapper {
    flex-direction: row;
  }
}
