.btn_gray,
.btn_border,
.btn_orange,
.btn_white,
.btn {
  display: inline-block;
  width: auto;
  font-weight: 700;
  text-align: center;
  padding: 13px 32px;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  cursor: pointer;
  background-color: transparent;
  /* min-width: 240px; */

  font-size: 18px;
  /* margin-top: var(--mar-32); */

  border-radius: 4px;
}
.btn_border::after,
.btn_orange::after,
.btn_white::after,
.btn::after {
  content: none;
}

.btn_border:hover,
.btn_orange:hover,
.btn_white:hover,
.btn:hover {
  scale: 1.05;
}

.btn_white {
  background-color: var(--white);
  color: var(--gray1);
}
.btn_orange {
  background-color: var(--orange);
  border-radius: 12px;
  color: var(--white);
}
/* .btn_border {
  border: 1px solid var(--red);
  background-color: var(--white);
  color: var(--red);
}
.btn_gray {
  padding: 8px 28px;
  border: 1px solid var(--gray7);
  color: var(--gray7);
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  font-weight: 400;
}
.btn_gray:hover {
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  border: 1px solid var(--gray7);
  color: var(--white);
  background-color: var(--gray7);
} */

@media (max-width: 768px) {
  .btn_border,
  .btn_red,
  .btn_white,
  .btn {
    width: 100%;
    min-width: 100%;
    font-size: 16px;
  }
}
