/*

// 1.1 Desktop
@include media-breakpoint-up(ls) {
    // desktop styles | 1024px and up
}

// 1.2 Mobile
@include media-breakpoint-down(md) {
    // mobile styles | 1023.98px and down
}

//
// 2. Wide mobile view (used in Global Header)
//

// 2.1 Desktop
@include media-breakpoint-up(lg) {
    // desktop styles | 1200px and up
}

// 2.2 Mobile
@include media-breakpoint-down(ls) {
    // mobile styles | 1200px and down
}

*/
/*
 * Set up a screen-wide ::before element behind its parent, to apply a colored background on a block.
 *
 * Usage :
 * .block {
 *    @include full-screen-background;
 *
 *    position: relative;
 * }
 */
/*
Usage

.block {
    @include arrow(right,red,5px,auto,auto,0,0,auto,-5px);

    width: 50px;
    height: 50px;
    position: relative;
}
*/
/*
Usage
    @include ratio-holder(364/300)
    Height/Width
*/
/* Mixin to cut off the rest of one-line text with dots */
/* stylelint-disable */
.reinsurance__item {
  padding: 1.25rem;
  text-align: center; }
  @media (min-width: 768px) {
    .reinsurance__item {
      -ms-flex: 1;
          flex: 1; } }
  .reinsurance__item-icon-container {
    min-height: 3.125rem; }
  .reinsurance__item-icon {
    max-width: 3.125rem;
    margin-right: auto;
    margin-left: auto; }
  .reinsurance__item-text {
    font-family: "Optimale", var(--font-family-sans-serif);
    font-size: 1.125rem;
    line-height: 1.4375rem; }
    .reinsurance__item-text p {
      margin-bottom: 0; }

/*# sourceMappingURL=reinsurance.css.map*/