.ai-buttons-block {
  margin: 20px 0;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.ai-title {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
  color: #7A7A7A;
}

.ai-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ai-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(25% - 12px);
  height: 48px;
  padding: 11px 31px;
  border: 1px solid #abcf39;
  border-radius: 8px;
  text-decoration: none;
  background: #ffffff;
  color: #7A7A7A;
  font-weight: 500;
  transition: all 0.14s ease-in-out;
}

.ai-btn img {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.ai-btn:hover {
  background: #7d962a;
  border-color: #7d962a;
  color: white;
}
@media (min-width: 992px) {
    .ai-btn {
        height: 2.5vw;
        padding: 0.5729vw 1.61458vw;
    }

    .ai-btn img {
        width: 1.25vw;
        height: 1.25vw;
    }
}
@media (max-width: 768px) {
  .ai-btn {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 600px) {
  .ai-btn {
    width: calc(50% - 12px);
    margin-bottom: 12px;
  }
}