.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.buttonBascis {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  color: var(--buttonColor);
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.015em;
  font-weight: bold;
  border: none;
  position: relative;
  isolation: isolate;
  transition: all 0.4s;
  overflow: hidden;
}
.buttonBascis:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--buttonBackground);
  z-index: -2;
}
.buttonBascis:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--buttonBackgroundHover);
  z-index: -1;
  transition: all 0.4s;
}
.buttonBascis:hover:after,
.buttonBascis:focus:after {
  width: 100%;
}
.button {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  color: var(--buttonColor);
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.015em;
  font-weight: bold;
  border: none;
  position: relative;
  isolation: isolate;
  transition: all 0.4s;
  overflow: hidden;
  font-size: 20px;
  line-height: 1.3;
  padding: 11px 39px;
}
.button:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--buttonBackground);
  z-index: -2;
}
.button:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--buttonBackgroundHover);
  z-index: -1;
  transition: all 0.4s;
}
.button:hover:after,
.button:focus:after {
  width: 100%;
}
.buttonSmall {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  color: var(--buttonColor);
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.015em;
  font-weight: bold;
  border: none;
  position: relative;
  isolation: isolate;
  transition: all 0.4s;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.3125;
  padding: 7px 25px;
}
.buttonSmall:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--buttonBackground);
  z-index: -2;
}
.buttonSmall:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--buttonBackgroundHover);
  z-index: -1;
  transition: all 0.4s;
}
.buttonSmall:hover:after,
.buttonSmall:focus:after {
  width: 100%;
}
#home {
  height: 57px;
}
.container--head {
  padding: 34px 171px 34px 40px;
}
/*# sourceMappingURL=./screen-large.css.map */