

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  display: none; /* Hide columns by default */
}

/* Clear floats after rows */
.row:after {
  content: "";
  display: table;
  clear: both;
}



/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn2 {

  outline: 5;
  cursor: pointer;
	background: #23282d;
  border: 1px;
  border-radius: 1px;
  padding: 12px 10px 10px 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  transition: 350ms;
  font-size: 11px;




}

/* Add a grey background color on mouse-over */
.btn2:hover {
  background-color: #EF840D;
}

/* Add a dark background color to the active button */
.btn2.active {
  background-color: #666;
   color: white;
}