.button {
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  line-height: clamp(1.5rem, 0vw + 1.5rem, 1.5rem);
  font-family: inherit;
  cursor: pointer;
  color: var(--buttonColor);
  appearance: none;
  border-radius: 0;
  padding-left: 50px;
  box-sizing: border-box;
  text-align: left;
  text-decoration: none;
  border: none;
  min-height: 40px;
  display: flex;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  transition: all 0.24s;
}
.button:before,
.button:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 10000px;
  transition: all 0.24s;
}
.button:before {
  background-color: var(--buttonBackground);
}
.button:after {
  background-color: var(--buttonColor);
  mask-size: 20px 20px;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right.svg);
}
.button:hover,
.button:focus,
.unit--isAnchor:hover .button,
.newsTeaserItem:hover .button {
  color: var(--buttonColorHover);
}
.button:hover:before,
.button:focus:before,
.unit--isAnchor:hover .button:before,
.newsTeaserItem:hover .button:before {
  background-color: var(--buttonBackgroundHover);
}
.button:hover:after,
.button:focus:after,
.unit--isAnchor:hover .button:after,
.newsTeaserItem:hover .button:after {
  background-color: var(--buttonColorHover);
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.area--one {
  width: calc(100% + 30px);
  margin-left: -15px;
}
.area--one .unit {
  width: calc(100% - 30px);
  margin-left: 15px;
  margin-right: 15px;
}
.area--one .unitOne--1-1 .unit__body {
  width: calc(100% + 30px);
  margin-left: -15px;
}
.area--one .unitOne--1-1 .part {
  width: calc(100% - 30px);
  margin-left: 15px;
  margin-right: 15px;
}
.area--one .unitOne--1-1 .part--1-2 {
  width: calc(50% - 30px);
}
.area--one .unitOne--1-2 {
  width: calc(50% - 30px);
}
.area--one .unitOne--1-3 {
  width: calc(50% - 30px);
}
.area--one .unitThree {
  width: calc(50% - 30px);
}
.area--one .unitFive {
  width: calc(50% - 30px);
}
.area--one .unit--imageGallery .unit__body {
  width: calc(100% + 30px);
  margin-left: -15px;
}
.area--one .unit--imageGallery .part {
  margin-left: 15px;
  margin-right: 15px;
  width: calc(50% - 30px);
}
.area--one .unit--quicklink {
  width: calc(50% - 30px);
}
.area--twoB {
  width: calc(100% + 30px);
  margin-left: -15px;
}
.area--twoB .unit {
  width: calc(100% - 30px);
  margin-left: 15px;
  margin-right: 15px;
}
.area--twoB .unitTwo {
  width: calc(50% - 30px);
}
/*# sourceMappingURL=./screen-medium.css.map */