/* Convert px to rem
** Usage:
** font-size: rem(23);
*/
/* A small function allowing skipping base64 encoding
** and simply pasting the SVG markup right in the CSS.
** @author Jakob Eriksen
** @link http://codepen.io/jakob-e/pen/doMoML
** @param {String} $svg - SVG image to encode
** @return {String} - Encoded SVG data uri
*/
/* Replace `$search` with `$replace` in `$string`
** @author Hugo Giraudel
** @link http://sassmeister.com/gist/1b4f2da5527830088e4d
** @param {String} $string - Initial string
** @param {String} $search - Substring to replace
** @param {String} $replace ('') - New value
** @return {String} - Updated string
*/
/* Replace substring 'fillColor' to real color from variables */
/* Convert px to rem
** Usage:
** font-size: rem(23);
*/
/* A small function allowing skipping base64 encoding
** and simply pasting the SVG markup right in the CSS.
** @author Jakob Eriksen
** @link http://codepen.io/jakob-e/pen/doMoML
** @param {String} $svg - SVG image to encode
** @return {String} - Encoded SVG data uri
*/
/* Replace `$search` with `$replace` in `$string`
** @author Hugo Giraudel
** @link http://sassmeister.com/gist/1b4f2da5527830088e4d
** @param {String} $string - Initial string
** @param {String} $search - Substring to replace
** @param {String} $replace ('') - New value
** @return {String} - Updated string
*/
/* Replace substring 'fillColor' to real color from variables */
/* Mixin for button animation,
    use: @include button-animation(); for .btn-primary-dark--white-bg button
*/
/* Mixin for arrow link animation,
    use: @include arrow-link-animation(); for .btn-tertiary-dark--white-bg button
*/
/* Mixin for link animation,
    use: @include link-animation(); for .btn-link-dark--white-bg button
*/
/* Mixin for button background animation,
    use: @include hoverBgEffect($primary-slate, $scale: 1.4, $speed: 0.4s);
*/
/**
 * Mixin for adding gradient line to the bottom.
 * @param {$side-colors} color.
 */
/**
 * Mixin for adding text underline.
 */
/**
 * Mixin for cropping the text.
 * @param {$line-clamp} number of visible lines.
 */
.b-collage__wrapper {
  display: grid;
  row-gap: 40px;
  padding-bottom: 3.75rem;
}
.b-collage__image--free {
  position: relative;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: -1.5625rem;
  z-index: 1;
}
.b-collage__title {
  font-size: 4rem;
  line-height: 1.12;
  letter-spacing: -0.05rem /*!rtl:ignore*/;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.b-collage__text {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.b-collage__disclaimer-text {
  font-size: 0.75rem;
  line-height: 1.33;
  letter-spacing: 0.0125rem /*!rtl:ignore*/;
  margin-top: 2rem;
}
@media (max-width: 991.98px) {
  .b-collage__wrapper > *:not(:first-child) {
    padding: 0rem 2rem;
  }
  .b-collage__image {
    width: 73.7179487179%;
  }
  .b-collage__image--main {
    width: 100%;
  }
  .b-collage__image--main img {
    width: 100%;
  }
  .b-collage__cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .b-collage__title {
    font-size: 2rem;
    line-height: 2.5rem;
    letter-spacing: 0;
  }
  .b-collage__text--bottom {
    grid-row-start: 4;
  }
}
@media (min-width: 992px) {
  .b-collage__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 6rem 7rem;
  }
  .b-collage__cell {
    position: relative;
  }
  .b-collage__text {
    font-size: 1.25rem;
    line-height: 2rem;
    max-width: 25.9375rem;
  }
  .b-collage__text--top {
    margin-top: 7rem;
    justify-self: end;
  }
  .b-collage__text--bottom {
    margin-top: 10.75rem;
  }
  .b-collage__image {
    width: auto;
  }
  .b-collage__image--free {
    position: absolute;
    right: -1.5625rem;
    bottom: 79.5454545455%;
    width: 84.8484848485%;
  }
}
