


.imalat .main {
  max-width: 1000px;
  margin: auto;
}

.imalat h1 {
  font-size: 50px;
  word-break: break-all;
}

.imalat .row {
  margin: 8px -16px;
}

/* Add padding BETWEEN each column (if you want) */
.imalat .row,
.imalat .row > .column {
  padding: 4px;
}

/* Create three equal columns that floats next to each other */
.imalat .column {
  
  float:left;
  width: 15%;
   
  display: none; /* Hide columns by default */
}

/* Clear floats after rows */
.imalat .row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.imalat .content {
  background-color: white;
  padding: 5px;
   
}



/* The "show" class is added to the filtered elements */
.imalat .show {
  display: block;
}

/* Style the buttons */
.imalat .btn {
    border: none;
    outline: none;
    margin-right: 5px;
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
    font-weight: 300;
    font-family: arial;
    font-size: 14px;
    padding: 7px 10px;
    background-color: #f8f9fa;
    margin: 5px;
    color: #6c757d;
}

/* Add a grey background color on mouse-over */
.imalat .btn:hover {
  background-color: #192437;
    color: white;
}

/* Add a dark background color to the active button */
.imalat .btn.active {
  background-color: #192437;
   color: white;
    
}

