#budget {
  background: var(--budget-bg);
}

#budget .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-top: 42px;
  padding-bottom: 49px;
}

#budget .content strong {
  font-size: 22px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
}

#budget .content a {
  background: var(--budget-contact-link);
  color: var(--budget-contact-text);
  position: relative;
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 600;
  padding: 19px 24px 20px;
  text-align: center;
  cursor: pointer;
  line-height: normal;
  letter-spacing: 1px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .2s;
}

#budget .content a:hover {
  opacity: 0.8;
  transition: all .2s;
}

@media (max-width: 768px) {
  #budget .content {
    flex-direction: column;
    text-align: center;
    gap: 26px;
  }
}