/* === === === Button === === === */

.Button {
  position: relative;
  display: table;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  transition: background 250ms ease-in-out;
}

@media screen and (min-width: 601px) {

.Button {
    font-size: 1.125rem;
}
  }

a.Button {
  cursor: pointer;
}

.Button + .Button {
  margin-top: 10px;
}

.Button > svg {
  width: 18px;
  height: 16px;
  margin-right: 10px;
  margin-bottom: -2px;
  fill: #ffffff;
}

.Button-arrow {
  margin-left: 8px;
}

.Button--orange {
  background-color: var(--clr-orange);
  color: #ffffff;
}

.Button--white {
  background-color: #ffffff;
  color: var(--clr-blue);
}

.Button--blue {
  background-color: var(--clr-blue);
  color: #ffffff;
}

.Button--left {
  display: table;
  margin-right: auto;
}

.Button--center {
  display: table;
  margin-right: auto;
  margin-left: auto;
}

.Button--right {
  display: table;
  margin-left: auto;
}
