@import '/css/reset.css';
@import '/css/global.css';

@import './components/hero-title/hero-title.css';
@import './components/section-intro/section-intro.css';
@import './components/list-cases/list-cases.css';

.button-anchor {
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background-color: #2d8c55;
  border-radius: 6px;

  padding: 6px 12px;
  min-height: 45px;
  margin-inline: auto;
  margin-top: 30px;

  transition: background-color 150ms;
}
.button-anchor--secondary {
  background-color: #ffffff;
  color: #2d8c55;
}
@media (hover: hover) and (pointer: fine) {
  .button-anchor:hover {
    background-color: #247144;
  }
  .button-anchor--secondary:hover {
    background-color: rgba(255, 255, 255, 0.75);
  }
}
