.button {
  font-family: "Mukta", sans-serif;
  display: inline-block;
  padding: 20px;
  box-sizing: border-box;
  cursor: pointer;
  border: none;
  color: white;
  font-size: 24px;
  line-height: 20px;
  transition: background-color .2s ease-in-out;
  background-color: #e27600; }
  @media (min-width: 651px) and (max-width: 1024px) {
    .button {
      padding: 15px; } }
  .button:focus {
    outline: none; }
  .button:hover {
    background-color: rgba(226, 118, 0, 0.8); }

.button--small {
  font-size: 20px; }

.button--map {
  padding: 15px; }
