/**
 * The breakpoint keys.
 * @var breakpoints
 * @since 1.0.0
 */
/**
 * The grid breakpoints.
 * @var grid
 * @since 1.0.0
 */
/**
 * Transition speed and curves.
 * @var transitions
 * @since 1.0.0
 */
/**
 * Colors
 */
/**
 * Returns a transition duration by name.
 * @function transition-duration
 * @since 1.0.0
 */
/**
 * Returns a transition equation by name.
 * @function transition-equation
 * @since 1.0.0
 */
/**
 * Converts a value to vw;
 * @function rvw
 * @sinc 1.0.0
 */
/**
 * Convenience method to output a calc css property that adds 2 numbers.
 * @function calc-add
 * @sinc 1.0.0
 */
/**
 * Convenience method to output a calc css property that substracts 2 numbers.
 * @function calc-add
 * @sinc 1.0.0
 */
/**
 * Convenience method to output a calc css property that multiplies 2 numbers.
 * @function calc-add
 * @sinc 1.0.0
 */
/**
 * Convenience method to output a calc a relative vw value.
 * @function calc-rvw
 * @sinc 1.0.0
 */
/**
 * Converts a photoshop tracking value to letter-spacing value.
 * @function tracking
 * @sinc 1.0.0
 */
/**
 * Indicates whether the number is a valig length;
 * @function is-valid-length
 * @since 1.0.0
 */
/**
 * Removes unit from value.
 * @function strip-unit
 * @since 1.0.0
 */
/**
 * Replaces a string.
 * @function replace
 * @since 1.0.0
 */
/**
 * Parses rvw units.
 * @function replace
 * @since 1.0.0
 */
/**
 * @function breakpoint-get
 * @since 1.0.0
 */
/**
 * @mixin media-breakpoint-up
 * @since 1.0.0
 */
/**
 * @mixin media-breakpoint-down
 * @since 1.0.0
 */
/**
 * @mixin placeholder
 * @since 1.0.0
 */
/**
 * @mixin selection
 * @since 1.0.0
 */
/**
 * Convenience nth-child mixin to improve loop readability.
 * @function nth-child
 * @sinc 1.0.0
 */
/**
 * Convenience nth-child mixin with content parameter.
 * @function nth-child
 * @sinc 1.0.0
 */
/**
 * Convenience nth-child mixin to improve loop readability.
 * @function nth-of-type
 * @sinc 1.0.0
 */
/**
 * Convenience nth-child mixin to improve loop readability.
 * @function nth-last-child
 * @sinc 1.0.0
 */
/**
 * Convenience nth-last-of-type mixin to improve loop readability.
 * @function nth-last-of-type
 * @sinc 1.0.0
 */
/**
 * Targets the last row of a sepcified amount of columns.
 * @mixin last-row
 * @since 1.0.0
 */
/**
 * Positions an element.
 * @mixin position
 * @since 1.0.0
 */
/**
 * Position an element with fixed type.
 * @mixin fixed
 * @since 1.0.0
 */
/**
 * Position an element with absolute type.
 * @mixin absolute
 * @since 1.0.0
 */
/**
 * Position an element with relative type.
 * @mixin relative
 * @since 1.0.0
 */
/**
 * Position an element with sticky type.
 * @mixin sticky
 * @since 1.0.0
 */
/**
 * Convenience mixin to position a element absolutely.
 * @mixin fill
 * @since 1.0.0
 */
/**
 * Sets the text antialias;
 * @mixin text-antialias
 * @since 1.0.0
 */
/**
 * Convenience mixin to support special writing direction.
 * @function text-dir
 * @sinc 1.0.0
 */
/**
 * @function text-dir-ttb
 * @sinc 1.0.0
 * @hidden
 */
/**
 * Convenience mixin to support special writing direction.
 * @function text-dir-btt
 * @sinc 1.0.0
 */
/**
 * Disables br.
 * @function no-br
 * @sinc 1.0.0
 */
/**
 * Disables br.
 * @function no-br
 * @sinc 1.0.0
 */
.block-content {
  margin-top: calc(45px + 50 * ((100vw - 376px) / 1544));
  margin-bottom: calc(45px + 50 * ((100vw - 376px) / 1544));
}
@media (min-width: 1920px) {
  .block-content {
    margin-top: 95px;
    margin-bottom: 95px;
  }
}
.block-content h1, .block-content h2, .block-content h3 {
  font-family: "Barlow", Sans-Serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(35px + 25 * ((100vw - 376px) / 1544));
  margin: 0;
  text-transform: uppercase;
}
.block-content img {
  width: 100%;
  height: auto;
}

.block-content-wrapper .container > *, .block-content-wrapper .container-inset > * {
  opacity: 0;
  transform: translateY(-15%);
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.ready .visible-on-screen .block-content-wrapper .container > *, .ready .visible-on-screen .block-content-wrapper .container-inset > * {
  opacity: 1;
  transform: translateY(0);
}
.block-content-wrapper .container:nth-child(1), .block-content-wrapper .container-inset:nth-child(1) {
  transition-delay: 150ms;
}
.block-content-wrapper .container:nth-child(2), .block-content-wrapper .container-inset:nth-child(2) {
  transition-delay: 300ms;
}
.block-content-wrapper .container:nth-child(3), .block-content-wrapper .container-inset:nth-child(3) {
  transition-delay: 450ms;
}
.block-content-wrapper .container:nth-child(4), .block-content-wrapper .container-inset:nth-child(4) {
  transition-delay: 600ms;
}
.block-content-wrapper .container:nth-child(5), .block-content-wrapper .container-inset:nth-child(5) {
  transition-delay: 750ms;
}
.block-content-wrapper .container:nth-child(6), .block-content-wrapper .container-inset:nth-child(6) {
  transition-delay: 900ms;
}