/**
 * 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
 */
.block-image-and-link {
  margin-top: calc(45px + 50 * ((100vw - 376px) / 1544));
  margin-bottom: calc(45px + 50 * ((100vw - 376px) / 1544));
}
@media (min-width: 1920px) {
  .block-image-and-link {
    margin-top: 95px;
    margin-bottom: 95px;
  }
}
.block-image-and-link .container {
  position: relative;
  text-align: right;
}
.block-image-and-link .button {
  margin-top: calc(20px + 5 * ((100vw - 376px) / 1544));
}
@media (min-width: 768px) {
  .block-image-and-link .button {
    position: absolute;
    right: 0;
    bottom: calc(80px + 20 * ((100vw - 376px) / 1544));
  }
}

.image-and-link-wrapper img, .image-and-link-wrapper a.button {
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.ready .visible-on-screen .image-and-link-wrapper img, .ready .visible-on-screen .image-and-link-wrapper a.button {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.image-and-link-wrapper img {
  opacity: 0;
  transform: scale(0.8);
  transition-delay: 150ms;
}
.image-and-link-wrapper a.button {
  opacity: 0;
  transform: translateX(15%);
  transition-delay: 300ms;
}