:root {
  --sitecolor: #A59A74;
  --textcolor: #6C7B6B;
  --titlecolor: #6C7B6B;
  --linkcolor: #A59A74;
  --linkcolor-hov: #A59A74;
  --accentcolor: #A59A74;
  --headerHeight: 270px;
  --gridGap: 70px;
  --btnPrimaryColor: #1B2F20;
  --btnPrimaryBgColor: #A59A74;
  --btnPrimaryColorHover: #1B2F20;
  --btnPrimaryBgColorHover: #6C7B6B;
}
@media (max-width: 1023px) {
  :root {
    --headerHeight: 100px;
  }
}
.button {
  background-color: var(--sitecolor);
  font-size: clamp(1.125rem, 0.25889968vw + 1.06432039rem, 1.375rem);
  line-height: clamp(1.5625rem, 0.3236246vw + 1.48665049rem, 1.875rem);
  font-family: inherit;
  cursor: pointer;
  color: var(--btnPrimaryColor);
  background-color: var(--btnPrimaryBgColor);
  padding: 16px 18px;
  appearance: none;
  border-radius: 0;
  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);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus {
    color: var(--btnPrimaryColorHover);
    background-color: var(--btnPrimaryBgColorHover);
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
/*# sourceMappingURL=./screen-medium.css.map */