html {
  --grid__columns: 12;
  --grid__gutter: 1.875rem;
}
.row {
  display: grid;
  grid-template-columns: repeat(var(--grid__columns), minmax(0, 1fr));
  grid-gap: var(--grid__gutter);
  grid-auto-columns: 1fr;
}

.row--show {
  position: relative;
  background: #f9f9f9;
  z-index: 0;
  padding-top: 0.9375rem;
}

.row--show:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: repeating-linear-gradient(to right, #f0f0f0 0%, #f0f0f0 calc((100% - (1.875rem * 11)) / 12), #f9f9f9 calc((100% - (1.875rem * 11)) / 12), #f9f9f9 calc(((100% - (1.875rem * 11)) / 12) + 1.875rem) );
}


/* ----- */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  grid-column: 1 / -1;
}

.row-span-xs-1, .row-span-xs-2, .row-span-xs-3, .row-span-xs-4, .row-span-xs-5, .row-span-xs-6, .row-span-xs-7, .row-span-xs-8, .row-span-xs-9, .row-span-xs-10, .row-span-xs-11, .row-span-xs-12, .row-span-sm-1, .row-span-sm-2, .row-span-sm-3, .row-span-sm-4, .row-span-sm-5, .row-span-sm-6, .row-span-sm-7, .row-span-sm-8, .row-span-sm-9, .row-span-sm-10, .row-span-sm-11, .row-span-sm-12, .row-span-md-1, .row-span-md-2, .row-span-md-3, .row-span-md-4, .row-span-md-5, .row-span-md-6, .row-span-md-7, .row-span-md-8, .row-span-md-9, .row-span-md-10, .row-span-md-11, .row-span-md-12, .row-span-lg-1, .row-span-lg-2, .row-span-lg-3, .row-span-lg-4, .row-span-lg-5, .row-span-lg-6, .row-span-lg-7, .row-span-lg-8, .row-span-lg-9, .row-span-lg-10, .row-span-lg-11, .row-span-lg-12, .row-span-xl-1, .row-span-xl-2, .row-span-xl-3, .row-span-xl-4, .row-span-xl-5, .row-span-xl-6, .row-span-xl-7, .row-span-xl-8, .row-span-xl-9, .row-span-xl-10, .row-span-xl-11, .row-span-xl-12 {
  grid-row: 1;
}

.justify-start {
  justify-self: start;
}

.justify-center {
  justify-self: center;
}

.justify-end {
  justify-self: end;
}

.justify-stretch {
  justify-self: stretch;
}

.align-start {
  align-self: start;
}

.align-center {
  align-self: center;
}

.align-end {
  align-self: end;
}

.align-stretch {
  align-self: stretch;
}

.col-1 {
  grid-column: span 1 / span 1;
}

.col-2 {
  grid-column: span 2 / span 2;
}

.col-3 {
  grid-column: span 3 / span 3;
}

.col-4 {
  grid-column: span 4 / span 4;
}

.col-5 {
  grid-column: span 5 / span 5;
}

.col-6 {
  grid-column: span 6 / span 6;
}

.col-7 {
  grid-column: span 7 / span 7;
}

.col-8 {
  grid-column: span 8 / span 8;
}

.col-9 {
  grid-column: span 9 / span 9;
}

.col-10 {
  grid-column: span 10 / span 10;
}

.col-11 {
  grid-column: span 11 / span 11;
}

.col-12 {
  grid-column: span 12 / span 12;
}

@media screen and (min-width: 0) {
  .col-xs-1 {
    grid-column: span 1 / span 1;
  }

  .col-xs-2 {
    grid-column: span 2 / span 2;
  }

  .col-xs-3 {
    grid-column: span 3 / span 3;
  }

  .col-xs-4 {
    grid-column: span 4 / span 4;
  }

  .col-xs-5 {
    grid-column: span 5 / span 5;
  }

  .col-xs-6 {
    grid-column: span 6 / span 6;
  }

  .col-xs-7 {
    grid-column: span 7 / span 7;
  }

  .col-xs-8 {
    grid-column: span 8 / span 8;
  }

  .col-xs-9 {
    grid-column: span 9 / span 9;
  }

  .col-xs-10 {
    grid-column: span 10 / span 10;
  }

  .col-xs-11 {
    grid-column: span 11 / span 11;
  }

  .col-xs-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 0) {
  .col-start-xs-1 {
    grid-column-start: 1;
  }

  .row-start-xs-1 {
    grid-row-start: 1;
  }

  .col-start-xs-2 {
    grid-column-start: 2;
  }

  .row-start-xs-2 {
    grid-row-start: 2;
  }

  .col-start-xs-3 {
    grid-column-start: 3;
  }

  .row-start-xs-3 {
    grid-row-start: 3;
  }

  .col-start-xs-4 {
    grid-column-start: 4;
  }

  .row-start-xs-4 {
    grid-row-start: 4;
  }

  .col-start-xs-5 {
    grid-column-start: 5;
  }

  .row-start-xs-5 {
    grid-row-start: 5;
  }

  .col-start-xs-6 {
    grid-column-start: 6;
  }

  .row-start-xs-6 {
    grid-row-start: 6;
  }

  .col-start-xs-7 {
    grid-column-start: 7;
  }

  .row-start-xs-7 {
    grid-row-start: 7;
  }

  .col-start-xs-8 {
    grid-column-start: 8;
  }

  .row-start-xs-8 {
    grid-row-start: 8;
  }

  .col-start-xs-9 {
    grid-column-start: 9;
  }

  .row-start-xs-9 {
    grid-row-start: 9;
  }

  .col-start-xs-10 {
    grid-column-start: 10;
  }
  .row-start-xs-10 {
    grid-row-start: 10;
  }

  .col-start-xs-11 {
    grid-column-start: 11;
  }

  .row-start-xs-11 {
    grid-row-start: 11;
  }

  .col-start-xs-12 {
    grid-column-start: 12;
  }

  .row-start-xs-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 0) {
  .pull-right-xs {
    grid-column-end: -1;
  }

  .pull-left-xs {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 0) {
  .justify-xs-start {
    justify-self: start;
  }

  .justify-xs-center {
    justify-self: center;
  }

  .justify-xs-end {
    justify-self: end;
  }

  .justify-xs-stretch {
    justify-self: stretch;
  }

  .align-xs-start {
    align-self: start;
  }

  .align-xs-center {
    align-self: center;
  }

  .align-xs-end {
    align-self: end;
  }

  .align-xs-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 0) {
  .row-span-xs-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-xs-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-xs-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-xs-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-xs-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-xs-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-xs-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-xs-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-xs-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-xs-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-xs-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-xs-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 34.375em) {
  .col-sm-1 {
    grid-column: span 1 / span 1;
  }

  .col-sm-2 {
    grid-column: span 2 / span 2;
  }

  .col-sm-3 {
    grid-column: span 3 / span 3;
  }

  .col-sm-4 {
    grid-column: span 4 / span 4;
  }

  .col-sm-5 {
    grid-column: span 5 / span 5;
  }

  .col-sm-6 {
    grid-column: span 6 / span 6;
  }

  .col-sm-7 {
    grid-column: span 7 / span 7;
  }

  .col-sm-8 {
    grid-column: span 8 / span 8;
  }

  .col-sm-9 {
    grid-column: span 9 / span 9;
  }

  .col-sm-10 {
    grid-column: span 10 / span 10;
  }

  .col-sm-11 {
    grid-column: span 11 / span 11;
  }

  .col-sm-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 34.375em) {
  .col-start-sm-1 {
    grid-column-start: 1;
  }

  .row-start-sm-1 {
    grid-row-start: 1;
  }

  .col-start-sm-2 {
    grid-column-start: 2;
  }

  .row-start-sm-2 {
    grid-row-start: 2;
  }

  .col-start-sm-3 {
    grid-column-start: 3;
  }

  .row-start-sm-3 {
    grid-row-start: 3;
  }

  .col-start-sm-4 {
    grid-column-start: 4;
  }

  .row-start-sm-4 {
    grid-row-start: 4;
  }

  .col-start-sm-5 {
    grid-column-start: 5;
  }

  .row-start-sm-5 {
    grid-row-start: 5;
  }

  .col-start-sm-6 {
    grid-column-start: 6;
  }

  .row-start-sm-6 {
    grid-row-start: 6;
  }

  .col-start-sm-7 {
    grid-column-start: 7;
  }

  .row-start-sm-7 {
    grid-row-start: 7;
  }

  .col-start-sm-8 {
    grid-column-start: 8;
  }

  .row-start-sm-8 {
    grid-row-start: 8;
  }

  .col-start-sm-9 {
    grid-column-start: 9;
  }

  .row-start-sm-9 {
    grid-row-start: 9;
  }

  .col-start-sm-10 {
    grid-column-start: 10;
  }

  .row-start-sm-10 {
    grid-row-start: 10;
  }

  .col-start-sm-11 {
    grid-column-start: 11;
  }

  .row-start-sm-11 {
    grid-row-start: 11;
  }

  .col-start-sm-12 {
    grid-column-start: 12;
  }

  .row-start-sm-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 34.375em) {
  .pull-right-sm {
    grid-column-end: -1;
  }

  .pull-left-sm {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 34.375em) {
  .justify-sm-start {
    justify-self: start;
  }

  .justify-sm-center {
    justify-self: center;
  }

  .justify-sm-end {
    justify-self: end;
  }

  .justify-sm-stretch {
    justify-self: stretch;
  }

  .align-sm-start {
    align-self: start;
  }

  .align-sm-center {
    align-self: center;
  }

  .align-sm-end {
    align-self: end;
  }

  .align-sm-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 34.375em) {
  .row-span-sm-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-sm-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-sm-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-sm-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-sm-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-sm-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-sm-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-sm-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-sm-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-sm-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-sm-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-sm-12 {
    grid-row: span 12 / span 12;
  }
}


@media screen and (min-width: 48em) {
  .col-md-1 {
    grid-column: span 1 / span 1;
  }

  .col-md-2 {
    grid-column: span 2 / span 2;
  }

  .col-md-3 {
    grid-column: span 3 / span 3;
  }

  .col-md-4 {
    grid-column: span 4 / span 4;
  }

  .col-md-5 {
    grid-column: span 5 / span 5;
  }

  .col-md-6 {
    grid-column: span 6 / span 6;
  }

  .col-md-7 {
    grid-column: span 7 / span 7;
  }

  .col-md-8 {
    grid-column: span 8 / span 8;
  }

  .col-md-9 {
    grid-column: span 9 / span 9;
  }

  .col-md-10 {
    grid-column: span 10 / span 10;
  }

  .col-md-11 {
    grid-column: span 11 / span 11;
  }

  .col-md-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 48em) {
  .col-start-md-1 {
    grid-column-start: 1;
  }

  .row-start-md-1 {
    grid-row-start: 1;
  }

  .col-start-md-2 {
    grid-column-start: 2;
  }

  .row-start-md-2 {
    grid-row-start: 2;
  }

  .col-start-md-3 {
    grid-column-start: 3;
  }

  .row-start-md-3 {
    grid-row-start: 3;
  }

  .col-start-md-4 {
    grid-column-start: 4;
  }

  .row-start-md-4 {
    grid-row-start: 4;
  }

  .col-start-md-5 {
    grid-column-start: 5;
  }

  .row-start-md-5 {
    grid-row-start: 5;
  }

  .col-start-md-6 {
    grid-column-start: 6;
  }

  .row-start-md-6 {
     grid-row-start: 6;
  }

  .col-start-md-7 {
    grid-column-start: 7;
  }

  .row-start-md-7 {
    grid-row-start: 7;
  }

  .col-start-md-8 {
    grid-column-start: 8;
  }

  .row-start-md-8 {
    grid-row-start: 8;
  }

  .col-start-md-9 {
    grid-column-start: 9;
  }

  .row-start-md-9 {
    grid-row-start: 9;
  }

  .col-start-md-10 {
    grid-column-start: 10;
  }

  .row-start-md-10 {
    grid-row-start: 10;
  }

  .col-start-md-11 {
    grid-column-start: 11;
  }
  
  .row-start-md-11 {
    grid-row-start: 11;
  }
  
  .col-start-md-12 {
    grid-column-start: 12;
  }
  
  .row-start-md-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 48em) {
  .pull-right-md {
    grid-column-end: -1;
  }
  
  .pull-left-md {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 48em) {
  .justify-md-start {
    justify-self: start;
  }

  .justify-md-center {
    justify-self: center;
  }

  .justify-md-end {
    justify-self: end;
  }

  .justify-md-stretch {
    justify-self: stretch;
  }

  .align-md-start {
    align-self: start;
  }

  .align-md-center {
    align-self: center;
  }

  .align-md-end {
    align-self: end;
  }

  .align-md-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 48em) {
  .row-span-md-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-md-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-md-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-md-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-md-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-md-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-md-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-md-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-md-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-md-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-md-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-md-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 58.75em) {
  .col-lg-1 {
    grid-column: span 1 / span 1;
  }
  
  .col-lg-2 {
    grid-column: span 2 / span 2;
  }
  
  .col-lg-3 {
    grid-column: span 3 / span 3;
  }
  
  .col-lg-4 {
    grid-column: span 4 / span 4;
  }
  
  .col-lg-5 {
    grid-column: span 5 / span 5;
  }
  
  .col-lg-6 {
    grid-column: span 6 / span 6;
  }
  
  .col-lg-7 {
    grid-column: span 7 / span 7;
  }
  
  .col-lg-8 {
    grid-column: span 8 / span 8;
  }
  
  .col-lg-9 {
    grid-column: span 9 / span 9;
  }
  
  .col-lg-10 {
    grid-column: span 10 / span 10;
  }
  
  .col-lg-11 {
    grid-column: span 11 / span 11;
  }
  
  .col-lg-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 58.75em) {
  .col-start-lg-1 {
    grid-column-start: 1;
  }
  
  .row-start-lg-1 {
    grid-row-start: 1;
  }
  
  .col-start-lg-2 {
    grid-column-start: 2;
  }
  
  .row-start-lg-2 {
    grid-row-start: 2;
  }
  
  .col-start-lg-3 {
    grid-column-start: 3;
  }
  
  .row-start-lg-3 {
    grid-row-start: 3;
  }
  
  .col-start-lg-4 {
    grid-column-start: 4;
  }
  
  .row-start-lg-4 {
    grid-row-start: 4;
  }
  
  .col-start-lg-5 {
    grid-column-start: 5;
  }
  
  .row-start-lg-5 {
    grid-row-start: 5;
  }
  
  .col-start-lg-6 {
    grid-column-start: 6;
  }
  
  .row-start-lg-6 {
    grid-row-start: 6;
  }
  
  .col-start-lg-7 {
    grid-column-start: 7;
  }
  
  .row-start-lg-7 {
    grid-row-start: 7;
  }
  
  .col-start-lg-8 {
    grid-column-start: 8;
  }
  
  .row-start-lg-8 {
    grid-row-start: 8;
  }
  
  .col-start-lg-9 {
    grid-column-start: 9;
  }
  
  .row-start-lg-9 {
    grid-row-start: 9;
  }
  
  .col-start-lg-10 {
    grid-column-start: 10;
  }
  
  .row-start-lg-10 {
    grid-row-start: 10;
  }
  
  .col-start-lg-11 {
    grid-column-start: 11;
  }
  
  .row-start-lg-11 {
    grid-row-start: 11;
  }
  
  .col-start-lg-12 {
    grid-column-start: 12;
  }
  
  .row-start-lg-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 58.75em) {
  .pull-right-lg {
    grid-column-end: -1;
  }
  
  .pull-left-lg {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 58.75em) {
  .justify-lg-start {
    justify-self: start;
  }

  .justify-lg-center {
    justify-self: center;
  }

  .justify-lg-end {
    justify-self: end;
  }

  .justify-lg-stretch {
    justify-self: stretch;
  }

  .align-lg-start {
    align-self: start;
  }

  .align-lg-center {
    align-self: center;
  }

  .align-lg-end {
    align-self: end;
  }

  .align-lg-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 58.75em) {
  .row-span-lg-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-lg-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-lg-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-lg-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-lg-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-lg-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-lg-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-lg-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-lg-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-lg-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-lg-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-lg-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 68.75em) {
  .col-xl-1 {
    grid-column: span 1 / span 1;
  }
  
  .col-xl-2 {
    grid-column: span 2 / span 2;
  }
  
  .col-xl-3 {
    grid-column: span 3 / span 3;
  }
  
  .col-xl-4 {
    grid-column: span 4 / span 4;
  }
  
  .col-xl-5 {
    grid-column: span 5 / span 5;
  }
  
  .col-xl-6 {
    grid-column: span 6 / span 6;
  }
  
  .col-xl-7 {
    grid-column: span 7 / span 7;
  }
  
  .col-xl-8 {
    grid-column: span 8 / span 8;
  }
  
  .col-xl-9 {
    grid-column: span 9 / span 9;
  }
  
  .col-xl-10 {
    grid-column: span 10 / span 10;
  }
  
  .col-xl-11 {
    grid-column: span 11 / span 11;
  }
  
  .col-xl-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 68.75em) {
  .col-start-xl-1 {
     grid-column-start: 1;
  }
  
  .row-start-xl-1 {
    grid-row-start: 1;
  }
  
  .col-start-xl-2 {
    grid-column-start: 2;
  }
  
  .row-start-xl-2 {
    grid-row-start: 2;
  }
  
  .col-start-xl-3 {
    grid-column-start: 3;
  }
  
  .row-start-xl-3 {
    grid-row-start: 3;
  }
  
  .col-start-xl-4 {
    grid-column-start: 4;
  }
  
  .row-start-xl-4 {
    grid-row-start: 4;
  }
  
  .col-start-xl-5 {
    grid-column-start: 5;
  }
  
  .row-start-xl-5 {
    grid-row-start: 5;
  }
  
  .col-start-xl-6 {
    grid-column-start: 6;
  }
  
  .row-start-xl-6 {
    grid-row-start: 6;
  }
  
  .col-start-xl-7 {
    grid-column-start: 7;
  }
  
  .row-start-xl-7 {
    grid-row-start: 7;
  }
  
  .col-start-xl-8 {
    grid-column-start: 8;
  }
  
  .row-start-xl-8 {
    grid-row-start: 8;
  }
  
  .col-start-xl-9 {
    grid-column-start: 9;
  }
  
  .row-start-xl-9 {
    grid-row-start: 9;
  }
  
  .col-start-xl-10 {
    grid-column-start: 10;
  }
  
  .row-start-xl-10 {
    grid-row-start: 10;
  }
  
  .col-start-xl-11 {
    grid-column-start: 11;
  }
  
  .row-start-xl-11 {
    grid-row-start: 11;
  }
  
  .col-start-xl-12 {
    grid-column-start: 12;
  }
  
  .row-start-xl-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 68.75em) {
  .pull-right-xl {
    grid-column-end: -1;
  }
  
  .pull-left-xl {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 68.75em) {
  .justify-xl-start {
    justify-self: start;
  }

  .justify-xl-center {
    justify-self: center;
  }

  .justify-xl-end {
    justify-self: end;
  }

  .justify-xl-stretch {
    justify-self: stretch;
  }

  .align-xl-start {
    align-self: start;
  }

  .align-xl-center {
    align-self: center;
  }

  .align-xl-end {
    align-self: end;
  }

  .align-xl-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 68.75em) {
  .row-span-xl-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-xl-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-xl-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-xl-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-xl-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-xl-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-xl-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-xl-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-xl-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-xl-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-xl-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-xl-12 {
    grid-row: span 12 / span 12;
  }
}

.col-start-1 {
  grid-column-start: 1;
}

.row-start-1 {
  grid-row-start: 1;
}

.col-start-2 {
  grid-column-start: 2;
}

.row-start-2 {
  grid-row-start: 2;
}

.col-start-3 {
  grid-column-start: 3;
}

.row-start-3 {
  grid-row-start: 3;
}

.col-start-4 {
  grid-column-start: 4;
}

.row-start-4 {
  grid-row-start: 4;
}

.col-start-5 {
  grid-column-start: 5;
}

.row-start-5 {
  grid-row-start: 5;
}

.col-start-6 {
  grid-column-start: 6;
}

.row-start-6 {
  grid-row-start: 6;
}

.col-start-7 {
  grid-column-start: 7;
}

.row-start-7 {
  grid-row-start: 7;
}

.col-start-8 {
  grid-column-start: 8;
}

.row-start-8 {
  grid-row-start: 8;
}

.col-start-9 {
  grid-column-start: 9;
}

.row-start-9 {
  grid-row-start: 9;
}

.col-start-10 {
  grid-column-start: 10;
}
.row-start-10 {
  grid-row-start: 10;
}

.col-start-11 {
  grid-column-start: 11;
}

.row-start-11 {
  grid-row-start: 11;
}

.col-start-12 {
  grid-column-start: 12;
}

.row-start-12 {
  grid-row-start: 12;
}

.row-span-1 {
  grid-row: span 1 / span 1;
}

.row-span-2 {
  grid-row: span 2 / span 2;
}

.row-span-3 {
  grid-row: span 3 / span 3;
}

.row-span-4 {
  grid-row: span 4 / span 4;
}

.row-span-5 {
  grid-row: span 5 / span 5;
}

.row-span-6 {
  grid-row: span 6 / span 6;
}

.row-span-7 {
  grid-row: span 7 / span 7;
}

.row-span-8 {
  grid-row: span 8 / span 8;
}

.row-span-9 {
  grid-row: span 9 / span 9;
}

.row-span-10 {
  grid-row: span 10 / span 10;
}

.row-span-11 {
  grid-row: span 11 / span 11;
}

.row-span-12 {
  grid-row: span 12 / span 12;
}

header,footer,nav,section,aside,main,article,figure,figcaption{display:block}body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,code,ol,ul,li,dl,dt,dd,figure,table,th,td,form,fieldset,legend,input,textarea{margin:0;padding:0}table{border-spacing:0;border-collapse:collapse}caption,th,td{text-align:left;text-align:start;vertical-align:top}abbr,acronym{font-variant:normal;border-bottom:1px dotted #666;cursor:help}blockquote,q{quotes:none}fieldset,img,iframe{border:0}ul{list-style-type:none}sup{vertical-align:text-top}sub{vertical-align:text-bottom}del{text-decoration:line-through}ins{text-decoration:none}body{font:12px/1 "Lucida Grande","Lucida Sans Unicode",Verdana,sans-serif;color:#000}input,button,textarea,select{font-family:inherit;font-size:99%;font-weight:inherit}pre,code{font-family:Monaco,monospace}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}h1{font-size:1.8333em}h2{font-size:1.6667em}h3{font-size:1.5em}h4{font-size:1.3333em}table{font-size:inherit}caption,th{font-weight:700}a{color:#00f}h1,h2,h3,h4,h5,h6{margin-top:1em}h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form{margin-bottom:12px}
body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}.aspect--9\:16,.responsive.ratio-916{padding-bottom:177.7777%}.aspect--1\:1,.responsive.ratio-11{padding-bottom:100%}
@charset "UTF-8";/*!
 * mmenu.js
 * mmenujs.com
 *
 * Copyright (c) Fred Heusschen
 * frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */:root{--mm-lineheight:22px}.mm-hidden{display:none!important}.mm-wrapper{overflow-x:hidden;position:relative}.mm-menu,.mm-menu *,.mm-menu :after,.mm-menu :before{-webkit-transition-property:none;-o-transition-property:none;transition-property:none;-webkit-transition-duration:.4s;-o-transition-duration:.4s;transition-duration:.4s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}:root{--mm-blocker-visibility-delay:0.4s;--mm-blocker-opacity-delay:0s}.mm-blocker{display:block;position:absolute;bottom:100%;top:0;right:0;left:0;z-index:3;opacity:0;background:var(--mm-color-background);-webkit-transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),-webkit-transform .4s ease;transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),-webkit-transform .4s ease;-o-transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),transform .4s ease;transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),transform .4s ease;transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),transform .4s ease,-webkit-transform .4s ease}.mm-blocker:focus-visible{opacity:.75}.mm-btn{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;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;position:relative;width:50px;padding:0}.mm-btn--next,[dir=rtl] .mm-btn--prev{--mm-btn-rotate:135deg}.mm-btn--prev,[dir=rtl] .mm-btn--next{--mm-btn-rotate:-45deg}.mm-btn--next:after,.mm-btn--prev:before{content:"";display:block;position:absolute;top:0;bottom:0;width:8px;height:8px;margin:auto;-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid var(--mm-color-icon);border-bottom:none;border-right:none;-webkit-transform:rotate(var(--mm-btn-rotate));-ms-transform:rotate(var(--mm-btn-rotate));transform:rotate(var(--mm-btn-rotate))}.mm-btn--prev:before{inset-inline-start:23px}.mm-btn--next:after{inset-inline-end:23px}.mm-btn--close:before{content:"×";font-size:150%}.mm-btnreset{padding:0;background:0 0;border:none;cursor:pointer}.mm-divider{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;position:-webkit-sticky;position:sticky;z-index:2;top:0;min-height:var(--mm-lineheight);padding:calc((var(--mm-listitem-size) * .65 - var(--mm-lineheight)) * .5) 20px;font-size:75%;text-transform:uppercase;background:var(--mm-color-background);background-image:-webkit-gradient(linear,left top,left bottom,from(var(--mm-color-background-highlight)),to(var(--mm-color-background-highlight)));background-image:-o-linear-gradient(var(--mm-color-background-highlight),var(--mm-color-background-highlight));background-image:linear-gradient(var(--mm-color-background-highlight),var(--mm-color-background-highlight));opacity:1;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.mm-navbar:not(.mm-hidden)~.mm-listview .mm-divider{top:var(--mm-navbar-size)}:root{--mm-listitem-size:50px}.mm-listitem{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative;padding:0;margin:0;color:var(--mm-color-text);border-color:var(--mm-color-border)}.mm-listitem:after{content:"";border-color:inherit;border-bottom-width:1px;border-bottom-style:solid;display:block;position:absolute;inset-inline-start:20px;inset-inline-end:0;bottom:0}.mm-listitem__btn,.mm-listitem__text{padding:calc((var(--mm-listitem-size) - var(--mm-lineheight))/ 2) 0}.mm-listitem__text{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:10%;flex-basis:10%;display:block;padding-left:20px;padding-right:20px;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mm-listitem__btn{display:block;position:relative;width:auto;-webkit-padding-end:50px;padding-inline-end:50px;border-color:inherit;background:rgba(3,2,1,0)}.mm-listitem__btn:not(.mm-listitem__text){border-left-width:1px;border-left-style:solid}.mm-listitem--selected>.mm-listitem__text{background:var(--mm-color-background-emphasis)}.mm-listitem--opened>.mm-listitem__btn,.mm-listitem--opened>.mm-panel{background:var(--mm-color-background-highlight)}.mm-listview{list-style:none;display:block;padding:0;margin:0}.mm-menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0;margin:0;position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;-ms-scroll-chaining:none;overscroll-behavior:none;background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text);line-height:var(--mm-lineheight);-webkit-tap-highlight-color:var(--mm-color-background-emphasis);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mm-menu ::-webkit-input-placeholder{color:var(--mm-color-text-dimmed)}.mm-menu ::-moz-placeholder{color:var(--mm-color-text-dimmed)}.mm-menu :-ms-input-placeholder{color:var(--mm-color-text-dimmed)}.mm-menu ::-ms-input-placeholder{color:var(--mm-color-text-dimmed)}.mm-menu ::placeholder{color:var(--mm-color-text-dimmed)}.mm-menu,.mm-menu *{-webkit-box-sizing:border-box;box-sizing:border-box}.mm-menu :focus,.mm-menu :focus-visible,.mm-menu:focus,.mm-menu:focus-visible{outline:0}.mm-menu a,.mm-menu button,.mm-menu label{color:inherit}.mm-menu a:focus,.mm-menu button:focus,.mm-menu label:focus{outline:0}.mm-menu a:focus-visible,.mm-menu button:focus-visible,.mm-menu label:focus-visible{outline:2px solid var(--mm-color-focusring);outline-offset:-5px}.mm-menu input:focus,.mm-menu input:focus-visible,.mm-menu select:focus,.mm-menu select:focus-visible,.mm-menu textarea:focus,.mm-menu textarea:focus-visible{outline:2px solid var(--mm-color-focusring);outline-offset:2px}.mm-menu a,.mm-menu a:active,.mm-menu a:hover,.mm-menu a:link,.mm-menu a:visited{text-decoration:none;color:inherit}:root{--mm-navbar-size:50px}.mm-navbar{display:-webkit-box;display:-ms-flexbox;display:flex;position:-webkit-sticky;position:sticky;top:0;z-index:2;min-height:var(--mm-navbar-size);padding-top:env(safe-area-inset-top);color:var(--mm-color-text-dimmed);text-align:center;opacity:1;background:var(--mm-color-background);border-bottom:1px solid var(--mm-color-border);-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.mm-navbar>*{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;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;-webkit-box-sizing:border-box;box-sizing:border-box}.mm-navbar__btn{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.mm-navbar__title{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 20px;overflow:hidden}.mm-navbar__title[href="#"]{pointer-events:none}.mm-navbar__title>span{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mm-btn.mm-hidden+.mm-navbar__title:not(:last-child){-webkit-padding-start:60px;padding-inline-start:60px;-webkit-padding-end:10px;padding-inline-end:10px}.mm-btn:not(.mm-hidden)+.mm-navbar__title:last-child{-webkit-padding-start:10px;padding-inline-start:10px;-webkit-padding-end:60px;padding-inline-end:60px}.mm-panel{--mm-panel-child-offset:100%;--mm-panel-parent-offset:-30%;position:absolute;left:0;right:0;top:0;bottom:0;z-index:1;-webkit-overflow-scrolling:touch;overflow:hidden;overflow-y:auto;-ms-scroll-chaining:none;overscroll-behavior:contain;color:var(--mm-color-text);border-color:var(--mm-color-border);background:var(--mm-color-background);-webkit-transform:translate3d(var(--mm-panel-child-offset),0,0);transform:translate3d(var(--mm-panel-child-offset),0,0);-webkit-transition-property:inset-inline-start,-webkit-transform;transition-property:inset-inline-start,-webkit-transform;-o-transition-property:transform,inset-inline-start;transition-property:transform,inset-inline-start;transition-property:transform,inset-inline-start,-webkit-transform}[dir=rtl] .mm-panel{--mm-panel-child-offset:-100%;--mm-panel-parent-offset:30%}.mm-panel:after{content:"";display:block;height:var(--mm-listitem-size)}.mm-panel:focus{outline:0}.mm-panel--opened{z-index:2;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s}.mm-panel--parent{-webkit-transform:translate3d(var(--mm-panel-parent-offset),0,0);transform:translate3d(var(--mm-panel-parent-offset),0,0);z-index:0}.mm-panel--highest{z-index:3}.mm-menu--opened .mm-panel--noanimation{-webkit-transition:none!important;-o-transition:none!important;transition:none!important;-webkit-transition-duration:0s!important;-o-transition-duration:0s!important;transition-duration:0s!important}.mm-panel__content{padding:20px}.mm-panels{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative;height:100%;overflow:hidden;background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text)}.mm-panels:focus{outline:0}:root{--mm-toggle-size:34px}.mm-toggle{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-item-align:center;align-self:center;-webkit-box-flex:calc(var(--mm-toggle-size) * 1.75);-ms-flex:calc(var(--mm-toggle-size) * 1.75) 0 0px;flex:calc(var(--mm-toggle-size) * 1.75) 0 0;height:var(--mm-toggle-size);-webkit-margin-end:10px;margin-inline-end:10px;-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;border:none!important;border-radius:var(--mm-toggle-size);border:var(--mm-color-border);background:var(--mm-color-border);cursor:pointer;-webkit-transition-property:background-color;-o-transition-property:background-color;transition-property:background-color}.mm-toggle:before{content:"";aspect-ratio:1;margin:2px;border-radius:100%;background:var(--mm-color-background);-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform}.mm-toggle:checked{background:#4bd963}.mm-toggle:checked:before{-webkit-transform:translateX(calc(var(--mm-toggle-size) * .75));-ms-transform:translateX(calc(var(--mm-toggle-size) * .75));transform:translateX(calc(var(--mm-toggle-size) * .75))}[dir=rtl] .mm-toggle:checked:before{-webkit-transform:translateX(calc(var(--mm-toggle-size) * -.75));-ms-transform:translateX(calc(var(--mm-toggle-size) * -.75));transform:translateX(calc(var(--mm-toggle-size) * -.75))}.mm-listitem--vertical>.mm-panel{position:static;width:100%;padding:10px 0 10px 20px;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;-webkit-transition:none!important;-o-transition:none!important;transition:none!important}.mm-listitem--vertical>.mm-panel:after{content:none;display:none}.mm-listitem--vertical:not(.mm-listitem--opened)>.mm-panel{display:none}.mm-listitem--vertical>.mm-listitem__btn{height:var(--mm-listitem-size);bottom:auto}.mm-listitem--vertical .mm-listitem:last-child:after{border-color:transparent}.mm-listitem--opened>.mm-listitem__btn:after{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg);right:19px}:root{--mm-size:80%;--mm-min-size:240px;--mm-max-size:440px}.mm-menu--offcanvas{position:fixed;z-index:0}.mm-page{-webkit-box-sizing:border-box;box-sizing:border-box;min-height:100vh;background:inherit}:where(.mm-slideout){position:relative;z-index:1;width:100%;-webkit-transition-duration:.4s;-o-transition-duration:.4s;transition-duration:.4s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;-o-transition-property:width,transform;transition-property:width,transform;transition-property:width,transform,-webkit-transform}.mm-wrapper--opened,.mm-wrapper--opened body{overflow:hidden}.mm-wrapper__blocker{background:rgba(0,0,0,.4)}.mm-wrapper--opened .mm-wrapper__blocker{--mm-blocker-visibility-delay:0s;--mm-blocker-opacity-delay:0.4s;bottom:0;opacity:.5}.mm-menu{--mm-translate-horizontal:0;--mm-translate-vertical:0}.mm-menu--position-left,.mm-menu--position-left-front{right:auto}.mm-menu--position-right,.mm-menu--position-right-front{left:auto}.mm-menu--position-left,.mm-menu--position-left-front,.mm-menu--position-right,.mm-menu--position-right-front{width:clamp(var(--mm-min-size),var(--mm-size),var(--mm-max-size))}.mm-menu--position-left-front{--mm-translate-horizontal:-100%}.mm-menu--position-right-front{--mm-translate-horizontal:100%}.mm-menu--position-top{bottom:auto}.mm-menu--position-bottom{top:auto}.mm-menu--position-bottom,.mm-menu--position-top{width:100%;height:clamp(var(--mm-min-size),var(--mm-size),var(--mm-max-size))}.mm-menu--position-top{--mm-translate-vertical:-100%}.mm-menu--position-bottom{--mm-translate-vertical:100%}.mm-menu--position-bottom,.mm-menu--position-left-front,.mm-menu--position-right-front,.mm-menu--position-top{z-index:2;-webkit-transform:translate3d(var(--mm-translate-horizontal),var(--mm-translate-vertical),0);transform:translate3d(var(--mm-translate-horizontal),var(--mm-translate-vertical),0);-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform}.mm-menu--position-bottom.mm-menu--opened,.mm-menu--position-left-front.mm-menu--opened,.mm-menu--position-right-front.mm-menu--opened,.mm-menu--position-top.mm-menu--opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-wrapper--position-left{--mm-translate-horizontal:clamp(
      var(--mm-min-size),
      var(--mm-size),
      var(--mm-max-size)
  )}.mm-wrapper--position-right{--mm-translate-horizontal:clamp(
      calc(-1 * var(--mm-max-size)),
      calc(-1 * var(--mm-size)),
      calc(-1 * var(--mm-min-size))
  )}.mm-wrapper--position-left .mm-slideout,.mm-wrapper--position-right .mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-wrapper--position-left.mm-wrapper--opened .mm-slideout,.mm-wrapper--position-right.mm-wrapper--opened .mm-slideout{-webkit-transform:translate3d(var(--mm-translate-horizontal),0,0);transform:translate3d(var(--mm-translate-horizontal),0,0)}.mm-wrapper--position-bottom .mm-wrapper__blocker,.mm-wrapper--position-left-front .mm-wrapper__blocker,.mm-wrapper--position-right-front .mm-wrapper__blocker,.mm-wrapper--position-top .mm-wrapper__blocker{z-index:1}.mm-menu--theme-light{--mm-color-background:#f3f3f3;--mm-color-border:rgb(0 0 0 / 0.15);--mm-color-icon:rgb(0 0 0 / 0.4);--mm-color-text:rgb(0 0 0 / 0.8);--mm-color-text-dimmed:rgb(0 0 0 / 0.4);--mm-color-background-highlight:rgb(0 0 0 / 0.05);--mm-color-background-emphasis:rgb(255 255 255 / 0.75);--mm-color-focusring:#06c}.mm-menu--theme-light-contrast{--mm-color-background:#f3f3f3;--mm-color-border:rgb(0 0 0 / 0.5);--mm-color-icon:rgb(0 0 0 / 0.5);--mm-color-text:#000;--mm-color-text-dimmed:rgb(0 0 0 / 0.7);--mm-color-background-highlight:rgb(0 0 0 / 0.05);--mm-color-background-emphasis:rgb(255 255 255 / 0.9);--mm-color-focusring:#06c}.mm-menu--theme-dark{--mm-color-background:#333;--mm-color-border:rgb(0, 0, 0, 0.4);--mm-color-icon:rgb(255, 255, 255, 0.4);--mm-color-text:rgb(255, 255, 255, 0.8);--mm-color-text-dimmed:rgb(255, 255, 255, 0.4);--mm-color-background-highlight:rgb(255, 255, 255, 0.08);--mm-color-background-emphasis:rgb(0, 0, 0, 0.1);--mm-color-focusring:#06c}.mm-menu--theme-dark-contrast{--mm-color-background:#333;--mm-color-border:rgb(255 255 255 / 0.5);--mm-color-icon:rgb(255 255 255 / 0.5);--mm-color-text:#fff;--mm-color-text-dimmed:rgb(255 255 255 / 0.7);--mm-color-background-highlight:rgb(255 255 255 / 0.1);--mm-color-background-emphasis:rgb(0 0 0 / 0.3);--mm-color-focusring:#06c}.mm-menu--theme-white{--mm-color-background:#fff;--mm-color-border:rgb(0 0 0 / 0.15);--mm-color-icon:rgb(0 0 0 / 0.3);--mm-color-text:rgb(0 0 0 / 0.8);--mm-color-text-dimmed:rgb(0 0 0 / 0.3);--mm-color-background-highlight:rgb(0 0 0 / 0.06);--mm-color-background-emphasis:rgb(0 0 0 / 0.03);--mm-color-focusring:#06c}.mm-menu--theme-white-contrast{--mm-color-background:#fff;--mm-color-border:rgb(0 0 0 / 0.5);--mm-color-icon:rgb(0 0 0 / 0.5);--mm-color-text:#000;--mm-color-text-dimmed:rgb(0 0 0 / 0.7);--mm-color-background-highlight:rgb(0 0 0 / 0.07);--mm-color-background-emphasis:rgb(0 0 0 / 0.035);--mm-color-focusring:#06c}.mm-menu--theme-black{--mm-color-background:#000;--mm-color-border:rgb(255 255 255 / 0.2);--mm-color-icon:rgb(255 255 255 / 0.4);--mm-color-text:rgb(255 255 255 / 0.7);--mm-color-text-dimmed:rgb(255 255 255 / 0.4);--mm-color-background-highlight:rgb(255 255 255 / 0.1);--mm-color-background-emphasis:rgb(255 255 255 / 0.06);--mm-color-focusring:#06c}.mm-menu--theme-black-contrast{--mm-color-background:#000;--mm-color-border:rgb(255 255 255 / 0.5);--mm-color-icon:rgb(255 255 255 / 0.5);--mm-color-text:#fff;--mm-color-text-dimmed:rgb(255 255 255 / 0.6);--mm-color-background-highlight:rgb(255 255 255 / 0.125);--mm-color-background-emphasis:rgb(255 255 255 / 0.1);--mm-color-focusring:#06c}.mm-counter{display:block;-webkit-padding-start:20px;padding-inline-start:20px;float:right;color:var(--mm-color-text-dimmed)}[dir=rtl] .mm-counter{float:left}:root{--mm-iconbar-size:50px}.mm-menu--iconbar-left .mm-navbars,.mm-menu--iconbar-left .mm-panels{margin-left:var(--mm-iconbar-size)}.mm-menu--iconbar-right .mm-navbars,.mm-menu--iconbar-right .mm-panels{margin-right:var(--mm-iconbar-size)}.mm-iconbar{display:none;position:absolute;top:0;bottom:0;z-index:2;width:var(--mm-iconbar-size);overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;border:0 solid;border-color:var(--mm-color-border);background:var(--mm-color-background);color:var(--mm-color-text-dimmed);text-align:center}.mm-menu--iconbar-left .mm-iconbar,.mm-menu--iconbar-right .mm-iconbar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.mm-menu--iconbar-left .mm-iconbar{border-right-width:1px;left:0}.mm-menu--iconbar-right .mm-iconbar{border-left-width:1px;right:0}.mm-iconbar__bottom,.mm-iconbar__top{width:100%;-webkit-overflow-scrolling:touch;overflow:hidden;overflow-y:auto;-ms-scroll-chaining:none;overscroll-behavior:contain}.mm-iconbar__bottom>*,.mm-iconbar__top>*{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:calc((var(--mm-iconbar-size) - var(--mm-lineheight))/ 2) 0}.mm-iconbar__bottom a,.mm-iconbar__bottom a:hover,.mm-iconbar__top a,.mm-iconbar__top a:hover{text-decoration:none}.mm-iconbar__tab--selected{background:var(--mm-color-background-emphasis)}:root{--mm-iconpanel-size:50px}.mm-panel--iconpanel-0{inset-inline-start:calc(0 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-1{inset-inline-start:calc(1 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-2{inset-inline-start:calc(2 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-3{inset-inline-start:calc(3 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-4{inset-inline-start:calc(4 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-first~.mm-panel{inset-inline-start:var(--mm-iconpanel-size)}.mm-menu--iconpanel .mm-panel--parent .mm-divider,.mm-menu--iconpanel .mm-panel--parent .mm-navbar{opacity:0}.mm-menu--iconpanel .mm-panels>.mm-panel--parent{overflow-y:hidden;-webkit-transform:unset;-ms-transform:unset;transform:unset}.mm-menu--iconpanel .mm-panels>.mm-panel:not(.mm-panel--iconpanel-first):not(.mm-panel--iconpanel-0){border-inline-start-width:1px;border-inline-start-style:solid}.mm-navbars{-ms-flex-negative:0;flex-shrink:0}.mm-navbars .mm-navbar{position:relative;padding-top:0;border-bottom:none}.mm-navbars--top{border-bottom:1px solid var(--mm-color-border)}.mm-navbars--top .mm-navbar:first-child{padding-top:env(safe-area-inset-top)}.mm-navbars--bottom{border-top:1px solid var(--mm-color-border)}.mm-navbars--bottom .mm-navbar:last-child{padding-bottom:env(safe-area-inset-bottom)}.mm-navbar__breadcrumbs{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;padding:0 20px;overflow-x:auto;-webkit-overflow-scrolling:touch}.mm-navbar__breadcrumbs>*{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;-webkit-padding-end:6px;padding-inline-end:6px}.mm-navbar__breadcrumbs>a{text-decoration:underline}.mm-navbar__breadcrumbs:not(:last-child){-webkit-padding-end:0;padding-inline-end:0}.mm-btn:not(.mm-hidden)+.mm-navbar__breadcrumbs{-webkit-padding-start:0;padding-inline-start:0}.mm-navbar__tab{padding:0 10px;border:1px solid transparent}.mm-navbar__tab--selected{background:var(--mm-color-background)}.mm-navbar__tab--selected:not(:first-child){border-inline-start-color:var(--mm-color-border)}.mm-navbar__tab--selected:not(:last-child){border-inline-end-color:var(--mm-color-border)}.mm-navbars--top.mm-navbars--has-tabs{border-bottom:none}.mm-navbars--top.mm-navbars--has-tabs .mm-navbar{background:var(--mm-color-background-emphasis)}.mm-navbars--top.mm-navbars--has-tabs .mm-navbar--tabs~.mm-navbar{background:var(--mm-color-background)}.mm-navbars--top.mm-navbars--has-tabs .mm-navbar:not(.mm-navbar--tabs):last-child{border-bottom:1px solid var(--mm-color-border)}.mm-navbars--top .mm-navbar__tab{border-bottom-color:var(--mm-color-border)}.mm-navbars--top .mm-navbar__tab--selected{border-top-color:var(--mm-color-border);border-bottom-color:transparent}.mm-navbars--bottom.mm-navbar--has-tabs{border-top:none}.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar{background:var(--mm-color-background)}.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs,.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs~.mm-navbar{background:var(--mm-color-background-emphasis)}.mm-navbars--bottom .mm-navbar__tab{border-top-color:var(--mm-color-border)}.mm-navbars--bottom .mm-navbar__tab--selected{border-bottom-color:var(--mm-color-border);border-top-color:transparent}.mm-searchfield{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;height:var(--mm-navbar-size);padding:0;overflow:hidden}.mm-searchfield__input{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;width:100%;max-width:100%;padding:0 10px;-webkit-box-sizing:border-box;box-sizing:border-box}.mm-searchfield__input input{display:block;width:100%;max-width:100%;height:calc(var(--mm-navbar-size) * .7);min-height:auto;max-height:auto;margin:0;padding:0 10px;-webkit-box-sizing:border-box;box-sizing:border-box;border:none;border-radius:4px;line-height:calc(var(--mm-navbar-size) * .7);font:inherit;font-size:inherit}.mm-searchfield__input input,.mm-searchfield__input input:focus,.mm-searchfield__input input:hover{background:var(--mm-color-background-highlight);color:var(--mm-color-text)}.mm-menu[class*=-contrast] .mm-searchfield__input input{border:1px solid var(--mm-color-border)}.mm-searchfield__input input::-ms-clear{display:none}.mm-searchfield__btn{display:none;position:absolute;inset-inline-end:0;top:0;bottom:0}.mm-searchfield--searching .mm-searchfield__btn{display:block}.mm-searchfield__cancel{display:block;position:relative;-webkit-margin-end:-100px;margin-inline-end:-100px;-webkit-padding-start:5px;padding-inline-start:5px;-webkit-padding-end:20px;padding-inline-end:20px;visibility:hidden;line-height:var(--mm-navbar-size);text-decoration:none;-webkit-transition-property:visibility,margin;-o-transition-property:visibility,margin;transition-property:visibility,margin}.mm-searchfield--cancelable .mm-searchfield__cancel{visibility:visible;-webkit-margin-end:0;margin-inline-end:0}.mm-panel--search{left:0!important;right:0!important;width:100%!important;border:none!important}.mm-panel__splash{padding:20px}.mm-panel--searching .mm-panel__splash{display:none}.mm-panel__noresults{display:none;padding:40px 20px;color:var(--mm-color-text-dimmed);text-align:center;font-size:150%;line-height:1.4}.mm-panel--noresults .mm-panel__noresults{display:block}:root{--mm-sectionindexer-size:20px}.mm-sectionindexer{background:inherit;text-align:center;font-size:12px;-webkit-box-sizing:border-box;box-sizing:border-box;width:var(--mm-sectionindexer-size);position:absolute;top:0;bottom:0;inset-inline-end:calc(-1 * var(--mm-sectionindexer-size));z-index:5;-webkit-transition-property:inset-inline-end;-o-transition-property:inset-inline-end;transition-property:inset-inline-end;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}.mm-sectionindexer a{color:var(--mm-color-text-dimmed);line-height:1;text-decoration:none;display:block}.mm-sectionindexer~.mm-panel{-webkit-padding-end:0;padding-inline-end:0}.mm-sectionindexer--active{right:0}.mm-sectionindexer--active~.mm-panel{-webkit-padding-end:var(--mm-sectionindexer-size);padding-inline-end:var(--mm-sectionindexer-size)}.mm-menu--selected-hover .mm-listitem__btn,.mm-menu--selected-hover .mm-listitem__text,.mm-menu--selected-parent .mm-listitem__btn,.mm-menu--selected-parent .mm-listitem__text{-webkit-transition-property:background-color;-o-transition-property:background-color;transition-property:background-color}@media (hover:hover){.mm-menu--selected-hover .mm-listview:hover>.mm-listitem--selected:not(:hover)>.mm-listitem__text{background:0 0}.mm-menu--selected-hover .mm-listitem__btn:hover,.mm-menu--selected-hover .mm-listitem__text:hover{background:var(--mm-color-background-emphasis)}}.mm-menu--selected-parent .mm-listitem__btn,.mm-menu--selected-parent .mm-listitem__text{-webkit-transition-delay:.2s;-o-transition-delay:.2s;transition-delay:.2s}@media (hover:hover){.mm-menu--selected-parent .mm-listitem__btn:hover,.mm-menu--selected-parent .mm-listitem__text:hover{-webkit-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s}}.mm-menu--selected-parent .mm-panel--parent .mm-listitem:not(.mm-listitem--selected-parent)>.mm-listitem__text{background:0 0}.mm-menu--selected-parent .mm-listitem--selected-parent>.mm-listitem__btn,.mm-menu--selected-parent .mm-listitem--selected-parent>.mm-listitem__text{background:var(--mm-color-background-emphasis)}:root{--mm-sidebar-collapsed-size:50px;--mm-sidebar-expanded-size:var(--mm-max-size)}.mm-wrapper--sidebar-collapsed .mm-slideout{width:calc(100% - var(--mm-sidebar-collapsed-size));-webkit-transform:translate3d(var(--mm-sidebar-collapsed-size),0,0);transform:translate3d(var(--mm-sidebar-collapsed-size),0,0)}[dir=rtl] .mm-wrapper--sidebar-collapsed .mm-slideout{-webkit-transform:none;-ms-transform:none;transform:none}.mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-divider,.mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-navbar{opacity:0}.mm-wrapper--sidebar-expanded .mm-menu--sidebar-expanded{width:var(--mm-sidebar-expanded-size);border-right-width:1px;border-right-style:solid}.mm-wrapper--sidebar-expanded.mm-wrapper--opened{overflow:auto}.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-wrapper__blocker{display:none}.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout{width:calc(100% - var(--mm-sidebar-expanded-size));-webkit-transform:translate3d(var(--mm-sidebar-expanded-size),0,0);transform:translate3d(var(--mm-sidebar-expanded-size),0,0)}[dir=rtl] .mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout{-webkit-transform:none;-ms-transform:none;transform:none}
/* roboto-300 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-300.woff') format('woff'), /* Modern Browsers */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
  }
  /* roboto-regular - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
  }
  /* roboto-500 - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-500.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-500.woff') format('woff'), /* Modern Browsers */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
  }
  /* roboto-700 - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-700.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-700.woff') format('woff'), /* Modern Browsers */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../../files/all_sites/assets/fonts/roboto/./roboto-v27-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
  }
@charset "UTF-8";
:root {
  --faq-result-link-color: #A3195B !important;
  --faq-result-link-text-color: #fff !important;
  --faq-result-link-color-hover: #153B58 !important;
  --faq-result-matches-text-color: #7d7d7d !important;
  --faq-result-border-color: #7d7d7d !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pb-90 {
  padding-bottom: 90px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pt-90 {
  padding-top: 90px !important;
}
.pt-100 {
  padding-top: 100px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mt-70 {
  margin-top: 70px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mt-100 {
  margin-top: 100px !important;
}

.icon::after,
.icon::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.icon::before {
  padding-right: 7px;
}

.icon::after {
  padding-left: 7px;
}

.account::before {
  font: var(--fa-font-solid);
  content: "\f2f6";
}

.dropdown::after {
  font: var(--fa-font-solid);
  content: "\f078";
}

strong, b {
  font-weight: 700;
}

:root {
  --heading-h1: clamp(2rem, 1.3rem + 2.2vw, 2.8rem);
  --heading-h2: clamp(1.7rem, 1.15rem + 1.75vw, 2.25rem);
  --heading-h3: clamp(1.45rem, 1.05rem + 1.35vw, 2rem);
  --heading-h4: clamp(1.25rem, 1rem + 1vw, 1.7rem);
  --heading-h5: clamp(1.1rem, 0.95rem + 0.65vw, 1.4rem);
  --heading-h6: clamp(1rem, 0.9rem + 0.35vw, 1.2rem);
}

h1 {
  font-size: var(--heading-h1) !important;
  font-weight: 700;
  color: #153B58;
}

h2 {
  font-size: var(--heading-h2) !important;
  font-weight: 700;
  color: #153B58;
}

h3 {
  font-size: var(--heading-h3) !important;
  font-weight: 700;
  color: #A3195B;
}

h4 {
  font-size: var(--heading-h4) !important;
  font-weight: 700;
  color: #A3195B;
}

h5 {
  font-size: var(--heading-h5) !important;
  font-weight: 700;
  color: #A3195B;
}

h6 {
  font-size: var(--heading-h6) !important;
  font-weight: 700;
  color: #1A171B;
}

h1, h2, h3, h4, h5, h6 {
  padding: 10px 0;
  margin: 0;
}
h1:has(+ p, + h1, + h2, + h3, + h4, + h5, + h6), h2:has(+ p, + h1, + h2, + h3, + h4, + h5, + h6), h3:has(+ p, + h1, + h2, + h3, + h4, + h5, + h6), h4:has(+ p, + h1, + h2, + h3, + h4, + h5, + h6), h5:has(+ p, + h1, + h2, + h3, + h4, + h5, + h6), h6:has(+ p, + h1, + h2, + h3, + h4, + h5, + h6) {
  padding: 0 0 10px 0;
}

p, ol, ul {
  font-size: clamp(0.785rem, 0.8rem + 1vw, 1rem);
  line-height: clamp(1.1rem, 0.8rem + 1vw, 1.4rem);
  font-weight: 300;
  padding: 10px 0;
}
p a, ol a, ul a {
  color: #0b558f;
}
p a:hover, ol a:hover, ul a:hover {
  font-weight: 700;
}

blockquote p {
  padding: 20px 30px;
  background-color: #d1d1d1;
  text-align: justify;
  hyphens: auto;
  -moz-text-align-last: left;
       text-align-last: left;
}
blockquote p::before {
  content: "“";
  font-weight: 700;
}
blockquote p::after {
  content: "”";
  font-weight: 700;
}

#main ol {
  padding: 10px 0;
  margin-left: 20px;
}
#main ol:has(.custom_list) {
  counter-reset: custom-li-counter;
  margin-left: 0;
  list-style: none;
}
#main ol:has(.custom_list) li {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  counter-increment: custom-li-counter;
  padding-bottom: 15px;
}
#main ol:has(.custom_list) li::before {
  content: counter(custom-li-counter) ". ";
  color: #153B58;
  font-weight: 700;
  font-size: 160%;
  padding-right: 14px;
}
#main ol li {
  padding: 1px 0 1px 10px;
  margin-left: 5px;
}
#main ol li::marker {
  color: #153B58;
  font-weight: 700;
}
#main ul li {
  padding: 1px 0 1px 10px;
  margin-left: 5px;
}
#main ul li::marker {
  content: "▪";
}

.content-table table thead th {
  color: #ffffff;
}
.content-table table tfoot tr td {
  font-weight: 700;
  color: #ffffff;
}
.content-table.table_special_grey table tr td, .content-table.table_special_color table tr td {
  font-size: 0.785rem;
  font-weight: 700;
}
.content-table.table_special_grey td {
  color: #1A171B;
  background: #AFAFAF;
}
.content-table.table_special_color td {
  color: #1A171B;
  background: #D2CA7D;
}

.content-text p, .content-text span {
  hyphens: auto;
  word-spacing: normal;
}

#footer h4 {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
}

.button a {
  font-weight: 700;
  text-decoration: none;
  height: 100%;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  padding: 10px 20px;
  display: inline-block;
  margin: 5px 0;
}
@media screen and (max-width: 580px) {
  .button a {
    padding: 10px;
  }
}

a.button, button.button {
  font-weight: 700;
  text-decoration: none;
  height: 100%;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  display: inline-block;
  padding: 10px 20px;
  margin: 5px 0;
}
@media screen and (max-width: 580px) {
  a.button, button.button {
    padding: 10px;
  }
}

.grauer-text h6,
.grauer-text h3,
.grauer-text h2 {
  color: #6b6f76;
}

.pinker-text h1 {
  color: #A3195B !important;
}

.pinker-text h2 {
  color: #A3195B !important;
}

.pinker-textNurH3 h3 {
  color: #A3195B !important;
}

.h2p-20 h2 {
  margin-bottom: 40px;
  margin-top: -15px;
}

.h2p-20.content-text {
  margin: 0;
}
.h2p-20.content-text .rte > h2 {
  margin: 0 0 -13px !important;
  padding: 0 !important;
  color: #153B58 !important;
}

.h2p-20__subline.content-text {
  margin: 0 0 40px;
}
.h2p-20__subline.content-text .rte > p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: var(--heading-h3) !important;
  font-weight: 700;
  line-height: 1.18;
  color: #A3195B !important;
}

.blauer-text h5 {
  color: #153B58;
}

.blauer-text h4 {
  color: #153B58;
}

.he-split-image-text__subline.content-text {
  margin: 0;
}
.he-split-image-text__subline.content-text .rte > p {
  margin: 0;
  padding: 0 0 10px 0;
  font-size: var(--heading-h3) !important;
  font-weight: 700;
  line-height: 1.18;
  color: #153B58 !important;
}

.intro h2 {
  color: #A3195B;
}
.intro .intro__subline {
  margin: 0;
}
.intro .intro__subline .rte > p {
  margin: 0;
  padding: 0 0 10px 0;
  font-size: var(--heading-h3) !important;
  font-weight: 700;
  line-height: 1.18;
  color: #153B58 !important;
}

.intro-ueberuns h2 {
  color: #A3195B;
  margin-bottom: -5px;
  font-size: 20px !important;
}
.intro-ueberuns h3 {
  color: #153B58;
  font-size: 29px !important;
}

.centerText > .col-12.col-md-6:not(.col-start-8) {
  margin: auto;
}
@media (max-width: 991px) {
  .centerText > .col-12.col-md-6.col-start-8 {
    grid-column: 1/-1 !important;
    grid-column-start: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .centerText > .col-12.col-md-6 {
    grid-column: 1/12 !important;
    align-items: center;
  }
}

.ende-ueberuns p:last-child strong {
  color: #A3195B;
}

.intro-ueberuns__subline.content-text .rte > p {
  margin: 0;
  padding: 0 0 10px 0;
  font-size: 29px !important;
  font-weight: 700;
  line-height: 1.18;
  color: #153B58 !important;
}

.he-move-info__subline.content-text .rte > p {
  margin: 0;
  padding: 0 0 10px 0;
  font-size: var(--heading-h4) !important;
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff !important;
}

#tariff.tariff-form-element {
  width: 100%;
  border-radius: 7px;
  grid-template-areas: "tab1 tab2" "content content";
}
#tariff.tariff-form-element > .tab-name:nth-of-type(1), #tariff.tariff-form-element > .tab-name:nth-of-type(2) {
  font-size: 16px;
}
#tariff .tab-content {
  border-radius: 7px;
}
#tariff .tab-name {
  border: 0;
  cursor: pointer;
}
#tariff .tab-name:focus, #tariff .tab-name:focus-visible, #tariff .tab-name:active {
  outline: none;
  box-shadow: none;
}
#tariff .tab-name.active {
  color: #0f2d45;
}
#tariff form {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.1fr auto;
  gap: 18px 22px;
  align-items: end;
}
#tariff input[type=text] {
  border: 1px solid #d2d5d9;
  border-radius: 7px;
  font-size: 1rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.07), 0 1px 0 rgba(255, 255, 255, 0.95);
}
#tariff input[type=text]:focus {
  border-color: #0f2d45;
  box-shadow: 0 0 0 3px rgba(15, 45, 69, 0.15);
}
#tariff .form-submit button {
  border-radius: 7px;
  background: #0f2d45;
  font-weight: 600;
  cursor: pointer;
}
#tariff .cons-icons i {
  transition: color 0.15s ease, opacity 0.15s ease, transform 0.15s ease, filter 0.15s ease;
}
#tariff .cons-icons i:hover {
  color: #b01269;
  opacity: 1;
  transform: translateY(-1px);
}
#tariff .cons-icons i.active {
  color: #7a0e52;
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(122, 14, 82, 0.25));
}
#tariff .form-consumption-helper {
  align-items: center;
  margin-left: 18px;
}
#tariff .form-consumption-helper i:last-child {
  margin-right: 0;
}
@media (max-width: 705px) {
  #tariff.tariff-form-element {
    margin-top: 40px;
  }
  #tariff.tariff-form-element > .tab-content {
    padding: 14px;
  }
  #tariff .tab-name {
    padding: 10px 0;
  }
  #tariff form {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-height: 520px) and (orientation: landscape) {
  #tariff.tariff-form-element {
    margin-top: -34px;
    transform-origin: top center;
  }
  #tariff.tariff-form-element > .tab-content {
    padding: 10px;
  }
  #tariff .tab-name {
    padding: 9px 0;
    font-size: 0.9rem;
  }
  #tariff form {
    gap: 10px 12px;
  }
  #tariff input[type=text],
  #tariff .form-submit button {
    margin-top: -40px;
    height: 30px;
    font-size: 13px;
  }
  #tariff .form-consumption-helper {
    margin-left: 16px;
  }
  #tariff .form-consumption,
  #tariff .form-zip {
    line-height: 1.25;
  }
}
@media (min-width: 1280px) {
  #tariff form {
    grid-template-columns: minmax(290px, 1.12fr) minmax(170px, 0.72fr) minmax(290px, 1.12fr) auto;
    gap: 22px 34px;
    align-items: end;
  }
  #tariff .form-zip label,
  #tariff .form-consumption label {
    font-weight: 1000;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
  }
  #tariff .form-consumption-helper label {
    font-weight: 1000;
    font-size: 14px;
    margin-bottom: 7px;
  }
  #tariff input[type=text] {
    height: 34px;
    margin-bottom: -50px;
  }
  #tariff .form-submit button {
    height: 35px;
    padding: 0 28px;
    margin-bottom: -10px;
  }
  #tariff .cons-icons i {
    margin-right: 8px;
  }
}

.he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero input[type=text] {
  height: 42px;
  padding: 0 14px;
  margin: 0;
  border-radius: 7px;
  font-size: 15px;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px 6px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero input[type=text]:focus {
  border-color: #b01269;
  box-shadow: 0 0 0 3px rgba(176, 18, 105, 0.12);
}
.he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero .cons-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}
.he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero .cons-icons label {
  flex: 0 0 100%;
  margin: 0 0 4px;
}
.he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero .cons-icons i {
  margin: 0 4px 0 0;
  font-size: 22px;
}
.he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero .cons-icons i:hover, .he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero .cons-icons i.active {
  color: #b01269;
  opacity: 1;
  filter: none;
  transform: none;
}
.he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero .form-submit button {
  height: 46px;
  margin: 0;
  background: #b01269;
  font-size: 16px;
}
.he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero .form-submit button:hover {
  background: #991057;
}
.he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero .form-submit button:focus, .he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero .form-submit button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(176, 18, 105, 0.18);
}
@media (max-width: 991px) {
  .he-textbreaker--tariff-hero > .row.ce_rowStart.inner-width {
    gap: 24px;
  }
  .he-textbreaker--tariff-hero > .row.ce_rowStart.inner-width > .ce_columns.ce_colStart.col-12.col-md-8,
  .he-textbreaker--tariff-hero > .row.ce_rowStart.inner-width > .ce_columns.ce_colStart.col-12.col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .he-textbreaker--tariff-hero > .row.ce_rowStart.inner-width > .ce_columns.ce_colStart.col-12.col-md-8 {
    padding-right: 0;
  }
  .he-textbreaker--tariff-hero > .row.ce_rowStart.inner-width > .ce_columns.ce_colStart.col-12.col-md-8 > .content-text .rte h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .he-textbreaker--tariff-hero > .row.ce_rowStart.inner-width > .ce_columns.ce_colStart.col-12.col-md-8 > .content-text .rte p {
    font-size: 1rem;
    max-width: 100%;
  }
  .he-textbreaker--tariff-hero > .row.ce_rowStart.inner-width > .ce_columns.ce_colStart.col-12.col-md-8 > .ce_columns.ce_colStart.col-12 {
    margin: 0 18px 10px 0;
  }
  .he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero {
    max-width: 100%;
    margin: 0 auto;
  }
  .he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero > .tab-content {
    padding: 20px 24px 28px;
  }
}
@media (max-width: 680px) {
  .he-textbreaker--tariff-hero > .row.ce_rowStart.inner-width > .ce_columns.ce_colStart.col-12.col-md-8 > .content-text {
    margin-bottom: 22px;
  }
  .he-textbreaker--tariff-hero > .row.ce_rowStart.inner-width > .ce_columns.ce_colStart.col-12.col-md-8 > .ce_columns.ce_colStart.col-12 {
    margin: 0;
  }
  .he-textbreaker--tariff-hero > .row.ce_rowStart.inner-width > .ce_columns.ce_colStart.col-12.col-md-8 > .ce_columns.ce_colStart.col-12 .rte p {
    white-space: normal;
  }
  .he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero > .tab-content {
    padding: 18px 18px 24px;
  }
  .he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero .tab-name {
    min-height: 50px;
    font-size: 15px;
  }
  .he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero input[type=text] {
    height: 40px;
  }
  .he-textbreaker--tariff-hero #tariff.tariff-form-element.tariff-form-element--hero .form-submit button {
    height: 44px;
  }
}

#show-tariffs-element.loader {
  margin-top: clamp(24px, 4dvh, 48px);
  padding-bottom: 220px;
}
@media (max-width: 390px) and (max-height: 700px) {
  #show-tariffs-element.loader {
    margin-top: clamp(60px, 10dvh, 110px);
  }
}

body, html {
  font-family: "Roboto", "Arial", sans-serif;
  font-display: fallback;
  font-size: 14px;
  height: 100%;
  background: #f8f8f8;
  color: #1A171B;
}
body.greyscala, html.greyscala {
  filter: grayscale(100%);
}

#wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#container {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

table, ol, ul, form {
  margin-bottom: 0;
}

.block {
  overflow: visible;
}

@media screen and (max-width: 1280px) {
  .inside {
    padding: 0 6%;
  }
}
.inner-width {
  max-width: 1280px;
  margin: 0 auto;
}

.row.content-accordion {
  gap: 0 !important;
}

#wrapper #container #main .inside .block {
  padding: 0;
}

.center-content {
  text-align: center;
}

html,
body {
  box-sizing: border-box;
  background: #f8f8f8;
  color: #595959;
  overflow-x: hidden;
  max-width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

#main {
  margin-top: clamp(20px, 20vh, 60px);
}

body:not(:has(#header-img)) #main {
  margin-top: clamp(120px, 20vh, 160px);
}

#main .inside,
#header .inside,
#footer .inside {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (991px) {
  #main .inside,
  #header .inside,
  #footer .inside {
    padding: 0 20px;
  }
}

#header,
#header * {
  box-sizing: border-box;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  clip-path: none;
  overflow: visible;
}
#header .inside,
#header .mod_navigation {
  position: relative;
  z-index: 2;
  overflow: visible;
}
#header .inside {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(12px, 2.2vw, 28px);
  box-sizing: border-box;
}
#header .row.ce_rowStart > .col-4 {
  display: flex;
  align-items: center;
}
#header .row.ce_rowStart > .col-8 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  overflow: visible;
}
#header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  box-shadow: 0 0 1px #595959;
  z-index: 0;
  pointer-events: none;
}
#header .logo,
#header .logo figure,
#header .logo a {
  display: flex;
  align-items: center;
}
#header .logo img {
  display: block;
  width: clamp(120px, 15.6vw, 200px);
  height: auto;
}
#header .mod_navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
#header .mod_navigation > ul.level_1 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 3.4vw, 44px);
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .mod_navigation > ul.level_1 > li {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
}
#header .mod_navigation > ul.level_1 > li > a,
#header .mod_navigation > ul.level_1 > li > strong {
  display: inline-flex;
  align-items: center;
  padding: 0;
  line-height: 1;
  white-space: nowrap;
}
#header .mod_navigation > ul.level_1 > li > ul.level_2 {
  z-index: 99999;
}
#header.nscroll {
  padding-bottom: clamp(12px, 2.3vw, 29px);
}
#header.nscroll .logo img {
  width: clamp(160px, 21.5vw, 275px);
}
#header.nscroll::before {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
@media (max-height: 520px) and (orientation: landscape) {
  #header .logo img {
    width: clamp(110px, 20vw, 160px);
  }
  #header.nscroll {
    padding-bottom: clamp(10px, 4vh, 22px);
  }
  #header.nscroll .logo img {
    width: clamp(140px, 27vw, 220px);
  }
}

#header-img {
  max-height: clamp(440px, 54vh, 690px);
}
#header-img.header-img--subpage {
  max-height: clamp(360px, 44vh, 560px);
}
#header-img.header-img--subpage .row,
#header-img.header-img--subpage .mod_article_header {
  height: clamp(360px, 44vh, 560px);
}
#header-img:has(.row.ce_rowStart.header-row--compact) {
  max-height: clamp(280px, 33vh, 420px);
}
#header-img:has(.row.ce_rowStart.header-row--compact) .row,
#header-img:has(.row.ce_rowStart.header-row--compact) .mod_article_header {
  height: clamp(280px, 33vh, 420px);
}
@media screen and (max-width: 1280px) {
  #header-img .inside {
    padding: 0;
  }
}
#header-img .row {
  max-width: 1280px;
  height: clamp(440px, 54vh, 690px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#header-img .mod_article_header {
  height: clamp(440px, 54vh, 690px);
}
#header-img .mod_article_header .content-text {
  color: #ffffff;
  position: relative;
  z-index: 2;
  padding-top: clamp(64px, 5.6vw, 110px);
  padding-bottom: clamp(20px, 4vh, 48px);
}
#header-img .mod_article_header .content-text p:first-child {
  font-size: clamp(1.3rem, 0.8rem + 1vw, 1.75rem);
}
#header-img .mod_article_header .content-text .rte {
  max-width: clamp(300px, 42vw, 540px);
}
#header-img .mod_article_header .content-text .rte > h1 {
  letter-spacing: -0.035em;
  color: #ffffff;
}
#header-img .mod_article_header .content-text .rte > h1 + p {
  display: block;
  margin: 0;
  padding: 0;
  font-weight: 400;
}
#header-img .mod_article_header .content-text .rte > h1 + h2 {
  margin-top: -14px !important;
  letter-spacing: -0.02em;
  color: #ffffff;
}
#header-img .mod_article_header .content-text .rte > h2 + p {
  padding-right: clamp(32px, 7.9vw, 101px);
  color: #ffffff;
}
#header-img .mod_article_header .content-image {
  background: linear-gradient(90deg, #153B58, #A3195B);
  position: absolute;
  inset: 0;
  overflow: visible;
}
#header-img .mod_article_header .content-image figure {
  height: 100%;
}
#header-img .mod_article_header .content-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#header-img .mod_article_header:not(:has(.row.ce_rowStart.header-row--compact)) .content-text .rte > h1 + p {
  display: block;
  font-size: clamp(1.7rem, 1.15rem + 1.75vw, 2.25rem) !important;
  font-weight: 700;
  color: #153B58;
}
#header-img .mod_article_header:has(.row.ce_rowStart.header-row--compact) .content-text .rte {
  max-width: clamp(360px, 48vw, 620px);
}
#header-img .mod_article_header:has(.row.ce_rowStart.header-row--compact) .content-text .rte > h1 {
  line-height: 1.02;
  margin-bottom: 2px;
}
#header-img .mod_article_header:has(.row.ce_rowStart.header-row--compact) .content-text .rte > h1 + h1 {
  margin-top: -4px;
  margin-bottom: 0;
  line-height: 1.08;
}
#header-img .mod_article_header:has(.row.ce_rowStart.header-row--compact) .content-text .rte > h1 + p {
  line-height: 1.12;
}
#header-img .mod_article_header:has(.row.ce_rowStart.header-row--compact) .content-text .rte > p {
  font-size: clamp(12px, 4vw, 26px);
}
#header-img .mod_article_header:not(:has(.row.ce_rowStart.header-row--compact)):has(#tariff) .content-text .rte > h1 {
  font-size: clamp(2.15rem, 2.8vw, 3.6rem);
}
#header-img .mod_article_header:not(:has(.row.ce_rowStart.header-row--compact)):has(#tariff) .content-text .rte > h1 + h1 {
  font-size: clamp(1.35rem, 1.65vw, 2.05rem);
  line-height: 1.1;
}
#header-img .mod_article_header:not(:has(.row.ce_rowStart.header-row--compact)):has(#tariff) .content-text .rte > h1 + h1 + p {
  font-size: clamp(0.85rem, 1.05vw, 1.25rem);
  line-height: 1.35;
  font-size: 14px;
  font-weight: 100;
}
#header-img .mod_article_header:not(:has(#tariff)) .row.ce_rowStart,
#header-img .mod_article_header:not(:has(#tariff)) .row.ce_rowStart > [class*=col-] {
  display: flex;
  align-items: center;
  min-height: 100%;
}
#header-img .mod_article_header:not(:has(#tariff)) .content-text {
  width: 100%;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
#header-img .mod_article_header:not(:has(#tariff)) .content-text .rte > p:last-of-type {
  margin-bottom: clamp(16px, 3vh, 40px);
}
#header-img .mod_article_header:has(#tariff) {
  overflow: visible;
  position: relative;
}
#header-img .mod_article_header:has(#tariff) .content-text .rte > h2 {
  margin-top: -4px !important;
}
#header-img .mod_article_header:has(#tariff) > p:last-of-type {
  margin-bottom: clamp(14px, 2vh, 30px);
}
#header-img .mod_article_header:has(#tariff) #tariff.tariff-form-element {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#header-img:has(#tariff) {
  margin-bottom: calc(clamp(54px, 4.5vw, 82px) + clamp(50px, 5.3vw, 68px));
}

@media (min-width: 300px) {
  #header-img:has(#tariff) {
    overflow: visible;
    max-height: none;
    margin-bottom: clamp(150px, 340px - 12vw, 285px);
  }
  #header-img:has(#tariff) #tariff.tariff-form-element {
    width: calc(100% - clamp(28px, 7vw, 96px));
    max-width: calc(100% - clamp(28px, 7vw, 96px));
    margin: 0;
    z-index: 10;
  }
  #header-img:not(:has(.row.ce_rowStart.header-row--compact)):has(#tariff) .mod_article_header > .row.ce_rowStart > .col-7 {
    display: flex;
    align-items: center;
    min-height: calc(clamp(420px, 56svh, 475px) - clamp(34px, 5vw, 52px));
  }
  #header-img:not(:has(.row.ce_rowStart.header-row--compact)):has(#tariff) .content-text {
    padding: 0 clamp(32px, 5vw, 52px);
  }
  #header-img:not(:has(.row.ce_rowStart.header-row--compact)):has(#tariff) #tariff.tariff-form-element {
    top: calc(100% - clamp(34px, 5vw, 52px));
  }
}
@media (min-width: 300px) and (min-width: 1101px) {
  #header-img:not(:has(.row.ce_rowStart.header-row--compact)):has(#tariff) #tariff.tariff-form-element {
    top: calc(100% - clamp(34px, 5vw, 52px) + clamp(12px, 1.25vw, 24px));
  }
}
@media (min-width: 300px) {
  #header-img:has(.row.ce_rowStart.header-row--compact):has(#tariff) .content-text {
    padding-left: clamp(32px, 5vw, 52px);
    padding-right: clamp(32px, 5vw, 52px);
  }
  #header-img:has(.row.ce_rowStart.header-row--compact):has(#tariff) #tariff.tariff-form-element {
    top: calc(110% - clamp(52px, 5vw, 76px));
  }
  #header-img:has(.row.ce_rowStart.header-row--compact):not(:has(#tariff)) .content-text {
    margin: 0;
    padding-top: 40%;
    padding-bottom: 50%;
    padding-left: clamp(32px, 5vw, 52px);
    padding-right: clamp(32px, 5vw, 52px);
  }
}
@media (max-width: 705px) {
  #header-img:has(#tariff) {
    margin-bottom: clamp(300px, 54vw, 340px);
  }
  #header-img:has(.row.ce_rowStart.header-row--compact):has(#tariff) {
    margin-bottom: clamp(270px, 54vw, 240px);
  }
}
@media (max-width: 1240px) and (min-width: 706px) {
  #header-img:has(#tariff) {
    margin-bottom: clamp(150px, 293px - 12vw, 285px);
  }
  #header-img:has(.row.ce_rowStart.header-row--compact):has(#tariff) {
    margin-bottom: clamp(182px, 123px - 12vw, 185px);
  }
}
.mod_mmenu {
  z-index: 9999;
}

@media screen and (max-width: 991px) {
  .mobile_menu_trigger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 991px) {
  .mobile_menu_trigger {
    display: none;
    visibility: hidden;
  }
}
.mobile_menu_trigger {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.7rem;
  color: #1A171B;
}
.mobile_menu_trigger:hover {
  cursor: pointer;
  color: #153B58;
}
.mobile_menu_trigger:hover svg rect {
  fill: #153B58;
}
.mobile_menu_trigger svg {
  width: 28px;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 991px) {
  .navigation_wrapper {
    display: none;
    visibility: hidden;
  }
}
@media screen and (max-width: 991px) {
  #header nav.mod_navigation {
    display: none !important;
    visibility: hidden;
  }
}
@media screen and (max-width: 991px) {
  #header .inside .row {
    display: flex;
    align-items: center;
  }
  #header .mobile_menu_trigger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    text-align: center;
  }
}
#header .mod_navigation > ul.level_1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 34px;
}
#header .mod_navigation > ul.level_1 > li {
  position: relative;
}
#header .mod_navigation > ul.level_1 > li.active > a,
#header .mod_navigation > ul.level_1 > li.active > strong, #header .mod_navigation > ul.level_1 > li:hover > a,
#header .mod_navigation > ul.level_1 > li:hover > strong {
  color: #A3195B;
  font-weight: 700;
}
#header .mod_navigation > ul.level_1 > li > a,
#header .mod_navigation > ul.level_1 > li > strong {
  font-weight: 400;
  color: #595959;
}
#header .mod_navigation > ul.level_1 > li > ul.level_2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 11000;
  flex-direction: column;
  gap: 0;
  background: #fff;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
#header .mod_navigation > ul.level_1 > li > ul.level_2 > li > a,
#header .mod_navigation > ul.level_1 > li > ul.level_2 > li > strong {
  display: block;
  padding: 8px 14px;
  color: #595959;
  font-weight: 400;
  white-space: nowrap;
}
#header .mod_navigation > ul.level_1 > li > ul.level_2 > li:hover > a,
#header .mod_navigation > ul.level_1 > li > ul.level_2 > li:hover > strong {
  color: #A3195B;
  font-weight: 700;
}
#header .mod_navigation > ul.level_1 > li:hover > ul.level_2, #header .mod_navigation > ul.level_1 > li:focus-within > ul.level_2 {
  display: flex;
}

#header .inside .mod_navigation ul.level_1 li.submenu > a {
  pointer-events: none;
}

#header .mod_navigation > ul.level_1 > li > a[href="https://mein.hitenergie.de/"] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

#header .mod_navigation > ul.level_1 > li > a[href="https://mein.hitenergie.de/"]::before {
  content: "\f090";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.95em;
  line-height: 1;
  color: #A3195B;
  transform: translateY(-1px);
}

#header .mod_navigation > ul.level_1 > li > a[href="/service"] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

#header .mod_navigation > ul.level_1 > li > a[href="/service"]::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.95em;
  line-height: 1;
  color: #A3195B;
  transform: translateY(-1px);
}

#header .mod_navigation > ul.level_1 > li > a[href="/strom-gas"]::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.95em;
  line-height: 1;
  color: #A3195B;
  transform: translateY(-1px);
}

#header .mod_navigation > ul.level_1 > li > :is(a, strong) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

#header .mod_navigation > ul.level_1 > li > :is(a, strong)::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.95em;
  line-height: 1;
  color: #A3195B;
  transform: translateY(-1px);
}

.mobile_menu .inner {
  background: #ffffff;
  box-sizing: border-box;
  padding: 20px;
  overflow: unset;
}
.mobile_menu .inner .mod_search {
  padding-bottom: 20px;
  border-bottom: 1px solid #3a3a3a;
}
.mobile_menu .inner .mod_search .formbody {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}
.mobile_menu .inner .mod_search .formbody .widget-text {
  width: 100%;
}
.mobile_menu .inner .mod_search .formbody .widget-text input {
  width: inherit;
}
.mobile_menu .inner .mod_search .formbody .widget-submit button {
  border: none;
  background: transparent;
  font-size: 1rem;
  vertical-align: middle;
  line-height: 30px;
}
.mobile_menu .inner .mod_search .formbody .widget-submit button:hover {
  color: #153B58;
  cursor: pointer;
}
.mobile_menu .inner .mod_customnav {
  padding: 20px 0;
  border-bottom: 1px solid rgba(26, 23, 27, 0.1);
}
.mobile_menu .inner .mod_customnav a, .mobile_menu .inner .mod_customnav strong {
  text-decoration: none;
  color: #1A171B;
  font-weight: 700;
  text-align: right;
  display: block;
}
.mobile_menu .inner .mod_customnav a:hover, .mobile_menu .inner .mod_customnav strong:hover {
  color: #153B58;
}
.mobile_menu .inner .mod_navigation {
  padding: 20px 0;
}
.mobile_menu .inner .mod_navigation li {
  border-bottom: 1px solid rgba(26, 23, 27, 0.1);
}
.mobile_menu .inner .mod_navigation li.last {
  border-bottom: none;
}
.mobile_menu .inner .mod_navigation li a, .mobile_menu .inner .mod_navigation li strong {
  display: block;
  padding: 7px 0;
}
.mobile_menu .inner .mod_navigation a, .mobile_menu .inner .mod_navigation strong {
  text-decoration: none;
  color: #1A171B;
  text-align: right;
}
.mobile_menu .inner .mod_navigation a:hover, .mobile_menu .inner .mod_navigation strong:hover {
  color: #153B58;
  font-weight: 700;
  cursor: pointer;
}
.mobile_menu .inner .mod_navigation ul.level_2 {
  background: #d1d1d1;
  margin: 0 -20px;
  padding: 10px 20px;
}

#header .mod_navigation ul.level_1 li,
#header .mod_navigation ul.level_1 a,
#header .mod_navigation ul.level_1 strong,
#header .mod_navigation ul.level_2 li,
#header .mod_navigation ul.level_2 a,
#header .mod_navigation ul.level_2 strong {
  cursor: pointer;
}
#header .mod_navigation > ul.level_1 > li {
  cursor: pointer;
}
#header .mod_navigation > ul.level_1 > li > a,
#header .mod_navigation > ul.level_1 > li > strong {
  cursor: pointer;
}
#header .mod_navigation > ul.level_1 > li > ul.level_2 > li {
  cursor: pointer;
}
#header .mod_navigation > ul.level_1 > li > ul.level_2 > li > a,
#header .mod_navigation > ul.level_1 > li > ul.level_2 > li > strong {
  cursor: pointer;
}

#header .inside .mod_navigation ul.level_1 li.submenu {
  cursor: pointer;
}
#header .inside .mod_navigation ul.level_1 li.submenu > a,
#header .inside .mod_navigation ul.level_1 li.submenu > strong {
  cursor: pointer;
}

.mobile_menu .mod_navigation li,
.mobile_menu .mod_navigation a,
.mobile_menu .mod_navigation strong,
.mobile_menu .mod_customnav li,
.mobile_menu .mod_customnav a,
.mobile_menu .mod_customnav strong {
  cursor: pointer;
}

#main-navigation .mm-listitem.submenu > a.mm-listitem__text {
  pointer-events: none;
}
#main-navigation .mm-listitem__btn {
  pointer-events: auto;
}

.customer-voices {
  color: #153B58;
  padding: 0;
}
.customer-voices__intro {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}
.customer-voices__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(21, 59, 88, 0.08);
  color: #A3195B;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}
.customer-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}
.customer-voices__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  height: 100%;
  padding: clamp(16px, 3vw, 26px) clamp(14px, 2.5vw, 22px) clamp(16px, 3vw, 24px);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  border: 1px solid rgba(21, 59, 88, 0.14);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(15, 45, 69, 0.07), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}
.customer-voices__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #153B58 0%, #A3195B 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.customer-voices__card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #153B58 0%, #A3195B 100%);
  z-index: 0;
  opacity: 0.92;
}
.customer-voices__card > * {
  position: relative;
  z-index: 1;
}
.customer-voices__card:hover, .customer-voices__card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(21, 59, 88, 0.04);
  box-shadow: 0 16px 32px rgba(15, 45, 69, 0.14);
}
.customer-voices__card:hover::before, .customer-voices__card:focus-within::before {
  opacity: 1;
}
.customer-voices__card:hover::after, .customer-voices__card:focus-within::after {
  opacity: 0;
}
.customer-voices__top {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.customer-voices__image {
  width: clamp(60px, 10vw, 84px);
  height: clamp(60px, 10vw, 84px);
  flex: 0 0 clamp(60px, 10vw, 84px);
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 16px rgba(15, 45, 69, 0.1), 0 0 0 1px rgba(21, 59, 88, 0.1);
  background: #f8f8f8;
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}
.customer-voices__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.customer-voices__person {
  min-width: 0;
}
.customer-voices__name {
  display: block;
  margin: 0 0 4px;
  color: #153B58;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  transition: color 0.45s ease;
}
.customer-voices__location {
  display: block;
  color: rgba(21, 59, 88, 0.72);
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 500;
  transition: color 0.45s ease;
}
.customer-voices__quote::before {
  content: "“";
}
.customer-voices__quote::after {
  content: "”";
}
.customer-voices__card:hover .customer-voices__image, .customer-voices__card:focus-within .customer-voices__image {
  transform: scale(1.04);
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(15, 45, 69, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.customer-voices__card:hover .customer-voices__name, .customer-voices__card:focus-within .customer-voices__name {
  color: #fff;
}
.customer-voices__card:hover .customer-voices__location, .customer-voices__card:focus-within .customer-voices__location {
  color: rgba(255, 255, 255, 0.82);
}
.customer-voices__card:hover .customer-voices__quote, .customer-voices__card:focus-within .customer-voices__quote {
  color: rgba(255, 255, 255, 0.94);
}
@media screen and (max-width: 991px) {
  .customer-voices__intro {
    margin-bottom: 28px;
  }
  .customer-voices__grid {
    gap: 18px;
  }
  .customer-voices__card {
    padding: 22px 18px 20px;
    border-radius: 18px;
  }
  .customer-voices__image {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    border-width: 3px;
  }
}
@media screen and (max-width: 600px) {
  .customer-voices__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .customer-voices__headline {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }
  .customer-voices__card {
    padding: 18px 16px;
    border-radius: 16px;
    gap: 16px;
  }
  .customer-voices__top {
    gap: 12px;
  }
  .customer-voices__image {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-width: 2px;
  }
  .customer-voices__name {
    font-size: 0.96rem;
  }
  .customer-voices__location {
    font-size: 0.88rem;
  }
}
@media screen and (max-width: 360px) {
  .customer-voices__card {
    padding: 16px 12px;
    gap: 12px;
  }
  .customer-voices__image {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
  .customer-voices__name {
    font-size: 0.9rem;
  }
  .customer-voices__location {
    font-size: 0.82rem;
  }
}

.he-textbreaker--testimonials {
  padding-top: clamp(64px, 8vw, 110px) !important;
  padding-bottom: clamp(88px, 10vw, 140px) !important;
}
.he-textbreaker--testimonials .he-testimonials {
  position: relative;
  padding-left: 68px;
  padding-right: 68px;
}
.he-textbreaker--testimonials .he-testimonials .swiper-slide {
  height: auto !important;
}
.he-textbreaker--testimonials .he-testimonials .swiper-slide > *:has(.ce_plenta_testimonial) {
  height: 100% !important;
}
.he-textbreaker--testimonials .he-testimonials .ce_plenta_testimonial {
  height: 100%;
  display: grid;
  grid-template-columns: clamp(72px, 7vw, 88px) minmax(0, 1fr);
  grid-template-areas: "image name" "image rating" "image text";
  align-content: center;
  -moz-column-gap: clamp(18px, 1.8vw, 24px);
       column-gap: clamp(18px, 1.8vw, 24px);
  padding: clamp(26px, 2.6vw, 34px) clamp(28px, 3vw, 38px) !important;
  border-radius: 7px;
  background: #ffffff;
}
.he-textbreaker--testimonials .he-testimonials .testimonial-meta {
  display: contents !important;
}
.he-textbreaker--testimonials .he-testimonials .testimonial-meta .image_container {
  grid-area: image;
  align-self: center;
  width: clamp(68px, 6.6vw, 82px);
  height: clamp(68px, 6.6vw, 82px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #6b6b6b;
}
.he-textbreaker--testimonials .he-testimonials .testimonial-meta .image_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.he-textbreaker--testimonials .he-testimonials .testimonial-meta .name {
  grid-area: name;
  color: #153B58;
  font-weight: 800;
  font-size: clamp(0.92rem, 0.95vw, 1rem);
}
.he-textbreaker--testimonials .he-testimonials .testimonial-rating {
  grid-area: rating;
  display: flex;
  gap: 2px;
  margin: 0 0 10px;
}
.he-textbreaker--testimonials .he-testimonials .testimonial-rating .star {
  width: 13px;
  height: 13px;
}
.he-textbreaker--testimonials .he-testimonials .testimonial-rating .star::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.72rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.16);
}
.he-textbreaker--testimonials .he-testimonials .testimonial-rating .star.checked::before {
  color: #A3195B;
}
.he-textbreaker--testimonials .he-testimonials .testimonial-text {
  grid-area: text;
}
.he-textbreaker--testimonials .he-testimonials .testimonial-text p {
  padding: 0 !important;
  color: #5a5a5a;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  line-height: 1.18;
  font-weight: 400;
}
.he-textbreaker--testimonials .he-testimonials .swiper-button-prev,
.he-textbreaker--testimonials .he-testimonials .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  margin-top: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
  backdrop-filter: blur(4px);
  z-index: 25;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.he-textbreaker--testimonials .he-testimonials .swiper-button-prev::after,
.he-textbreaker--testimonials .he-testimonials .swiper-button-prev svg,
.he-textbreaker--testimonials .he-testimonials .swiper-button-next::after,
.he-textbreaker--testimonials .he-testimonials .swiper-button-next svg {
  display: none;
}
.he-textbreaker--testimonials .he-testimonials .swiper-button-prev::before,
.he-textbreaker--testimonials .he-testimonials .swiper-button-next::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  color: currentColor;
  display: block;
}
.he-textbreaker--testimonials .he-testimonials .swiper-button-prev:hover,
.he-textbreaker--testimonials .he-testimonials .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}
.he-textbreaker--testimonials .he-testimonials .swiper-button-prev {
  left: 14px;
}
.he-textbreaker--testimonials .he-testimonials .swiper-button-prev::before {
  content: "\f060";
}
.he-textbreaker--testimonials .he-testimonials .swiper-button-next {
  right: 14px;
}
.he-textbreaker--testimonials .he-testimonials .swiper-button-next::before {
  content: "\f061";
}
.he-textbreaker--testimonials .he-testimonials .swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.he-textbreaker--testimonials .he-testimonials .swiper-pagination {
  visibility: hidden;
}
@media (max-width: 767px) {
  .he-textbreaker--testimonials .he-testimonials .ce_plenta_testimonial {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "name" "rating" "text";
    row-gap: 10px;
    text-align: center;
    padding: 24px 20px !important;
  }
  .he-textbreaker--testimonials .he-testimonials .testimonial-meta .image_container {
    justify-self: center;
    align-self: center;
    width: 88px;
    height: 88px;
  }
  .he-textbreaker--testimonials .he-testimonials .testimonial-meta .name {
    justify-self: center;
  }
  .he-textbreaker--testimonials .he-testimonials .testimonial-rating {
    justify-content: center;
    margin: 0;
  }
  .he-textbreaker--testimonials .he-testimonials .testimonial-text p {
    text-align: center;
    line-height: 1.4;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .he-textbreaker--testimonials .he-testimonials {
    width: min(100vw - 40px, 1080px);
    max-width: 100%;
    padding-left: 54px;
    padding-right: 54px;
  }
  .he-textbreaker--testimonials .he-testimonials .swiper-slide {
    width: calc((100% - 24px) / 2);
    margin-right: 24px;
  }
  .he-textbreaker--testimonials .he-testimonials .swiper-button-prev {
    left: 10px;
  }
  .he-textbreaker--testimonials .he-testimonials .swiper-button-next {
    right: 10px;
  }
}

#footer {
  position: relative;
  background: #ffffff;
  margin-top: 100px;
  z-index: 2;
}
#footer .footer-bar-0, #footer .footer-bar-1, #footer .footer-bar-2 {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
}
#footer .footer-bar-0 {
  z-index: 1;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
}
#footer .footer-bar-1 {
  top: -65px;
  z-index: 0;
  background: #153B58;
  clip-path: polygon(0 80%, 100% 0, 100% 70%, 0% 80%);
}
#footer .footer-bar-2 {
  z-index: 0;
  background: #A3195B;
  clip-path: polygon(0 0%, 100% 30%, 100% 90%, 0% 90%);
}
#footer .inside {
  position: relative;
  z-index: 2;
  width: min(100% - clamp(32px, 6vw, 96px), 1280px);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: calc(10px * 5);
  padding-bottom: calc(10px * 5);
  color: #000;
  box-sizing: border-box;
}
#footer .inside .content-headline {
  margin: 0 0 14px;
  font-weight: 500;
}
#footer .inside h3 {
  color: #000;
  line-height: 1.2;
  font-size: clamp(1rem, 0.9rem + 0.35vw, 1.2rem) !important;
}
#footer .inside p,
#footer .inside li,
#footer .inside a,
#footer .inside span,
#footer .inside strong {
  line-height: 1.45;
}
#footer .inside strong {
  font-weight: 400;
}
#footer .inside a {
  color: #000;
  text-decoration: none;
}
#footer .inside a:hover, #footer .inside a:focus {
  color: #000;
  text-decoration: underline;
}
#footer .inside a[href*=karriere] {
  font-size: 0 !important;
}
#footer .inside a[href*=karriere]::after {
  content: "Karriere";
  color: #000;
  font-size: clamp(0.9rem, 0.84rem + 0.16vw, 1rem);
  line-height: 1.45;
}
#footer .inside .mod_customnav {
  color: #000;
}
#footer .inside .mod_customnav ul {
  padding: 0;
}
#footer .inside .mod_customnav li {
  margin: 0 0 8px;
}
#footer .inside .mod_customnav li:has(> a[href*="selfcare/111"]) {
  display: none;
}
#footer .inside .mod_customnav a {
  font-size: clamp(0.9rem, 0.84rem + 0.16vw, 1rem);
  font-weight: 400;
}
#footer .inside .footnotes {
  margin-top: 113px;
  margin-bottom: clamp(-100px, -1vw, -40px) !important;
  padding-top: 18px;
  border-top: 2px solid #e6e8ec;
}
#footer .inside .footnotes a,
#footer .inside .footnotes p,
#footer .inside .footnotes span,
#footer .inside .footnotes strong {
  font-size: clamp(0.78rem, 0.74rem + 0.14vw, 0.86rem);
}
#footer .inside .footnotes .mod_customnav ul.level_1 {
  display: flex;
  gap: 26px;
}
#footer .homepage-only {
  display: none;
}

body.mainpage #footer .inside .mod_customnav li:has(> a[href*="selfcare/111"]) {
  display: list-item;
}
body.mainpage #footer .homepage-only {
  display: inline;
}

.table_special_grey,
.table_special_color {
  margin-top: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.content-table table {
  min-width: 280px;
  margin-top: 0;
  border-collapse: separate;
  border-spacing: 4px;
  table-layout: fixed;
}
.content-table tbody {
  display: table-row-group;
}
.content-table tr {
  display: table-row;
}
.content-table td {
  display: table-cell;
  padding: clamp(4px, 1vw, 6px) clamp(8px, 1.5vw, 12px);
  border: 0;
  font-size: clamp(0.7rem, 1.5vw, 0.785rem);
  font-weight: 700;
  line-height: 1.15;
  vertical-align: middle;
  word-break: normal;
}
.content-table td:first-child {
  width: 58%;
}
.content-table td:last-child {
  width: 42%;
  text-align: left;
  white-space: nowrap;
}
.content-table.table_special_grey td {
  color: #1d1d1b;
  background: #afafaf;
}
.content-table.table_special_color td {
  color: #ffffff;
  background: #A3195B;
}

.powerlabeling {
  -moz-column-gap: clamp(22px, 2.5vw, 42px);
       column-gap: clamp(22px, 2.5vw, 42px);
}
.powerlabeling h5 {
  min-height: 64px;
}
.powerlabeling .chart-legend {
  grid-row: 3;
  min-height: 128px;
  margin-bottom: 18px;
}
.powerlabeling .legend-container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: flex-start;
}
.powerlabeling .legend-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}
.powerlabeling .legend-color {
  flex: 0 0 auto;
}
.powerlabeling .legend-label {
  min-width: 0;
  line-height: 1.2;
}

.imgborder {
  container-type: inline-size;
}
.imgborder > figure {
  position: relative;
  margin: 25px;
}
.imgborder > figure::before, .imgborder > figure::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
}
.imgborder > img,
.imgborder > figure > img {
  display: block;
}
.imgborder > figure::before {
  top: calc(-1 * clamp(10px, 0.12cqw, 20px) + 0px - calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  left: calc(-1 * clamp(10px, 0.12cqw, 20px) + 0px - calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  width: calc(clamp(70px, 5cqw, 140px) + calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) + calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) + clamp(28px, 10cqw, 68px));
  height: calc(clamp(70px, 5cqw, 140px) + calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  background-image: linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0);
  background-size: clamp(70px, 5cqw, 140px) clamp(12px, 0.35cqw, 24px), clamp(12px, 0.35cqw, 24px) clamp(70px, 5cqw, 140px), clamp(10px, 0.45cqw, 20px) clamp(10px, 0.45cqw, 20px), clamp(15px, 0.75cqw, 30px) clamp(15px, 0.75cqw, 30px), clamp(10px, 0.45cqw, 20px) clamp(10px, 0.45cqw, 20px);
  background-position: calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2), calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2), calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) + clamp(70px, 5cqw, 140px) - clamp(10px, 0.45cqw, 20px) + -1px) calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) - clamp(10px, 0.45cqw, 20px) + -2px), calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) + clamp(70px, 5cqw, 140px) + clamp(2px, 0.22cqw, 4px) + -1px) calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) - clamp(15px, 0.75cqw, 30px) + 0px), calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) - clamp(2px, 0.22cqw, 4px) - clamp(10px, 0.45cqw, 20px) + 0px) calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) + clamp(70px, 5cqw, 140px) - clamp(10px, 0.45cqw, 20px) + 0px);
}
.imgborder > figure::after {
  bottom: calc(-1 * clamp(10px, 0.12cqw, 20px) + -1px - calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  right: calc(-1 * clamp(10px, 0.12cqw, 20px) + -1px - calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  width: calc(clamp(300px, 24cqw, 760px) + calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  height: calc(clamp(150px, 10cqw, 280px) + calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  background-image: linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0);
  background-size: clamp(300px, 24cqw, 760px) clamp(12px, 0.35cqw, 24px), clamp(12px, 0.35cqw, 24px) clamp(150px, 10cqw, 280px), clamp(10px, 0.45cqw, 20px) clamp(10px, 0.45cqw, 20px), clamp(15px, 0.75cqw, 30px) clamp(15px, 0.75cqw, 30px), clamp(10px, 0.45cqw, 20px) clamp(10px, 0.45cqw, 20px);
  background-position: 0 calc(clamp(150px, 10cqw, 280px) - clamp(12px, 0.35cqw, 24px)), calc(clamp(300px, 24cqw, 760px) - clamp(12px, 0.35cqw, 24px)) 0, calc(clamp(300px, 24cqw, 760px) + clamp(2px, 0.22cqw, 4px) + 0px) calc(clamp(150px, 10cqw, 280px) - clamp(12px, 0.35cqw, 24px) - clamp(10px, 0.45cqw, 20px) + 0px), calc(clamp(300px, 24cqw, 760px) - clamp(15px, 0.75cqw, 30px) + 0px) calc(clamp(150px, 10cqw, 280px) + clamp(2px, 0.22cqw, 4px) + 0px), calc(clamp(300px, 24cqw, 760px) - clamp(10px, 0.45cqw, 20px) - calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) + -6px) calc(clamp(150px, 10cqw, 280px) + clamp(2px, 0.22cqw, 4px) + 0px);
}
.imgborder--white > figure::before {
  top: calc(-1 * clamp(10px, 0.12cqw, 20px) + 0px - calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  left: calc(-1 * clamp(10px, 0.12cqw, 20px) + 0px - calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  width: calc(clamp(70px, 5cqw, 140px) + calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) + calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) + clamp(28px, 10cqw, 68px));
  height: calc(clamp(70px, 5cqw, 140px) + calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  background-image: linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0);
  background-size: clamp(70px, 5cqw, 140px) clamp(12px, 0.35cqw, 24px), clamp(12px, 0.35cqw, 24px) clamp(70px, 5cqw, 140px), clamp(10px, 0.45cqw, 20px) clamp(10px, 0.45cqw, 20px), clamp(15px, 0.75cqw, 30px) clamp(15px, 0.75cqw, 30px), clamp(10px, 0.45cqw, 20px) clamp(10px, 0.45cqw, 20px);
  background-position: calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2), calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2), calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) + clamp(70px, 5cqw, 140px) - clamp(10px, 0.45cqw, 20px) + -1px) calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) - clamp(10px, 0.45cqw, 20px) + -2px), calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) + clamp(70px, 5cqw, 140px) + clamp(2px, 0.22cqw, 4px) + -1px) calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) - clamp(15px, 0.75cqw, 30px) + 0px), calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) - clamp(2px, 0.22cqw, 4px) - clamp(10px, 0.45cqw, 20px) + 0px) calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) + clamp(70px, 5cqw, 140px) - clamp(10px, 0.45cqw, 20px) + 0px);
}
.imgborder--white > figure::after {
  bottom: calc(-1 * clamp(10px, 0.12cqw, 20px) + -1px - calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  right: calc(-1 * clamp(10px, 0.12cqw, 20px) + -1px - calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  width: calc(clamp(300px, 24cqw, 760px) + calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  height: calc(clamp(150px, 10cqw, 280px) + calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  background-image: linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0);
  background-size: clamp(300px, 24cqw, 760px) clamp(12px, 0.35cqw, 24px), clamp(12px, 0.35cqw, 24px) clamp(150px, 10cqw, 280px), clamp(10px, 0.45cqw, 20px) clamp(10px, 0.45cqw, 20px), clamp(15px, 0.75cqw, 30px) clamp(15px, 0.75cqw, 30px), clamp(10px, 0.45cqw, 20px) clamp(10px, 0.45cqw, 20px);
  background-position: 0 calc(clamp(150px, 10cqw, 280px) - clamp(12px, 0.35cqw, 24px)), calc(clamp(300px, 24cqw, 760px) - clamp(12px, 0.35cqw, 24px)) 0, calc(clamp(300px, 24cqw, 760px) + clamp(2px, 0.22cqw, 4px) + 0px) calc(clamp(150px, 10cqw, 280px) - clamp(12px, 0.35cqw, 24px) - clamp(10px, 0.45cqw, 20px) + 0px), calc(clamp(300px, 24cqw, 760px) - clamp(15px, 0.75cqw, 30px) + 0px) calc(clamp(150px, 10cqw, 280px) + clamp(2px, 0.22cqw, 4px) + 0px), calc(clamp(300px, 24cqw, 760px) - clamp(10px, 0.45cqw, 20px) - calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) + -6px) calc(clamp(150px, 10cqw, 280px) + clamp(2px, 0.22cqw, 4px) + 0px);
}
@media (max-width: 767px) {
  .imgborder:not(.imgborder--white):not(.imgborder--small):not(.imgborder--small--3pcitures):not(.imgborder--small--textbreak):not(.imgborder--textbreak) > figure::before {
    top: calc(-1 * clamp(4px, 0.08cqw, 4px) + 0px - calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    left: calc(-1 * clamp(4px, 0.08cqw, 4px) + 0px - calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    width: calc(clamp(88px, 4cqw, 48px) + calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) + calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) + clamp(18px, 7cqw, 42px));
    height: calc(clamp(88px, 4cqw, 48px) + calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    background-image: linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0);
    background-size: clamp(88px, 4cqw, 48px) clamp(7px, 0.25cqw, 7px), clamp(7px, 0.25cqw, 7px) clamp(88px, 4cqw, 48px), clamp(4px, 0.22cqw, 6px) clamp(4px, 0.22cqw, 6px), clamp(8px, 0.35cqw, 8px) clamp(8px, 0.35cqw, 8px), clamp(4px, 0.22cqw, 6px) clamp(4px, 0.22cqw, 6px);
    background-position: calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2), calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2), calc(calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) + clamp(88px, 4cqw, 48px) - clamp(4px, 0.22cqw, 6px) + -1px) calc(calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) - clamp(4px, 0.22cqw, 6px) + -2px), calc(calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) + clamp(88px, 4cqw, 48px) + clamp(1px, 0.12cqw, 2px) + -1px) calc(calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) - clamp(8px, 0.35cqw, 8px) + 0px), calc(calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) - clamp(1px, 0.12cqw, 2px) - clamp(4px, 0.22cqw, 6px) + 0px) calc(calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) + clamp(88px, 4cqw, 48px) - clamp(4px, 0.22cqw, 6px) + 0px);
  }
  .imgborder:not(.imgborder--white):not(.imgborder--small):not(.imgborder--small--3pcitures):not(.imgborder--small--textbreak):not(.imgborder--textbreak) > figure::after {
    bottom: calc(-1 * clamp(4px, 0.08cqw, 4px) + -1px - calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    right: calc(-1 * clamp(4px, 0.08cqw, 4px) + -1px - calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    width: calc(clamp(230px, 18cqw, 270px) + calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    height: calc(clamp(120px, 10cqw, 140px) + calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    background-image: linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0);
    background-size: clamp(230px, 18cqw, 270px) clamp(7px, 0.25cqw, 7px), clamp(7px, 0.25cqw, 7px) clamp(120px, 10cqw, 140px), clamp(4px, 0.22cqw, 6px) clamp(4px, 0.22cqw, 6px), clamp(8px, 0.35cqw, 8px) clamp(8px, 0.35cqw, 8px), clamp(4px, 0.22cqw, 6px) clamp(4px, 0.22cqw, 6px);
    background-position: 0 calc(clamp(120px, 10cqw, 140px) - clamp(7px, 0.25cqw, 7px)), calc(clamp(230px, 18cqw, 270px) - clamp(7px, 0.25cqw, 7px)) 0, calc(clamp(230px, 18cqw, 270px) + clamp(1px, 0.12cqw, 2px) + 0px) calc(clamp(120px, 10cqw, 140px) - clamp(7px, 0.25cqw, 7px) - clamp(4px, 0.22cqw, 6px) + 0px), calc(clamp(230px, 18cqw, 270px) - clamp(8px, 0.35cqw, 8px) + 0px) calc(clamp(120px, 10cqw, 140px) + clamp(1px, 0.12cqw, 2px) + 0px), calc(clamp(230px, 18cqw, 270px) - clamp(4px, 0.22cqw, 6px) - calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) + -6px) calc(clamp(120px, 10cqw, 140px) + clamp(1px, 0.12cqw, 2px) + 0px);
  }
  .imgborder--white > figure::before {
    top: calc(-1 * clamp(4px, 0.08cqw, 4px) + 0px - calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    left: calc(-1 * clamp(4px, 0.08cqw, 4px) + 0px - calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    width: calc(clamp(88px, 4cqw, 48px) + calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) + calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) + clamp(18px, 7cqw, 42px));
    height: calc(clamp(88px, 4cqw, 48px) + calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    background-image: linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0);
    background-size: clamp(88px, 4cqw, 48px) clamp(7px, 0.25cqw, 7px), clamp(7px, 0.25cqw, 7px) clamp(88px, 4cqw, 48px), clamp(4px, 0.22cqw, 6px) clamp(4px, 0.22cqw, 6px), clamp(8px, 0.35cqw, 8px) clamp(8px, 0.35cqw, 8px), clamp(4px, 0.22cqw, 6px) clamp(4px, 0.22cqw, 6px);
    background-position: calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2), calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2), calc(calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) + clamp(88px, 4cqw, 48px) - clamp(4px, 0.22cqw, 6px) + -1px) calc(calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) - clamp(4px, 0.22cqw, 6px) + -2px), calc(calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) + clamp(88px, 4cqw, 48px) + clamp(1px, 0.12cqw, 2px) + -1px) calc(calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) - clamp(8px, 0.35cqw, 8px) + 0px), calc(calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) - clamp(1px, 0.12cqw, 2px) - clamp(4px, 0.22cqw, 6px) + 0px) calc(calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2) + clamp(88px, 4cqw, 48px) - clamp(4px, 0.22cqw, 6px) + 0px);
  }
  .imgborder--white > figure::after {
    bottom: calc(-1 * clamp(4px, 0.08cqw, 4px) + -1px - calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    right: calc(-1 * clamp(4px, 0.08cqw, 4px) + -1px - calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    width: calc(clamp(230px, 18cqw, 270px) + calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    height: calc(clamp(120px, 10cqw, 140px) + calc(calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) * 2));
    background-image: linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0);
    background-size: clamp(230px, 18cqw, 270px) clamp(7px, 0.25cqw, 7px), clamp(7px, 0.25cqw, 7px) clamp(120px, 10cqw, 140px), clamp(4px, 0.22cqw, 6px) clamp(4px, 0.22cqw, 6px), clamp(8px, 0.35cqw, 8px) clamp(8px, 0.35cqw, 8px), clamp(4px, 0.22cqw, 6px) clamp(4px, 0.22cqw, 6px);
    background-position: 0 calc(clamp(120px, 10cqw, 140px) - clamp(7px, 0.25cqw, 7px)), calc(clamp(230px, 18cqw, 270px) - clamp(7px, 0.25cqw, 7px)) 0, calc(clamp(230px, 18cqw, 270px) + clamp(1px, 0.12cqw, 2px) + 0px) calc(clamp(120px, 10cqw, 140px) - clamp(7px, 0.25cqw, 7px) - clamp(4px, 0.22cqw, 6px) + 0px), calc(clamp(230px, 18cqw, 270px) - clamp(8px, 0.35cqw, 8px) + 0px) calc(clamp(120px, 10cqw, 140px) + clamp(1px, 0.12cqw, 2px) + 0px), calc(clamp(230px, 18cqw, 270px) - clamp(4px, 0.22cqw, 6px) - calc(clamp(4px, 0.22cqw, 6px) + clamp(1px, 0.12cqw, 2px)) + -6px) calc(clamp(120px, 10cqw, 140px) + clamp(1px, 0.12cqw, 2px) + 0px);
  }
}
@media (max-height: 520px) and (orientation: landscape) and (max-width: 1024px) {
  .imgborder:not(.imgborder--white):not(.imgborder--small):not(.imgborder--small--3pcitures):not(.imgborder--small--textbreak):not(.imgborder--textbreak) > figure::before {
    top: calc(-1 * clamp(1px, 0.06cqw, 2px) + 0px - calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    left: calc(-1 * clamp(1px, 0.06cqw, 2px) + 0px - calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    width: calc(clamp(35px, 3cqw, 40px) + calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) + calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) + clamp(14px, 5cqw, 30px));
    height: calc(clamp(35px, 3cqw, 40px) + calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    background-image: linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0);
    background-size: clamp(35px, 3cqw, 40px) clamp(6px, 0.25cqw, 12px), clamp(6px, 0.25cqw, 12px) clamp(35px, 3cqw, 40px), clamp(3px, 0.18cqw, 5px) clamp(3px, 0.18cqw, 5px), clamp(6px, 0.28cqw, 9px) clamp(6px, 0.28cqw, 9px), clamp(3px, 0.18cqw, 5px) clamp(3px, 0.18cqw, 5px);
    background-position: calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2), calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2), calc(calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) + clamp(35px, 3cqw, 40px) - clamp(3px, 0.18cqw, 5px) + -1px) calc(calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) - clamp(3px, 0.18cqw, 5px) + -2px), calc(calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) + clamp(35px, 3cqw, 40px) + clamp(1px, 0.1cqw, 2px) + -1px) calc(calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) - clamp(6px, 0.28cqw, 9px) + 0px), calc(calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) - clamp(1px, 0.1cqw, 2px) - clamp(3px, 0.18cqw, 5px) + 0px) calc(calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) + clamp(35px, 3cqw, 40px) - clamp(3px, 0.18cqw, 5px) + 0px);
  }
  .imgborder:not(.imgborder--white):not(.imgborder--small):not(.imgborder--small--3pcitures):not(.imgborder--small--textbreak):not(.imgborder--textbreak) > figure::after {
    bottom: calc(-1 * clamp(1px, 0.06cqw, 2px) + -1px - calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    right: calc(-1 * clamp(1px, 0.06cqw, 2px) + -1px - calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    width: calc(clamp(230px, 10cqw, 310px) + calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    height: calc(clamp(120px, 6cqw, 180px) + calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    background-image: linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0);
    background-size: clamp(230px, 10cqw, 310px) clamp(6px, 0.25cqw, 12px), clamp(6px, 0.25cqw, 12px) clamp(120px, 6cqw, 180px), clamp(3px, 0.18cqw, 5px) clamp(3px, 0.18cqw, 5px), clamp(6px, 0.28cqw, 9px) clamp(6px, 0.28cqw, 9px), clamp(3px, 0.18cqw, 5px) clamp(3px, 0.18cqw, 5px);
    background-position: 0 calc(clamp(120px, 6cqw, 180px) - clamp(6px, 0.25cqw, 12px)), calc(clamp(230px, 10cqw, 310px) - clamp(6px, 0.25cqw, 12px)) 0, calc(clamp(230px, 10cqw, 310px) + clamp(1px, 0.1cqw, 2px) + 0px) calc(clamp(120px, 6cqw, 180px) - clamp(6px, 0.25cqw, 12px) - clamp(3px, 0.18cqw, 5px) + 0px), calc(clamp(230px, 10cqw, 310px) - clamp(6px, 0.28cqw, 9px) + 0px) calc(clamp(120px, 6cqw, 180px) + clamp(1px, 0.1cqw, 2px) + 0px), calc(clamp(230px, 10cqw, 310px) - clamp(3px, 0.18cqw, 5px) - calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) + -6px) calc(clamp(120px, 6cqw, 180px) + clamp(1px, 0.1cqw, 2px) + 0px);
  }
  .imgborder--white > figure::before {
    top: calc(-1 * clamp(1px, 0.06cqw, 2px) + 0px - calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    left: calc(-1 * clamp(1px, 0.06cqw, 2px) + 0px - calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    width: calc(clamp(35px, 3cqw, 40px) + calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) + calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) + clamp(14px, 5cqw, 30px));
    height: calc(clamp(35px, 3cqw, 40px) + calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    background-image: linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0);
    background-size: clamp(35px, 3cqw, 40px) clamp(6px, 0.25cqw, 12px), clamp(6px, 0.25cqw, 12px) clamp(35px, 3cqw, 40px), clamp(3px, 0.18cqw, 5px) clamp(3px, 0.18cqw, 5px), clamp(6px, 0.28cqw, 9px) clamp(6px, 0.28cqw, 9px), clamp(3px, 0.18cqw, 5px) clamp(3px, 0.18cqw, 5px);
    background-position: calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2), calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2), calc(calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) + clamp(35px, 3cqw, 40px) - clamp(3px, 0.18cqw, 5px) + -1px) calc(calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) - clamp(3px, 0.18cqw, 5px) + -2px), calc(calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) + clamp(35px, 3cqw, 40px) + clamp(1px, 0.1cqw, 2px) + -1px) calc(calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) - clamp(6px, 0.28cqw, 9px) + 0px), calc(calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) - clamp(1px, 0.1cqw, 2px) - clamp(3px, 0.18cqw, 5px) + 0px) calc(calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2) + clamp(35px, 3cqw, 40px) - clamp(3px, 0.18cqw, 5px) + 0px);
  }
  .imgborder--white > figure::after {
    bottom: calc(-1 * clamp(1px, 0.06cqw, 2px) + -1px - calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    right: calc(-1 * clamp(1px, 0.06cqw, 2px) + -1px - calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    width: calc(clamp(230px, 10cqw, 310px) + calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    height: calc(clamp(120px, 6cqw, 180px) + calc(calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) * 2));
    background-image: linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0);
    background-size: clamp(230px, 10cqw, 310px) clamp(6px, 0.25cqw, 12px), clamp(6px, 0.25cqw, 12px) clamp(120px, 6cqw, 180px), clamp(3px, 0.18cqw, 5px) clamp(3px, 0.18cqw, 5px), clamp(6px, 0.28cqw, 9px) clamp(6px, 0.28cqw, 9px), clamp(3px, 0.18cqw, 5px) clamp(3px, 0.18cqw, 5px);
    background-position: 0 calc(clamp(120px, 6cqw, 180px) - clamp(6px, 0.25cqw, 12px)), calc(clamp(230px, 10cqw, 310px) - clamp(6px, 0.25cqw, 12px)) 0, calc(clamp(230px, 10cqw, 310px) + clamp(1px, 0.1cqw, 2px) + 0px) calc(clamp(120px, 6cqw, 180px) - clamp(6px, 0.25cqw, 12px) - clamp(3px, 0.18cqw, 5px) + 0px), calc(clamp(230px, 10cqw, 310px) - clamp(6px, 0.28cqw, 9px) + 0px) calc(clamp(120px, 6cqw, 180px) + clamp(1px, 0.1cqw, 2px) + 0px), calc(clamp(230px, 10cqw, 310px) - clamp(3px, 0.18cqw, 5px) - calc(clamp(3px, 0.18cqw, 5px) + clamp(1px, 0.1cqw, 2px)) + -6px) calc(clamp(120px, 6cqw, 180px) + clamp(1px, 0.1cqw, 2px) + 0px);
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .imgborder:not(.imgborder--white):not(.imgborder--small):not(.imgborder--small--3pcitures):not(.imgborder--small--textbreak):not(.imgborder--textbreak) > figure::before {
    top: calc(-1 * clamp(5px, 0.1cqw, 8px) + 0px - calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    left: calc(-1 * clamp(5px, 0.1cqw, 8px) + 0px - calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    width: calc(clamp(42px, 3.4cqw, 72px) + calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) + calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) + clamp(20px, 6cqw, 46px));
    height: calc(clamp(42px, 3.4cqw, 72px) + calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    background-image: linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0);
    background-size: clamp(42px, 3.4cqw, 72px) clamp(8px, 0.32cqw, 14px), clamp(8px, 0.32cqw, 14px) clamp(42px, 3.4cqw, 72px), clamp(6px, 0.3cqw, 12px) clamp(6px, 0.3cqw, 12px), clamp(9px, 0.45cqw, 16px) clamp(9px, 0.45cqw, 16px), clamp(6px, 0.3cqw, 12px) clamp(6px, 0.3cqw, 12px);
    background-position: calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2), calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2), calc(calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) + clamp(42px, 3.4cqw, 72px) - clamp(6px, 0.3cqw, 12px) + -1px) calc(calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) - clamp(6px, 0.3cqw, 12px) + -2px), calc(calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) + clamp(42px, 3.4cqw, 72px) + clamp(1px, 0.14cqw, 3px) + -1px) calc(calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) - clamp(9px, 0.45cqw, 16px) + 0px), calc(calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) - clamp(1px, 0.14cqw, 3px) - clamp(6px, 0.3cqw, 12px) + 0px) calc(calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) + clamp(42px, 3.4cqw, 72px) - clamp(6px, 0.3cqw, 12px) + 0px);
  }
  .imgborder:not(.imgborder--white):not(.imgborder--small):not(.imgborder--small--3pcitures):not(.imgborder--small--textbreak):not(.imgborder--textbreak) > figure::after {
    bottom: calc(-1 * clamp(5px, 0.1cqw, 8px) + -1px - calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    right: calc(-1 * clamp(5px, 0.1cqw, 8px) + -1px - calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    width: calc(clamp(180px, 14cqw, 300px) + calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    height: calc(clamp(120px, 8cqw, 170px) + calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    background-image: linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0);
    background-size: clamp(180px, 14cqw, 300px) clamp(8px, 0.32cqw, 14px), clamp(8px, 0.32cqw, 14px) clamp(120px, 8cqw, 170px), clamp(6px, 0.3cqw, 12px) clamp(6px, 0.3cqw, 12px), clamp(9px, 0.45cqw, 16px) clamp(9px, 0.45cqw, 16px), clamp(6px, 0.3cqw, 12px) clamp(6px, 0.3cqw, 12px);
    background-position: 0 calc(clamp(120px, 8cqw, 170px) - clamp(8px, 0.32cqw, 14px)), calc(clamp(180px, 14cqw, 300px) - clamp(8px, 0.32cqw, 14px)) 0, calc(clamp(180px, 14cqw, 300px) + clamp(1px, 0.14cqw, 3px) + 0px) calc(clamp(120px, 8cqw, 170px) - clamp(8px, 0.32cqw, 14px) - clamp(6px, 0.3cqw, 12px) + 0px), calc(clamp(180px, 14cqw, 300px) - clamp(9px, 0.45cqw, 16px) + 0px) calc(clamp(120px, 8cqw, 170px) + clamp(1px, 0.14cqw, 3px) + 0px), calc(clamp(180px, 14cqw, 300px) - clamp(6px, 0.3cqw, 12px) - calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) + -6px) calc(clamp(120px, 8cqw, 170px) + clamp(1px, 0.14cqw, 3px) + 0px);
  }
  .imgborder--white > figure::before {
    top: calc(-1 * clamp(5px, 0.1cqw, 8px) + 0px - calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    left: calc(-1 * clamp(5px, 0.1cqw, 8px) + 0px - calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    width: calc(clamp(42px, 3.4cqw, 72px) + calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) + calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) + clamp(20px, 6cqw, 46px));
    height: calc(clamp(42px, 3.4cqw, 72px) + calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    background-image: linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0);
    background-size: clamp(42px, 3.4cqw, 72px) clamp(8px, 0.32cqw, 14px), clamp(8px, 0.32cqw, 14px) clamp(42px, 3.4cqw, 72px), clamp(6px, 0.3cqw, 12px) clamp(6px, 0.3cqw, 12px), clamp(9px, 0.45cqw, 16px) clamp(9px, 0.45cqw, 16px), clamp(6px, 0.3cqw, 12px) clamp(6px, 0.3cqw, 12px);
    background-position: calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2), calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2), calc(calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) + clamp(42px, 3.4cqw, 72px) - clamp(6px, 0.3cqw, 12px) + -1px) calc(calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) - clamp(6px, 0.3cqw, 12px) + -2px), calc(calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) + clamp(42px, 3.4cqw, 72px) + clamp(1px, 0.14cqw, 3px) + -1px) calc(calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) - clamp(9px, 0.45cqw, 16px) + 0px), calc(calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) - clamp(1px, 0.14cqw, 3px) - clamp(6px, 0.3cqw, 12px) + 0px) calc(calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2) + clamp(42px, 3.4cqw, 72px) - clamp(6px, 0.3cqw, 12px) + 0px);
  }
  .imgborder--white > figure::after {
    bottom: calc(-1 * clamp(5px, 0.1cqw, 8px) + -1px - calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    right: calc(-1 * clamp(5px, 0.1cqw, 8px) + -1px - calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    width: calc(clamp(180px, 14cqw, 300px) + calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    height: calc(clamp(120px, 8cqw, 170px) + calc(calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) * 2));
    background-image: linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0);
    background-size: clamp(180px, 14cqw, 300px) clamp(8px, 0.32cqw, 14px), clamp(8px, 0.32cqw, 14px) clamp(120px, 8cqw, 170px), clamp(6px, 0.3cqw, 12px) clamp(6px, 0.3cqw, 12px), clamp(9px, 0.45cqw, 16px) clamp(9px, 0.45cqw, 16px), clamp(6px, 0.3cqw, 12px) clamp(6px, 0.3cqw, 12px);
    background-position: 0 calc(clamp(120px, 8cqw, 170px) - clamp(8px, 0.32cqw, 14px)), calc(clamp(180px, 14cqw, 300px) - clamp(8px, 0.32cqw, 14px)) 0, calc(clamp(180px, 14cqw, 300px) + clamp(1px, 0.14cqw, 3px) + 0px) calc(clamp(120px, 8cqw, 170px) - clamp(8px, 0.32cqw, 14px) - clamp(6px, 0.3cqw, 12px) + 0px), calc(clamp(180px, 14cqw, 300px) - clamp(9px, 0.45cqw, 16px) + 0px) calc(clamp(120px, 8cqw, 170px) + clamp(1px, 0.14cqw, 3px) + 0px), calc(clamp(180px, 14cqw, 300px) - clamp(6px, 0.3cqw, 12px) - calc(clamp(6px, 0.3cqw, 12px) + clamp(1px, 0.14cqw, 3px)) + -6px) calc(clamp(120px, 8cqw, 170px) + clamp(1px, 0.14cqw, 3px) + 0px);
  }
}
@media (min-width: 768px) and (max-width: 1280px) and (orientation: portrait) {
  .imgborder:not(.imgborder--white):not(.imgborder--small):not(.imgborder--small--3pcitures):not(.imgborder--small--textbreak):not(.imgborder--textbreak) > figure::before {
    top: calc(-1 * clamp(3px, 0.08cqw, 6px) + 0px - calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    left: calc(-1 * clamp(3px, 0.08cqw, 6px) + 0px - calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    width: calc(clamp(28px, 2.8cqw, 48px) + calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) + calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) + clamp(16px, 4.8cqw, 34px));
    height: calc(clamp(28px, 2.8cqw, 48px) + calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    background-image: linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0);
    background-size: clamp(28px, 2.8cqw, 48px) clamp(6px, 0.24cqw, 10px), clamp(6px, 0.24cqw, 10px) clamp(28px, 2.8cqw, 48px), clamp(4px, 0.22cqw, 8px) clamp(4px, 0.22cqw, 8px), clamp(7px, 0.34cqw, 12px) clamp(7px, 0.34cqw, 12px), clamp(4px, 0.22cqw, 8px) clamp(4px, 0.22cqw, 8px);
    background-position: calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2), calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2), calc(calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) + clamp(28px, 2.8cqw, 48px) - clamp(4px, 0.22cqw, 8px) + -1px) calc(calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) - clamp(4px, 0.22cqw, 8px) + -2px), calc(calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) + clamp(28px, 2.8cqw, 48px) + clamp(1px, 0.1cqw, 2px) + -1px) calc(calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) - clamp(7px, 0.34cqw, 12px) + 0px), calc(calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) - clamp(1px, 0.1cqw, 2px) - clamp(4px, 0.22cqw, 8px) + 0px) calc(calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) + clamp(28px, 2.8cqw, 48px) - clamp(4px, 0.22cqw, 8px) + 0px);
  }
  .imgborder:not(.imgborder--white):not(.imgborder--small):not(.imgborder--small--3pcitures):not(.imgborder--small--textbreak):not(.imgborder--textbreak) > figure::after {
    bottom: calc(-1 * clamp(3px, 0.08cqw, 6px) + -1px - calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    right: calc(-1 * clamp(3px, 0.08cqw, 6px) + -1px - calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    width: calc(clamp(120px, 10.5cqw, 190px) + calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    height: calc(clamp(78px, 6.5cqw, 118px) + calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    background-image: linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0);
    background-size: clamp(120px, 10.5cqw, 190px) clamp(6px, 0.24cqw, 10px), clamp(6px, 0.24cqw, 10px) clamp(78px, 6.5cqw, 118px), clamp(4px, 0.22cqw, 8px) clamp(4px, 0.22cqw, 8px), clamp(7px, 0.34cqw, 12px) clamp(7px, 0.34cqw, 12px), clamp(4px, 0.22cqw, 8px) clamp(4px, 0.22cqw, 8px);
    background-position: 0 calc(clamp(78px, 6.5cqw, 118px) - clamp(6px, 0.24cqw, 10px)), calc(clamp(120px, 10.5cqw, 190px) - clamp(6px, 0.24cqw, 10px)) 0, calc(clamp(120px, 10.5cqw, 190px) + clamp(1px, 0.1cqw, 2px) + 0px) calc(clamp(78px, 6.5cqw, 118px) - clamp(6px, 0.24cqw, 10px) - clamp(4px, 0.22cqw, 8px) + 0px), calc(clamp(120px, 10.5cqw, 190px) - clamp(7px, 0.34cqw, 12px) + 0px) calc(clamp(78px, 6.5cqw, 118px) + clamp(1px, 0.1cqw, 2px) + 0px), calc(clamp(120px, 10.5cqw, 190px) - clamp(4px, 0.22cqw, 8px) - calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) + -6px) calc(clamp(78px, 6.5cqw, 118px) + clamp(1px, 0.1cqw, 2px) + 0px);
  }
  .imgborder--white > figure::before {
    top: calc(-1 * clamp(3px, 0.08cqw, 6px) + 0px - calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    left: calc(-1 * clamp(3px, 0.08cqw, 6px) + 0px - calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    width: calc(clamp(28px, 2.8cqw, 48px) + calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) + calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) + clamp(16px, 4.8cqw, 34px));
    height: calc(clamp(28px, 2.8cqw, 48px) + calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    background-image: linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0);
    background-size: clamp(28px, 2.8cqw, 48px) clamp(6px, 0.24cqw, 10px), clamp(6px, 0.24cqw, 10px) clamp(28px, 2.8cqw, 48px), clamp(4px, 0.22cqw, 8px) clamp(4px, 0.22cqw, 8px), clamp(7px, 0.34cqw, 12px) clamp(7px, 0.34cqw, 12px), clamp(4px, 0.22cqw, 8px) clamp(4px, 0.22cqw, 8px);
    background-position: calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2), calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2), calc(calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) + clamp(28px, 2.8cqw, 48px) - clamp(4px, 0.22cqw, 8px) + -1px) calc(calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) - clamp(4px, 0.22cqw, 8px) + -2px), calc(calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) + clamp(28px, 2.8cqw, 48px) + clamp(1px, 0.1cqw, 2px) + -1px) calc(calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) - clamp(7px, 0.34cqw, 12px) + 0px), calc(calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) - clamp(1px, 0.1cqw, 2px) - clamp(4px, 0.22cqw, 8px) + 0px) calc(calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2) + clamp(28px, 2.8cqw, 48px) - clamp(4px, 0.22cqw, 8px) + 0px);
  }
  .imgborder--white > figure::after {
    bottom: calc(-1 * clamp(3px, 0.08cqw, 6px) + -1px - calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    right: calc(-1 * clamp(3px, 0.08cqw, 6px) + -1px - calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    width: calc(clamp(120px, 10.5cqw, 190px) + calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    height: calc(clamp(78px, 6.5cqw, 118px) + calc(calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) * 2));
    background-image: linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0), linear-gradient(#ffffff 0 0);
    background-size: clamp(120px, 10.5cqw, 190px) clamp(6px, 0.24cqw, 10px), clamp(6px, 0.24cqw, 10px) clamp(78px, 6.5cqw, 118px), clamp(4px, 0.22cqw, 8px) clamp(4px, 0.22cqw, 8px), clamp(7px, 0.34cqw, 12px) clamp(7px, 0.34cqw, 12px), clamp(4px, 0.22cqw, 8px) clamp(4px, 0.22cqw, 8px);
    background-position: 0 calc(clamp(78px, 6.5cqw, 118px) - clamp(6px, 0.24cqw, 10px)), calc(clamp(120px, 10.5cqw, 190px) - clamp(6px, 0.24cqw, 10px)) 0, calc(clamp(120px, 10.5cqw, 190px) + clamp(1px, 0.1cqw, 2px) + 0px) calc(clamp(78px, 6.5cqw, 118px) - clamp(6px, 0.24cqw, 10px) - clamp(4px, 0.22cqw, 8px) + 0px), calc(clamp(120px, 10.5cqw, 190px) - clamp(7px, 0.34cqw, 12px) + 0px) calc(clamp(78px, 6.5cqw, 118px) + clamp(1px, 0.1cqw, 2px) + 0px), calc(clamp(120px, 10.5cqw, 190px) - clamp(4px, 0.22cqw, 8px) - calc(clamp(4px, 0.22cqw, 8px) + clamp(1px, 0.1cqw, 2px)) + -6px) calc(clamp(78px, 6.5cqw, 118px) + clamp(1px, 0.1cqw, 2px) + 0px);
  }
}

.mid-img > .col-12.col-md-4 {
  margin: auto;
}
.mid-img .imgborder {
  container-type: normal !important;
}
.mid-img .imgborder > figure::before {
  top: calc(-1 * clamp(10px, 0.12cqw, 20px) + 0px - calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  left: calc(-1 * clamp(10px, 0.12cqw, 20px) + 0px - calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  width: calc(clamp(35px, 18vw, 70px) + calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) + calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) + clamp(28px, 10cqw, 68px));
  height: calc(clamp(35px, 18vw, 70px) + calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  background-image: linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0), linear-gradient(#153B58 0 0);
  background-size: clamp(35px, 18vw, 70px) clamp(12px, 0.35cqw, 24px), clamp(12px, 0.35cqw, 24px) clamp(35px, 18vw, 70px), clamp(10px, 0.45cqw, 20px) clamp(10px, 0.45cqw, 20px), clamp(15px, 0.75cqw, 30px) clamp(15px, 0.75cqw, 30px), clamp(10px, 0.45cqw, 20px) clamp(10px, 0.45cqw, 20px);
  background-position: calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2), calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2), calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) + clamp(35px, 18vw, 70px) - clamp(10px, 0.45cqw, 20px) + -1px) calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) - clamp(10px, 0.45cqw, 20px) + -2px), calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) + clamp(35px, 18vw, 70px) + clamp(2px, 0.22cqw, 4px) + -1px) calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) - clamp(15px, 0.75cqw, 30px) + 0px), calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) - clamp(2px, 0.22cqw, 4px) - clamp(10px, 0.45cqw, 20px) + 0px) calc(calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2) + clamp(35px, 18vw, 70px) - clamp(10px, 0.45cqw, 20px) + 0px);
}
.mid-img .imgborder > figure::after {
  bottom: calc(-1 * clamp(10px, 0.12cqw, 20px) + -1px - calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  right: calc(-1 * clamp(10px, 0.12cqw, 20px) + -1px - calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  width: calc(clamp(70px, 18vw, 150px) + calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  height: calc(clamp(70px, 18vw, 150px) + calc(calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) * 2));
  background-image: linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0), linear-gradient(#A3195B 0 0);
  background-size: clamp(70px, 18vw, 150px) clamp(12px, 0.35cqw, 24px), clamp(12px, 0.35cqw, 24px) clamp(70px, 18vw, 150px), clamp(10px, 0.45cqw, 20px) clamp(10px, 0.45cqw, 20px), clamp(15px, 0.75cqw, 30px) clamp(15px, 0.75cqw, 30px), clamp(10px, 0.45cqw, 20px) clamp(10px, 0.45cqw, 20px);
  background-position: 0 calc(clamp(70px, 18vw, 150px) - clamp(12px, 0.35cqw, 24px)), calc(clamp(70px, 18vw, 150px) - clamp(12px, 0.35cqw, 24px)) 0, calc(clamp(70px, 18vw, 150px) + clamp(2px, 0.22cqw, 4px) + 0px) calc(clamp(70px, 18vw, 150px) - clamp(12px, 0.35cqw, 24px) - clamp(10px, 0.45cqw, 20px) + 0px), calc(clamp(70px, 18vw, 150px) - clamp(15px, 0.75cqw, 30px) + 0px) calc(clamp(70px, 18vw, 150px) + clamp(2px, 0.22cqw, 4px) + 0px), calc(clamp(70px, 18vw, 150px) - clamp(10px, 0.45cqw, 20px) - calc(clamp(10px, 0.45cqw, 20px) + clamp(2px, 0.22cqw, 4px)) + -6px) calc(clamp(70px, 18vw, 150px) + clamp(2px, 0.22cqw, 4px) + 0px);
}

.he-btn {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.08s ease, filter 0.12s ease, opacity 0.12s ease;
}
.he-btn--primary {
  background: #0f2d45;
  color: #fff;
}
.he-btn--primary a {
  color: inherit;
}
.he-btn--primary:active {
  transform: translateY(1px);
}
.he-btn--primary:focus, .he-btn--primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 45, 69, 0.1);
}
.he-btn--primary:hover {
  background: #153B58;
}
.he-btn--primary.he-btn--invert {
  display: inline-flex;
  background: #fff;
  color: #0f2d45;
  border-radius: 6px;
}
.he-btn--primary.he-btn--invert a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  color: #0f2d45;
  font-weight: 600;
}
.he-btn--primary.he-btn--invert:hover {
  background: white;
}
.he-btn--primary.he-btn--pink {
  display: inline-flex;
  background: #A3195B;
  border: 1px solid transparent;
  border-radius: 6px;
}
.he-btn--primary.he-btn--pink a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  font-weight: 600;
}

.he-textbreaker {
  position: relative;
}
.he-textbreaker::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -10;
  background: linear-gradient(135deg, #163A58 0%, #A3195B 100%);
  clip-path: polygon(0 0, 100% 6%, 100% 94%, 0 100%);
}
.he-textbreaker,
.he-textbreaker h1, .he-textbreaker h2, .he-textbreaker h3, .he-textbreaker h4, .he-textbreaker h5, .he-textbreaker h6,
.he-textbreaker p, .he-textbreaker a, .he-textbreaker li, .he-textbreaker strong, .he-textbreaker span {
  color: #fff;
}
.he-textbreaker.he-textbreaker--invert::before {
  background: linear-gradient(135deg, #A3195B 0%, #163A58 100%);
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 91%);
}
.he-textbreaker .he-textbreaker__headline,
.he-textbreaker .he-textbreaker__subheadline {
  margin: 0;
}
.he-textbreaker .he-textbreaker__headline .rte,
.he-textbreaker .he-textbreaker__subheadline .rte {
  margin: 0;
}
.he-textbreaker .he-textbreaker__headline p,
.he-textbreaker .he-textbreaker__subheadline p {
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: #ffffff;
  hyphens: auto;
  word-spacing: normal;
}
.he-textbreaker .he-textbreaker__headline {
  margin-bottom: clamp(6px, 1vw, 12px);
}
.he-textbreaker .he-textbreaker__headline p {
  font-size: var(--heading-h2) !important;
  line-height: 1.15;
}
.he-textbreaker .he-textbreaker__subheadline {
  margin-bottom: clamp(20px, 3vw, 32px);
}
.he-textbreaker .he-textbreaker__subheadline p {
  font-size: var(--heading-h3) !important;
  line-height: 1.18;
}
.he-textbreaker--split .he-textbreaker__inner {
  align-items: center;
}
.he-textbreaker--split .he-textbreaker__intro {
  flex: 1 1 0;
}
.he-textbreaker--split .he-textbreaker__media {
  flex: 0 0 clamp(160px, 28%, 320px);
  min-width: 0;
}
.he-textbreaker--split .he-textbreaker__inner > :has(.he-textbreaker__media) {
  flex: 0 0 clamp(160px, 28%, 320px);
  min-width: 0;
}
@media (max-width: 991px) {
  .he-textbreaker--split .he-textbreaker__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 6vw, 34px);
    text-align: center;
  }
  .he-textbreaker--split .he-textbreaker__media,
  .he-textbreaker--split .he-textbreaker__inner > :has(.he-textbreaker__media) {
    order: 1;
    flex: 0 0 auto;
    width: 100%;
    max-width: clamp(220px, 68vw, 360px);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .he-textbreaker--split .he-textbreaker__media,
  .he-textbreaker--split .he-textbreaker__media.imgborder,
  .he-textbreaker--split .he-textbreaker__media.content-image,
  .he-textbreaker--split .he-textbreaker__inner > :has(.he-textbreaker__media) .imgborder,
  .he-textbreaker--split .he-textbreaker__inner > :has(.he-textbreaker__media) .content-image {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .he-textbreaker--split .he-textbreaker__media figure,
  .he-textbreaker--split .he-textbreaker__media img,
  .he-textbreaker--split .he-textbreaker__inner > :has(.he-textbreaker__media) figure,
  .he-textbreaker--split .he-textbreaker__inner > :has(.he-textbreaker__media) img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .he-textbreaker--split .he-textbreaker__intro {
    order: 2;
    flex: 0 0 auto;
    width: 100%;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .he-textbreaker--split .he-textbreaker__copy,
  .he-textbreaker--split .he-textbreaker__headline,
  .he-textbreaker--split .he-textbreaker__subheadline {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .he-textbreaker--split .he-textbreaker__copy .rte,
  .he-textbreaker--split .he-textbreaker__copy h2,
  .he-textbreaker--split .he-textbreaker__copy h3,
  .he-textbreaker--split .he-textbreaker__copy p,
  .he-textbreaker--split .he-textbreaker__headline .rte,
  .he-textbreaker--split .he-textbreaker__headline p,
  .he-textbreaker--split .he-textbreaker__subheadline .rte,
  .he-textbreaker--split .he-textbreaker__subheadline p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .he-textbreaker--split .he-textbreaker__button {
    order: 2;
    margin-top: clamp(18px, 4vw, 28px);
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .he-textbreaker--split .he-textbreaker__button a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.he-textbreaker--icon-strip {
  padding: clamp(42px, 5vw, 68px) 0 !important;
}
.he-textbreaker--icon-strip::before {
  background: linear-gradient(135deg, #153B58 0%, #A3195B 100%);
  clip-path: polygon(0 0, 100% 7%, 100% 92%, 0 100%);
}
.he-textbreaker--icon-strip > .row.ce_rowStart.inner-width {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: clamp(44px, 5.5vw, 96px);
  width: min(100% - clamp(32px, 6vw, 96px), 1280px);
  margin-left: auto;
  margin-right: auto;
}
.he-textbreaker--icon-strip > .row.ce_rowStart.inner-width > .ce_columns {
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 185px);
  -moz-column-gap: clamp(10px, 1vw, 16px);
       column-gap: clamp(10px, 1vw, 16px);
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}
.he-textbreaker--icon-strip .why-hitenergy__icon {
  width: auto;
  min-width: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  color: #ffffff;
  font-size: 0;
  line-height: 1;
}
.he-textbreaker--icon-strip .why-hitenergy__icon::before {
  font-size: clamp(2.35rem, 3vw, 3.45rem);
  line-height: 1;
}
.he-textbreaker--icon-strip .content-text p,
.he-textbreaker--icon-strip .content-text .rte p {
  margin: 0;
  padding: 0;
  line-height: 1.12;
}
.he-textbreaker--icon-strip .content-text p:first-child,
.he-textbreaker--icon-strip .content-text .rte p:first-child {
  margin-bottom: 2px;
  line-height: 1.05;
}
.he-textbreaker--icon-strip .content-text p:first-child strong,
.he-textbreaker--icon-strip .content-text .rte p:first-child strong {
  color: #ffffff;
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.05;
}
.he-textbreaker--icon-strip .content-text p:last-child,
.he-textbreaker--icon-strip .content-text .rte p:last-child {
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1.16;
}
@media (max-width: 991px) {
  .he-textbreaker--icon-strip {
    padding: clamp(38px, 8vw, 56px) 0 !important;
  }
  .he-textbreaker--icon-strip > .row.ce_rowStart.inner-width {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }
  .he-textbreaker--icon-strip > .row.ce_rowStart.inner-width > .ce_columns {
    grid-template-columns: auto minmax(0, 1fr);
  }
}
@media (max-width: 680px) {
  .he-textbreaker--icon-strip > .row.ce_rowStart.inner-width {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
.he-textbreaker--tariff-hero > .inner-width {
  width: min(100% - clamp(32px, 6vw, 96px), 1280px);
}

.he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}
.he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width > :not(:has(#tariff)) {
  flex: 1 1 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  -moz-column-gap: 28px;
       column-gap: 28px;
  row-gap: 12px;
  padding-top: clamp(70px, 8vw, 120px);
  padding-bottom: clamp(70px, 8vw, 120px);
}
.he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width > :not(:has(#tariff)) > .content-text {
  width: 100%;
}
.he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width > :not(:has(#tariff)) > .he-tariff-hero__title {
  margin-bottom: 4px;
}
.he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width > :not(:has(#tariff)) > .he-tariff-hero__title .rte h2 {
  margin: 0;
  padding: 0;
  font-size: clamp(2rem, 2.6vw, 3rem) !important;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #ffffff;
}
.he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width > :not(:has(#tariff)) > .he-tariff-hero__headline {
  margin-bottom: clamp(20px, 2vw, 28px);
}
.he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width > :not(:has(#tariff)) > .he-tariff-hero__headline .rte p {
  margin: 0;
  padding: 0;
  font-size: clamp(2rem, 2.6vw, 3rem) !important;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #ffffff;
}
.he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width > :not(:has(#tariff)) > .he-tariff-hero__copy {
  margin-bottom: 28px;
}
.he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width > :not(:has(#tariff)) > .he-tariff-hero__copy .rte p {
  margin: 0 auto;
  padding: 0;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.35;
  font-weight: 400;
  color: #ffffff;
}
.he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width > :not(:has(#tariff)) > :has(i.fa-circle-check) {
  display: inline-flex;
  gap: 8px;
}
.he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width > :not(:has(#tariff)) > :has(i.fa-circle-check) p {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-weight: 400;
}
.he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width > :has(#tariff) {
  width: clamp(420px, 38vw, 520px);
}
@media (max-width: 1280px) {
  .he-textbreaker--tariff-hero.he-textbreaker--split .tariff-form-element.tariff-form-element--hero, .he-textbreaker--tariff-hero.he-textbreaker--split .tariff-form-element.ce_tariff_form {
    transform: scale(0.82);
  }
}
@media (max-width: 991px) {
  .he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width {
    flex-direction: column;
  }
  .he-textbreaker--tariff-hero.he-textbreaker--split > .inner-width > :has(#tariff) {
    width: 100%;
    padding-bottom: 100px;
  }
  .he-textbreaker--tariff-hero.he-textbreaker--split .tariff-form-element.tariff-form-element--hero, .he-textbreaker--tariff-hero.he-textbreaker--split .tariff-form-element.ce_tariff_form {
    width: 100%;
    max-width: 520px !important;
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }
  .he-textbreaker--tariff-hero.he-textbreaker--split .tariff-form-element.ce_tariff_form {
    margin-top: 14%;
  }
}

#grechnung,
#srechnung {
  display: none;
}
#grechnung.active, #grechnung:target,
#srechnung.active,
#srechnung:target {
  display: block;
}

.he-device-feature {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.he-device-feature, .he-device-feature__inner {
  width: 100%;
  max-width: 1180px;
}
.he-device-feature__inner {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.he-device-feature__visual {
  min-width: 0;
  display: flex;
  justify-content: center;
  order: 1;
  position: relative;
  padding-inline: clamp(20px, 5vw, 56px);
}
.he-device-feature__content {
  min-width: 0;
  order: 2;
}
.he-device-feature__content.content-element-group {
  display: grid;
  gap: 24px;
}
.he-device-feature__content .content-text {
  margin: 0;
}
.he-device-feature__content .rte > *:last-child,
.he-device-feature__content > *:last-child {
  margin-bottom: 0;
}
.he-device-feature__content .he-device-feature__h2 p,
.he-device-feature__content .he-device-feature__h3 p {
  margin: 0;
  padding: 0;
  font-weight: 700;
  hyphens: auto;
  word-spacing: normal;
}
.he-device-feature__content .he-device-feature__h2 p strong,
.he-device-feature__content .he-device-feature__h3 p strong {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.he-device-feature__content .he-device-feature__h2 p {
  font-size: clamp(1.7rem, 1.15rem + 1.75vw, 2.25rem) !important;
  line-height: 1.15;
  color: #153B58;
}
.he-device-feature__content .he-device-feature__h3 p {
  font-size: clamp(1.45rem, 1.05rem + 1.35vw, 2rem) !important;
  line-height: 1.18;
  color: #A3195B;
}
.he-device-feature__device-slider {
  position: relative;
  margin-inline: auto;
  padding-inline: clamp(28px, 4vw, 42px);
  display: flex;
  justify-content: center;
}
.he-device-feature__device-slider .swiper {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 10/18.8;
  box-sizing: border-box;
  border: 2px solid #b7b7b7;
  border-radius: 30px;
  background: #ffffff;
  overflow: hidden;
  position: static;
}
.he-device-feature__device-slider .swiper::before {
  display: none;
}
.he-device-feature__device-slider .swiper-wrapper {
  height: 100%;
  align-items: stretch;
}
.he-device-feature__device-slider .swiper-slide {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  flex-shrink: 0;
}
.he-device-feature__device-slider .content-image,
.he-device-feature__device-slider figure {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
}
.he-device-feature__device-slider img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: 28px;
}
.he-device-feature__device-slider .swiper-button-prev,
.he-device-feature__device-slider .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  margin-top: 0;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  cursor: pointer;
  background: #d28ab0;
  color: #ffffff;
  box-shadow: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.he-device-feature__device-slider .swiper-button-prev::after,
.he-device-feature__device-slider .swiper-button-prev svg,
.he-device-feature__device-slider .swiper-button-next::after,
.he-device-feature__device-slider .swiper-button-next svg {
  display: none;
}
.he-device-feature__device-slider .swiper-button-prev::before,
.he-device-feature__device-slider .swiper-button-next::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  display: block;
}
.he-device-feature__device-slider .swiper-button-prev:hover, .he-device-feature__device-slider .swiper-button-prev:focus,
.he-device-feature__device-slider .swiper-button-next:hover,
.he-device-feature__device-slider .swiper-button-next:focus {
  background: #A3195B;
  color: #ffffff;
}
.he-device-feature__device-slider .swiper-button-prev {
  left: -12px;
}
.he-device-feature__device-slider .swiper-button-prev::before {
  content: "\f060";
}
.he-device-feature__device-slider .swiper-button-next {
  right: -12px;
}
.he-device-feature__device-slider .swiper-button-next::before {
  content: "\f061";
}
.he-device-feature__device-slider .swiper-pagination,
.he-device-feature__device-slider ~ .he-device-feature__dots {
  display: none;
}
@media (max-width: 830px) {
  .he-device-feature, .he-device-feature__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .he-device-feature__visual {
    order: -1;
    padding-inline: 44px;
  }
  .he-device-feature__device-slider {
    max-width: 316px;
    padding-inline: 38px;
  }
  .he-device-feature__device-slider .swiper {
    max-width: 240px;
  }
  .he-device-feature__device-slider .swiper-button-prev,
  .he-device-feature__device-slider .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .he-device-feature__device-slider .swiper-button-prev::before,
  .he-device-feature__device-slider .swiper-button-next::before {
    font-size: 18px;
  }
  .he-device-feature__device-slider .swiper-button-prev {
    left: 0;
  }
  .he-device-feature__device-slider .swiper-button-next {
    right: 0;
  }
}
@media (max-width: 400px) {
  .he-device-feature__visual {
    padding-inline: 28px;
  }
  .he-device-feature__device-slider {
    max-width: 100%;
    padding-inline: 28px;
  }
  .he-device-feature__device-slider .swiper {
    max-width: 200px;
  }
}

#main .he-list--purple-square ul li {
  position: relative;
  margin-left: 0;
  padding: 1px 0 1px 18px;
  margin-bottom: 0.5rem;
}
#main .he-list--purple-square ul li::marker {
  content: "";
  font-size: 0;
}
#main .he-list--purple-square ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M3,0H5A3,3,0,0,1,8,3V8A0,0,0,0,1,8,8H3A3,3,0,0,1,0,5V3A3,3,0,0,1,3,0Z' fill='%23a3195b'/%3E%3C/svg%3E");
}
#main .he-list--purple-square.he-list--purple-square--centered {
  text-align: center;
}
#main .he-list--purple-square.he-list--purple-square--centered ul {
  display: inline-block;
  width: auto;
  max-width: 100%;
  text-align: left;
  margin: 0 auto;
  padding-left: 0;
}
#main .he-list--purple-square.he-list--purple-square--centered li {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 0.5rem;
  padding: 1px 0 1px 18px;
}
#main .he-list--purple-square.he-list--purple-square--centered li::before {
  left: 0;
  top: 0.72em;
}
#main .he-list--white-square ul li {
  position: relative;
  margin-left: 0;
  padding: 1px 0 1px 28px;
  margin-bottom: 0.5rem;
}
#main .he-list--white-square ul li::marker {
  font-size: 0;
}
#main .he-list--white-square ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M3,0H5A3,3,0,0,1,8,3V8A0,0,0,0,1,8,8H3A3,3,0,0,1,0,5V3A3,3,0,0,1,3,0Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.he-image-text {
  display: grid !important;
  grid-template-columns: minmax(420px, 520px) minmax(0, 560px);
  -moz-column-gap: clamp(72px, 8vw, 120px);
       column-gap: clamp(72px, 8vw, 120px);
  align-items: center;
  padding-left: clamp(70px, 7vw, 110px);
}
.he-image-text > :empty {
  display: none !important;
}
.he-image-text > [class*=col-] {
  width: auto !important;
  max-width: none !important;
  flex: initial !important;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}
.he-image-text > .he-image-text__media,
.he-image-text > :has(.he-image-text__media) {
  grid-column: 1;
}
.he-image-text > :has(.he-image-text__copy) {
  grid-column: 2;
}
.he-image-text .he-image-text__media,
.he-image-text .imgborder,
.he-image-text .content-image {
  width: 100%;
}
.he-image-text .imgborder figure,
.he-image-text .content-image figure {
  margin: 0;
  width: 100%;
}
.he-image-text .imgborder img,
.he-image-text .content-image img {
  display: block;
  width: 100%;
  height: auto;
}
.he-image-text__copy {
  padding-bottom: 0 !important;
}
.he-image-text__copy h2 {
  margin-top: 0;
  margin-bottom: 16px;
}
.he-image-text__copy .rte p {
  line-height: 1.45;
}
@media (max-width: 1280px) {
  .he-image-text {
    grid-template-columns: minmax(360px, 460px) minmax(0, 520px);
    -moz-column-gap: clamp(48px, 6vw, 84px);
         column-gap: clamp(48px, 6vw, 84px);
    padding-left: clamp(44px, 5vw, 70px);
    padding-right: clamp(44px, 5vw, 70px);
  }
}
@media (max-width: 991px) {
  .he-image-text {
    grid-template-columns: 1fr;
    row-gap: clamp(32px, 6vw, 48px);
    padding-left: clamp(16px, 4vw, 32px);
    padding-right: clamp(16px, 4vw, 32px);
  }
  .he-image-text > .he-image-text__media,
  .he-image-text > :has(.he-image-text__media),
  .he-image-text > :has(.he-image-text__copy) {
    grid-column: 1;
    width: 100%;
  }
}
@media (max-width: 680px) {
  .he-image-text {
    padding-left: 16px;
    padding-right: 16px;
    row-gap: 28px;
  }
  .he-image-text .he-image-text__copy h2 {
    margin-bottom: 16px;
  }
  .he-image-text .he-image-text__copy .rte p {
    line-height: 1.45;
  }
}

.week-card {
  position: relative;
  padding: clamp(16px, 2.5vw, 26px) clamp(16px, 2.5vw, 30px) clamp(60px, 8vw, 78px);
  background: #fff;
  border: 1px solid rgba(21, 59, 88, 0.08);
  border-radius: 7px;
  align-self: start;
}
.week-card > i.fa-solid {
  position: absolute;
  top: clamp(16px, 2.5vw, 26px);
  width: clamp(56px, 8vw, 76px);
  height: clamp(56px, 8vw, 76px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 3vw, 29px);
  color: #fff;
}
.week-card__eyebrow {
  margin: 0 0 6px;
  padding-left: clamp(72px, 10vw, 114px);
}
.week-card > .content-text:not(.week-card__extra) {
  margin: 0 0 22px;
  padding-left: clamp(72px, 10vw, 114px);
}
.week-card > .content-text:not(.week-card__extra) .rte h2 {
  margin: 0 0 6px;
}
.week-card > .content-text:not(.week-card__extra) .rte p {
  padding: 0;
}
.week-card__intro .rte::before, .week-card__intro .rte::after, .week-card__extra .rte::before, .week-card__extra .rte::after {
  content: none;
}
.week-card__intro .rte p, .week-card__extra .rte p {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 0 28px;
}
.week-card__intro .rte p::before, .week-card__extra .rte p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.week-card__extra {
  display: none;
}
.week-card.is-expanded {
  padding-bottom: 92px;
}
.week-card.is-expanded .week-card__extra {
  display: block;
}
.week-card__toggle {
  position: absolute;
  bottom: 24px;
}
.week-card__toggle a:hover {
  text-decoration: underline;
}
.week-card > i.fa-regular.fa-circle-right {
  position: absolute;
  right: clamp(16px, 2.5vw, 30px);
  bottom: 24px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.week-card > i.fa-regular.fa-circle-right::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  color: #fff;
}

#woche-1 > i.fa-solid {
  background: #7aa20d;
}
#woche-1 .week-card__eyebrow {
  color: #7aa20d;
}
#woche-1 .week-card__toggle a {
  color: #7aa20d;
}
#woche-1 > i.fa-regular.fa-circle-right {
  background: #b4c96e;
}
#woche-1 > i.fa-regular.fa-circle-right:hover {
  background: #7aa20d;
}
#woche-1 .week-card__intro .rte p::before,
#woche-1 .week-card__extra .rte p::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M3,0H5A3,3,0,0,1,8,3V8A0,0,0,0,1,8,8H3A3,3,0,0,1,0,5V3A3,3,0,0,1,3,0Z' fill='%237aa20d'/%3E%3C/svg%3E");
}

#woche-2 > i.fa-solid {
  background: #005ea8;
}
#woche-2 .week-card__eyebrow {
  color: #005ea8;
}
#woche-2 .week-card__toggle a {
  color: #005ea8;
}
#woche-2 > i.fa-regular.fa-circle-right {
  background: #7ea4c4;
}
#woche-2 > i.fa-regular.fa-circle-right:hover {
  background: #005ea8;
}
#woche-2 .week-card__intro .rte p::before,
#woche-2 .week-card__extra .rte p::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M3,0H5A3,3,0,0,1,8,3V8A0,0,0,0,1,8,8H3A3,3,0,0,1,0,5V3A3,3,0,0,1,3,0Z' fill='%23005ea8'/%3E%3C/svg%3E");
}

#woche-3 > i.fa-solid {
  background: #6b2f86;
}
#woche-3 .week-card__eyebrow {
  color: #6b2f86;
}
#woche-3 .week-card__toggle a {
  color: #6b2f86;
}
#woche-3 > i.fa-regular.fa-circle-right {
  background: #9c87ba;
}
#woche-3 > i.fa-regular.fa-circle-right:hover {
  background: #6b2f86;
}
#woche-3 .week-card__intro .rte p::before,
#woche-3 .week-card__extra .rte p::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M3,0H5A3,3,0,0,1,8,3V8A0,0,0,0,1,8,8H3A3,3,0,0,1,0,5V3A3,3,0,0,1,3,0Z' fill='%236b2f86'/%3E%3C/svg%3E");
}

#woche-4 > i.fa-solid {
  background: #b01269;
}
#woche-4 .week-card__eyebrow {
  color: #b01269;
}
#woche-4 .week-card__toggle a {
  color: #b01269;
}
#woche-4 > i.fa-regular.fa-circle-right {
  background: #d56b9d;
}
#woche-4 > i.fa-regular.fa-circle-right:hover {
  background: #b01269;
}
#woche-4 .week-card__intro .rte p::before,
#woche-4 .week-card__extra .rte p::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M3,0H5A3,3,0,0,1,8,3V8A0,0,0,0,1,8,8H3A3,3,0,0,1,0,5V3A3,3,0,0,1,3,0Z' fill='%23b01269'/%3E%3C/svg%3E");
}

.he-musterrechnung-grid {
  display: flex;
  gap: clamp(24px, 3vw, 40px);
}
@media (max-width: 991px) {
  .he-musterrechnung-grid {
    flex-direction: column;
    gap: 24px;
  }
}

.he-musterrechnung-card {
  display: grid;
  grid-template-areas: "icon eyebrow" "icon title" "icon text" ". button";
  -moz-column-gap: clamp(14px, 2vw, 22px);
       column-gap: clamp(14px, 2vw, 22px);
  padding: clamp(32px, 4vw, 58px) clamp(28px, 4vw, 54px);
  background: #ffffff;
  border: 1px solid rgba(21, 59, 88, 0.08);
  border-radius: 7px;
}
@media (max-width: 991px) {
  .he-musterrechnung-card {
    width: 100%;
    max-width: 100%;
  }
}
.he-musterrechnung-card__icon {
  grid-area: icon;
  width: clamp(76px, 7vw, 82px);
  height: clamp(76px, 7vw, 82px);
  margin: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  justify-self: center;
  align-self: start;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: none;
  font-size: 0;
  line-height: 1 !important;
}
.he-musterrechnung-card__icon::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1;
  color: #ffffff;
}
.he-musterrechnung-card__eyebrow {
  grid-area: eyebrow;
  padding: 0;
  font-size: clamp(0.85rem, 1vw, 1rem) !important;
  line-height: 1.15;
}
.he-musterrechnung-card__title {
  margin: 0 0 14px;
  padding: 0;
  color: #153B58;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem) !important;
  line-height: 1.12;
}
.he-musterrechnung-card > div:has(.he-musterrechnung-card__text) {
  grid-area: text;
}
.he-musterrechnung-card > div:has(.he-musterrechnung-card__btn) {
  grid-area: button;
  margin: clamp(18px, 2vw, 28px) 0 0;
  justify-self: start;
}
.he-musterrechnung-card__text .rte p {
  margin: 0;
  padding: 0;
}
.he-musterrechnung-card__btn {
  padding: 0;
}
.he-musterrechnung-card__btn a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 24px;
  border-radius: 5px;
  background: #b01269;
}
.he-musterrechnung-card__btn a:hover {
  background: #153B58;
}

.musterrechnung_strom .he-musterrechnung-card__icon {
  background: #b01269;
}

.musterrechnung_gas .he-musterrechnung-card__icon {
  background: #153B58;
}

.umzug-service-intro .he-split-image-text.he-split-image-text {
  grid-template-columns: minmax(440px, 540px) minmax(420px, 520px);
  -moz-column-gap: clamp(72px, 8vw, 112px);
       column-gap: clamp(72px, 8vw, 112px);
  align-items: center;
  width: min(100% - clamp(32px, 8vw, 160px), 1280px);
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(96px, 8vw, 130px);
  padding-bottom: clamp(120px, 9vw, 170px);
}
.umzug-service-intro .he-split-image-text.he-split-image-text > :has(.he-split-image-text__media) {
  grid-column: 1;
}
.umzug-service-intro .he-split-image-text.he-split-image-text > .he-split-image-text__content,
.umzug-service-intro .he-split-image-text.he-split-image-text > :has(.he-split-image-text__content) {
  grid-column: 2;
}
.umzug-service-intro .he-split-image-text.he-split-image-text .he-split-image-text__media {
  width: 100%;
  max-width: 540px;
}
.umzug-service-intro .he-split-image-text.he-split-image-text .he-split-image-text__media figure,
.umzug-service-intro .he-split-image-text.he-split-image-text .he-split-image-text__media img,
.umzug-service-intro .he-split-image-text.he-split-image-text .imgborder figure,
.umzug-service-intro .he-split-image-text.he-split-image-text .imgborder img,
.umzug-service-intro .he-split-image-text.he-split-image-text .content-image figure,
.umzug-service-intro .he-split-image-text.he-split-image-text .content-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}
.umzug-service-intro .he-split-image-text.he-split-image-text .he-split-image-text__content {
  max-width: 520px;
  align-self: center;
}
.umzug-service-intro .he-split-image-text.he-split-image-text .he-split-image-text__content .content-text {
  margin: 0;
}
.umzug-service-intro .he-split-image-text.he-split-image-text .he-split-image-text__content h2 {
  margin: 0 0 6px !important;
  padding: 0 !important;
  color: #A3195B !important;
  font-size: clamp(1.25rem, 1.15rem + 1vw, 2rem) !important;
  line-height: 1.12;
}
.umzug-service-intro .he-split-image-text.he-split-image-text .he-split-image-text__content .he-split-image-text__subline {
  margin: 0 0 clamp(22px, 2vw, 34px);
}
.umzug-service-intro .he-split-image-text.he-split-image-text .he-split-image-text__content .he-split-image-text__subline .rte > p {
  margin: 0 !important;
  padding: 0 !important;
  color: #153B58 !important;
  font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.35rem) !important;
  font-weight: 700;
  line-height: 1.12;
}
.umzug-service-intro .he-split-image-text.he-split-image-text .he-split-image-text__content .content-text:not(.he-split-image-text__subline) .rte > p {
  margin: 0;
  padding: 0;
  line-height: 1.45;
}
@media (max-width: 1081px) {
  .umzug-service-intro .he-split-image-text.he-split-image-text {
    grid-template-columns: 1fr;
    row-gap: clamp(32px, 6vw, 48px);
    width: min(100% - 32px, 680px);
    padding-top: clamp(56px, 10vw, 88px);
    padding-bottom: clamp(72px, 12vw, 110px);
  }
  .umzug-service-intro .he-split-image-text.he-split-image-text > :has(.he-split-image-text__media),
  .umzug-service-intro .he-split-image-text.he-split-image-text > .he-split-image-text__content,
  .umzug-service-intro .he-split-image-text.he-split-image-text > :has(.he-split-image-text__content) {
    grid-column: 1;
    width: 100%;
  }
  .umzug-service-intro .he-split-image-text.he-split-image-text .he-split-image-text__media {
    max-width: 100%;
  }
  .umzug-service-intro .he-split-image-text.he-split-image-text .he-split-image-text__content {
    max-width: 100%;
  }
}

.he-move-info__inner {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 82px);
}
.he-move-info__content {
  flex: 1 1 0;
}
.he-move-info__content > .content-text:first-child {
  margin-bottom: clamp(14px, 1.8vw, 22px);
}
.he-move-info__content > .content-text:first-child h3 {
  margin: 0 0 4px;
  padding: 0;
  line-height: 1.08;
}
.he-move-info__content > .content-text:first-child .rte h4 {
  margin: 0 0 clamp(16px, 2vw, 24px);
  line-height: 1.1;
}
.he-move-info__content > .content-text:first-child .rte p {
  line-height: 1.4;
}
.he-move-info__content .he-list--white-square {
  margin: clamp(14px, 2vw, 22px) 0 clamp(18px, 2.2vw, 26px);
}
.he-move-info__content .he-list--white-square ul {
  padding-left: 18px;
}
.he-move-info__content .he-list--white-square li {
  margin: 0 0 8px;
  line-height: 1.3;
}
.he-move-info__content > .content-text:last-child .rte,
.he-move-info__content > .content-text:last-child .rte p {
  line-height: 1.45;
}

.helpdesk .ce_faq_search {
  background: #ffffff;
  border: 1px solid rgba(59, 59, 59, 0);
  border-radius: 7px;
  padding: clamp(8px, 4vw, 22px);
  box-shadow: 0 6px 15px rgba(15, 45, 69, 0.08);
  margin-top: 32px;
  margin-bottom: 32px;
}
.helpdesk .ce_faq_search .form-keywords {
  flex: 1 1 clamp(200px, 50vw, 540px);
}
.helpdesk .ce_faq_search .form-submit {
  flex: 0 0 clamp(120px, 50vw, 170px);
  padding-right: 20px;
  padding-left: 20px;
}
.helpdesk .ce_faq_search .form-submit button,
.helpdesk .ce_faq_search .form-submit .button {
  background: #0f2d45;
  color: #ffffff;
  width: 110%;
  max-width: 300px;
  max-height: 56px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-5px);
  padding-right: 20px;
  padding-left: 20px;
}
.helpdesk .ce_faq_search input[type=text] {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1.5px solid #cfd6df;
  border-radius: 7px;
  background: #f8fafc;
  color: #0f2d45;
}
.helpdesk .ce_faq_search input[type=text]::-moz-placeholder {
  color: #7d8896;
}
.helpdesk .ce_faq_search input[type=text]::placeholder {
  color: #7d8896;
}
.helpdesk .ce_faq_search input[type=text]:hover {
  border-color: #aeb8c3;
  background: #fff;
}
.helpdesk .ce_faq_search input[type=text]:focus {
  outline: none;
  background: #fff;
  border-color: #A3195B;
  box-shadow: 0 0 0 4px rgba(163, 25, 91, 0.12);
}
.helpdesk .ce_faq_search .faq-search-result {
  margin-top: 80px;
}

.he-faq-accordion {
  margin: 0 auto clamp(56px, 7vw, 100px) !important;
  padding: clamp(22px, 3vw, 42px) clamp(22px, 4vw, 54px) clamp(22px, 4vw, 48px) !important;
  background: #ffffff;
  border: 1px solid rgba(21, 59, 88, 0.08);
  border-radius: 7px;
}
.he-faq-accordion .toggler {
  position: relative;
  display: flex !important;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid rgba(21, 59, 88, 0.14) !important;
  font-weight: 800;
  cursor: pointer;
}
.he-faq-accordion .toggler:hover, .he-faq-accordion .toggler:focus, .he-faq-accordion .toggler:focus-visible, .he-faq-accordion .toggler.ui-state-hover, .he-faq-accordion .toggler.ui-state-focus {
  color: #A3195B !important;
}
.he-faq-accordion .toggler::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 18px;
  border-radius: 7px;
  background: #A3195B;
  color: #ffffff;
  line-height: 18px;
  font-family: Arial, sans-serif;
  text-align: center;
}
.he-faq-accordion .toggler.ui-accordion-header-active::after, .he-faq-accordion .toggler.ui-state-active::after, .he-faq-accordion .toggler.active::after, .he-faq-accordion .toggler[aria-expanded=true]::after {
  content: "−";
}
.he-faq-accordion .accordion,
.he-faq-accordion .accordion.ui-accordion-content,
.he-faq-accordion .ui-widget-content {
  padding: clamp(26px, 3vw, 34px) 0 !important;
}
.he-faq-accordion .accordion a {
  color: #A3195B;
  font-weight: 700;
}
.he-faq-accordion .accordion a:hover {
  text-decoration: underline;
}

.mod_article.re_numbers {
  width: 100%;
  overflow-anchor: none;
  padding: clamp(56px, 6.5vw, 86px) clamp(58px, 8vw, 112px) clamp(58px, 7vw, 92px) !important;
  background: #ffffff;
  border: 1px solid rgba(21, 59, 88, 0.08);
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(15, 45, 69, 0.1), 0 2px 6px rgba(15, 45, 69, 0.04);
}
.mod_article.re_numbers .re_numbers__head {
  width: 100%;
}
.mod_article.re_numbers .re_numbers__headline {
  color: #153B58;
}
.mod_article.re_numbers .toggler {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid rgba(21, 59, 88, 0.14);
  font-weight: 800;
  cursor: pointer;
}
.mod_article.re_numbers .toggler:hover, .mod_article.re_numbers .toggler:focus, .mod_article.re_numbers .toggler:focus-visible, .mod_article.re_numbers .toggler.ui-state-hover, .mod_article.re_numbers .toggler.ui-state-focus {
  color: #A3195B !important;
}
.mod_article.re_numbers .toggler::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #A3195B;
  color: #ffffff;
  line-height: 1;
}
.mod_article.re_numbers .toggler.ui-accordion-header-active::after, .mod_article.re_numbers .toggler.ui-state-active::after, .mod_article.re_numbers .toggler.active::after {
  content: "−";
}
.mod_article.re_numbers .accordion,
.mod_article.re_numbers .accordion.ui-accordion-content,
.mod_article.re_numbers .ui-widget-content {
  padding: clamp(34px, 4.5vw, 56px) 0 clamp(42px, 5vw, 68px);
}
.mod_article.re_numbers .re_numbers__media {
  flex: 0 0 clamp(300px, 38%, 430px);
  max-width: clamp(300px, 38%, 430px);
}
.mod_article.re_numbers .re_numbers__content {
  flex: 1 1 auto;
  max-width: none;
}
.mod_article.re_numbers .re_numbers__list {
  padding-top: clamp(10px, 1.2vw, 20px);
}
.mod_article.re_numbers .re_numbers__list ol {
  display: grid;
  gap: clamp(20px, 2.1vw, 30px);
}
.mod_article.re_numbers .re_numbers__list li,
.mod_article.re_numbers .re_numbers__list li.custom_list {
  position: relative;
  min-height: 34px;
  margin: 0;
  padding: 0 0 0 54px !important;
  font-size: clamp(15px, 1.05vw, 17px);
}
.mod_article.re_numbers .re_numbers__list li::marker,
.mod_article.re_numbers .re_numbers__list li.custom_list::marker {
  font-size: 0;
}
.mod_article.re_numbers .re_numbers__list li::before,
.mod_article.re_numbers .re_numbers__list li.custom_list::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center !important;
  padding: 0 !important;
  border-radius: 50%;
  background: #A3195B;
  color: #ffffff !important;
  font-size: 15px !important;
}

.kpi-boxen {
  height: 100%;
}
.kpi-boxen > * {
  position: relative;
  min-width: 0;
  height: 100%;
  min-height: clamp(132px, 13vw, 170px);
  background: #ffffff;
  border: 1px solid rgba(21, 59, 88, 0.08);
  border-radius: 7px;
  box-shadow: 0 6px 16px rgba(15, 45, 69, 0.06), 0 1px 3px rgba(15, 45, 69, 0.035);
  color: #153B58;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.kpi-boxen a {
  display: grid;
  grid-template-columns: clamp(58px, 5vw, 76px) minmax(0, 1fr);
  align-items: center;
  -moz-column-gap: clamp(16px, 2vw, 22px);
       column-gap: clamp(16px, 2vw, 22px);
  padding: clamp(22px, 2.6vw, 28px) clamp(44px, 4vw, 56px) clamp(22px, 2.6vw, 28px) clamp(24px, 2.6vw, 30px);
  line-height: 1.25;
  overflow-wrap: break-word;
}
.kpi-boxen a::before {
  font-family: "Font Awesome 6 Free";
  content: "X";
  width: clamp(58px, 5vw, 76px);
  height: clamp(58px, 5vw, 76px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #b01269;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  box-shadow: 0 10px 22px rgba(15, 45, 69, 0.12);
}
.kpi-boxen > *:hover,
.kpi-boxen > *:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 45, 69, 0.09), 0 2px 6px rgba(15, 45, 69, 0.045);
}
.kpi-boxen > *:hover a::before,
.kpi-boxen > *:focus-within a::before {
  transform: scale(1.04);
  box-shadow: 0 12px 26px rgba(15, 45, 69, 0.14);
}
@media (max-width: 1100px) {
  .kpi-boxen > * {
    min-height: clamp(150px, 24vw, 190px);
  }
  .kpi-boxen a {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    row-gap: clamp(10px, 2vw, 14px);
    padding: clamp(22px, 4vw, 30px) clamp(14px, 3vw, 20px) clamp(42px, 5vw, 50px);
    text-align: center;
    font-size: clamp(0.9rem, 1.8vw, 1.02rem);
    line-height: 1.18;
  }
  .kpi-boxen a::before {
    width: clamp(54px, 8vw, 68px);
    height: clamp(54px, 8vw, 68px);
    font-size: clamp(1.35rem, 3vw, 1.8rem);
  }
}
.kpi-icon-data a::before {
  background: #005ea8;
  content: "\f2c2";
}
.kpi-icon-friends a::before {
  background: #7aa20d;
  content: "\e536";
}
.kpi-icon-meter a::before {
  background: #005ea8;
  content: "\f625";
}
.kpi-icon-move a::before {
  background: #7aa20d;
  content: "\f4de";
}
.kpi-icon-contract a::before {
  background: #153B58;
  content: "\f56c";
}
.kpi-icon-downpay a::before {
  background: #b01269;
  content: "\f51e";
}
.kpi-icon-invoice a::before {
  background: #b01269;
  content: "\f570";
}
.kpi-icon-change a::before {
  background: #005ea8;
  content: "\e4c1";
}
.kpi-icon-service a::before {
  background: #b01269;
  content: "\f109";
}
.kpi-icon-contact a::before {
  background: #153B58;
  content: "\f2b9";
}
.kpi-icon-mail a::before {
  background: #b01269;
  content: "\f658";
}
.kpi-icon-phone a::before {
  background: #153B58;
  content: "\f095";
}
.kpi-icon-dynamic a::before {
  background: #005ea8;
  content: "\f201";
}
.kpi-icon-current-labeling a::before {
  background: #153B58;
  content: "\f15c";
}

.why-hitenergy {
  width: 100%;
}
.why-hitenergy__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
.why-hitenergy__item {
  text-align: center;
}
.why-hitenergy__icon {
  width: clamp(64px, 10vw, 88px);
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: #ffffff;
  color: #153B58;
  font-size: 0;
}
.why-hitenergy__icon::before {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 2.5;
}

.benefit-strip.benefit-strip.benefit-strip {
  gap: clamp(18px, 3vw, 42px);
  padding: clamp(16px, 2vw, 24px) clamp(18px, 3vw, 34px);
  background: #ffffff;
  border: 1px solid rgba(21, 59, 88, 0.08);
  border-radius: 7px;
  box-shadow: 0 4px 12px rgba(15, 45, 69, 0.045), 0 1px 3px rgba(15, 45, 69, 0.025);
}

.benefit-strip__item {
  display: grid;
  grid-template-columns: clamp(34px, 3.5vw, 48px) minmax(0, 1fr);
  -moz-column-gap: clamp(10px, 1.4vw, 18px);
       column-gap: clamp(10px, 1.4vw, 18px);
  align-content: center;
  flex: 1 1 0;
}
.benefit-strip__icon {
  width: clamp(32px, 3.5vw, 46px);
  height: clamp(28px, 3vw, 38px);
  color: #A3195B;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}
.benefit-strip__text {
  grid-column: 2 !important;
  grid-row: 1 !important;
}
.benefit-strip__text .rte h3 {
  padding: 0;
  color: #153B58;
  font-size: clamp(1rem, 1.35vw, 1.25rem) !important;
  line-height: 1.05;
}
.benefit-strip__text .rte p {
  padding: 0 !important;
  color: #153B58;
  font-size: clamp(0.88rem, 1vw, 0.98rem) !important;
  line-height: 1.14;
  font-weight: 400;
}

.he-help-cards--compact > .row.ce_rowStart {
  row-gap: 22px;
}
.he-help-cards--compact .he-help-cards__headline {
  margin-bottom: -40px;
}
.he-help-cards--compact .he-help-cards__sub_headline {
  margin-bottom: -24px;
}
.he-help-cards--compact .he-help-cards__sub_headline .rte p {
  margin-top: 5px;
}
.he-help-cards--compact .he-help-cards__item {
  min-height: 156px;
  padding: 18px 24px;
  border: 1px solid rgba(21, 59, 88, 0.08);
  border-radius: 7px;
  box-shadow: 0 6px 14px rgba(15, 45, 69, 0.08), 0 2px 4px rgba(15, 45, 69, 0.04);
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  grid-template-areas: "icon title" "icon text" "icon button";
  -moz-column-gap: 18px;
       column-gap: 18px;
  row-gap: 3px;
  align-items: center;
  align-content: center;
}
.he-help-cards--compact .he-help-cards__item .content-text,
.he-help-cards--compact .he-help-cards__item .rte {
  margin-left: 9.9px;
}
.he-help-cards--compact .he-help-cards__item .rte p,
.he-help-cards--compact .he-help-cards__item .rte p:last-child {
  margin-bottom: 0;
  margin-left: -10px;
  font-size: 0.92rem;
  line-height: 1.22;
  font-weight: 600;
}
.he-help-cards--compact .he-help-cards__item .he-help-cards__text {
  margin-bottom: 0;
  margin-left: -10px;
  font-size: 0.92rem;
  line-height: 1.22;
  font-weight: 600;
}
.he-help-cards--compact .he-help-cards__item .he-btn.he-btn--primary.he-help-cards__btn {
  padding-left: 9.9px;
  justify-content: flex-start;
  background: transparent;
}
.he-help-cards--compact .he-help-cards__item .he-btn.he-btn--primary.he-help-cards__btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 34px;
  border-radius: 7px;
  background: #A3195B;
  font-size: 0.95rem;
}
.he-help-cards--compact .he-help-cards__item .he-btn.he-btn--primary.he-help-cards__btn a:hover {
  background: #153B58;
}
.he-help-cards--compact .he-help-cards__icon {
  grid-area: icon;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #A3195B;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.he-help-cards--compact .he-help-cards__icon.fa-solid::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
}
.he-help-cards--compact .he-help-cards__title {
  margin: 0 0 0 9.9px;
  padding: 0;
  color: #153B58;
  line-height: 1.18;
  font-size: clamp(1.1rem, 0.95rem + 0.65vw, 1.4rem) !important;
}

.he-call-card {
  position: relative;
  min-height: 179px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 28px);
  background: #ffffff;
  border-radius: 7px;
}
.he-call-card::before {
  content: "\f2a0";
  position: static;
  transform: none;
  flex: 0 0 clamp(72px, 6vw, 78px);
  width: clamp(72px, 6vw, 78px);
  height: clamp(72px, 6vw, 78px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #A3195B;
  color: #ffffff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: clamp(1.75rem, 2.1vw, 2.2rem) !important;
  line-height: 1;
}
.he-call-card .rte {
  margin: 0;
  min-width: 0;
}
.he-call-card p {
  margin: 0;
  padding: 0;
}
.he-call-card .rte p:first-child {
  margin-bottom: 4px;
  color: #153B58;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.1;
  font-weight: 700;
}
.he-call-card .rte p:nth-child(2) {
  color: #A3195B;
  font-size: clamp(1.45rem, 2.35vw, 1.85rem);
  line-height: 1;
  font-weight: 800;
}
@media (max-width: 991px) {
  .he-call-card {
    max-width: 520px;
  }
}
@media (max-width: 680px) {
  .he-call-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

.alert {
  padding: 10px !important;
}
.alert-error {
  background-color: #b3211f;
  color: #ffffff;
}

.ce_form.contractform .widget-text input,
.ce_form.contractform .widget-textarea textarea,
.ce_form.contractform .widget-select select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d7dbe0;
  border-radius: 7px;
  background: #ffffff;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  outline: none;
}
.ce_form.contractform .widget-text input:focus,
.ce_form.contractform .widget-textarea textarea:focus,
.ce_form.contractform .widget-select select:focus {
  border-color: #005ea8;
}
.ce_form.contractform .widget-textarea textarea {
  line-height: 1.4;
  color: #595959;
}
.ce_form.contractform .radio_container span {
  margin-right: 1rem;
}
.ce_form.contractform input.radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 14px;
  height: 14px;
  border: 2px solid #c6ccd3;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  position: relative;
}
.ce_form.contractform input.radio:checked {
  border-color: #A3195B;
}
.ce_form.contractform input.radio:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #A3195B;
}
.ce_form.contractform input.radio:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(163, 25, 91, 0.18);
}
.ce_form.contractform button.submit {
  border-radius: 7px;
  padding: 0.6rem 1.1rem;
  font-weight: 600;
  background: #0f2d45;
  color: #ffffff;
}/*# sourceMappingURL=style.css.map */
