:root {
  --sitecolor: #9B0834;
  --textcolor: #5F5F5F;
  --titlecolor: #31516D;
  --linkcolor: #5F5F5F;
  --linkcolor-hov: #9B0834;
  --accentcolor: #9B0834;
  --headerHeight: 100px;
  --gridGap: 30px;
  --borderRadius: 10px;
  --btnColor: #fff;
  --btnBgColor: #9B0834;
  --btnColorHover: #fff;
  --btnBgColorHover: #770B2B;
}
@media (max-width: 1277px) {
  :root {
    --headerHeight: 64px;
  }
}
.button {
  background-color: var(--btnBgColor);
  font-size: clamp(1.125rem, 0.44198895vw + 1.02140884rem, 1.375rem);
  line-height: clamp(1.625rem, 0.66298343vw + 1.46961326rem, 2rem);
  font-family: inherit;
  cursor: pointer;
  color: var(--btnColor);
  font-weight: 300;
  padding: 7px 40px 5px;
  appearance: none;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  border-radius: var(--borderRadius);
  box-shadow: inset 0em 0em 0em var(--btnBgColorHover);
  font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus {
    box-shadow: inset 0em 0em 15em var(--btnBgColorHover);
    background-color: var(--btnBgColorHover);
    color: var(--btnColorHover);
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.area--one {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 var(--gridGap);
}
.area--one .unit {
  grid-column: span 4;
}
.area--one .unitOne--1-3 {
  grid-column: span 2;
}
/*# sourceMappingURL=./screen-medium.css.map */