@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}



/* Center website */
.main {
  max-width: 1366px;
  margin: auto;
}


.row {
  margin: 10px -16px;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 0px;
}

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

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

/* Content */
.content {
  background-color: transparent;
  padding: 2px;
}

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

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  color:black;
  cursor: pointer;
}

.btn:hover {
  background-color: #5b7742;
}

.btn.active {
  background-color: #5b7742;
  color: white;
}

