.custom-hr {
  position: relative;
  height: 3px;
  background-color: var(--colorGrayLines);
  border: none;
  margin: 20px 0;
}

.custom-hr::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  max-width: 450px;
  height: 100%;
  background-color: var(--colorPrimary);
}

a,
button {
  text-wrap: nowrap;
  border: none;
  background: none;
}

button {
  background: none;
}
button:hover {
  cursor: pointer;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
button {
  position: relative;
  text-decoration: none;
  line-height: inherit;
  font-weight: inherit;
  text-transform: inherit;
}

.shadow-light {
  box-shadow: 0 4px 5px rgba(38, 50, 56, 0.2);
}
