.button {
  background-color: var(--buttonBackground);
  font-size: clamp(0.9375rem, 1.10987791vw + 0.67737236rem, 1.5625rem);
  line-height: clamp(1.25rem, 1.77580466vw + 0.83379578rem, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  color: var(--buttonColor);
  padding: 12px 86px 12px 30px;
  appearance: none;
  border-radius: 100000px;
  box-sizing: border-box;
  text-align: left;
  text-decoration: none;
  border: none;
  min-width: 525px;
  position: relative;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--buttonBackgroundHover), var(--buttonBackgroundHover));
  transition: all 0.24s;
}
.button:after {
  content: '';
  position: absolute;
  right: 30px;
  top: 0;
  width: 36px;
  height: 100%;
  background-color: var(--buttonColor);
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right.svg);
}
.button:hover {
  background-size: 100% 100%;
}
@media (max-width: 1279px) {
  .button {
    min-width: 336px;
  }
}
@media (max-width: 767px) {
  .button {
    min-width: 280px;
    padding: 7px 64px 7px 20px;
  }
  .button:after {
    right: 20px;
    width: 24px;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.area--one .unitTwo {
  width: calc((100% / 3) - 24px);
}
/*# sourceMappingURL=./screen-large.css.map */