/*	Defined widths
--------------------------------------- */
/*	Slider settings
--------------------------------------- */
/*	Colors
--------------------------------------- */
/*	Breakpoints
--------------------------------------- */
/*	Other
--------------------------------------- */
/* common border radius */
/* disable text selection */
/*	Font / Text Mixins
======================================================================== */
/*	Font family mixin
    Examples:
    @include f(s,r);
    @include f(gs,l);
--------------------------------------- */
/*	Text mixin
    (dynamic font size and line height)
--------------------------------------- */
.centered-big-text-block {
  padding: 10rem 0 8rem;
}
@media screen and (max-width: 640px) {
  .centered-big-text-block {
    padding: 6.5rem 0 5rem;
  }
}
@media screen and (max-width: 450px) {
  .centered-big-text-block {
    padding: 5rem 0 3.5rem;
  }
}
.centered-big-text-block__strong {
  font-family: "Roboto-Bold", sans-serif;
  font-weight: 500;
  /*@else if $font-family == 'gs' {

      @if $font-weight == 'l' {
          font-family: 'GeneralSans-light', sans-serif;
          font-weight: 300;
      } @else if $font-weight == 'm' {
          font-family: 'GeneralSans-Medium', sans-serif;
          font-weight: 500;
      } @else {
          font-family: 'GeneralSans-Regular', sans-serif;
          font-weight: 400;
      }
  }*/
  display: block;
  margin-bottom: 3.5rem;
  color: white;
}
.centered-big-text-block__strong strong {
  color: var(--blue);
}
.centered-big-text-block__content {
  margin-bottom: 3.5rem;
}
.centered-big-text-block__content p:last-child {
  margin-bottom: 0;
}
.centered-big-text-block .button-group-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}
.centered-big-text-block .button-group-wrap .btn {
  margin: 0;
}
/*# sourceMappingURL=centered-big-text-block.css.map */
