.federal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}

.federal__item {
  background-color: var(--bg-gray);
  border-radius: 30px;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
  min-height: 360px;
}

.federal__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
}

.federal__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.03em;
  margin-top: 20px;
}

.federal__buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.button.federal__button {
  padding: 16px 25px;
  display: flex;
  gap: 5px;
  align-items: flex-end;
}

.life .filter__link {
  display: inline-block;
}

@media screen and (max-width: 1419px) {
  .federal__content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1023px) {
  .federal__content {
    margin-top: 40px;
  }
}

@media screen and (max-width: 748px) {
  .federal__buttons {
    flex-direction: column;
    justify-content: center;
  }
  .button.federal__button {
    width: 100%;
    justify-content: center;
  }
  .federal__title {
    font-size: 26px;
    line-height: 30px;
  }
  .federal__item {
    padding: 40px;
    gap: 40px;
  }
  .federal__content {
    gap: 20px;
  }
}