/*
#portfolio {  
    margin: 1rem 0;
    -webkit-column-count: 3; 
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-column-width: 33.33333333333333%;
    -moz-column-width: 33.33333333333333%;
    column-width: 33.33333333333333%;
}

.filter-btn{
  text-align: center;
}


.tile { 
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;

}
.tile:hover { 

}

.scale-anm {
  transform: scale(1);
}



.tile img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  
}

.btn {
    font-size: 1rem;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    line-height: normal;
    padding: .5rem 1rem;
    margin: 0;
    height: auto;
    border: 1px solid;
    vertical-align: middle;
    -webkit-appearance: none;
    color: #555;
    background-color: rgba(0, 0, 0, 0);
    font-family: "Pathway Gothic One", sans-serif;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus {
  outline: none;
  border-color: var(--darken-2);
  box-shadow: 0 0 0 3px var(--darken-3);
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}
*/



.filter a {
    padding: 10px 20px;
    display: inline-block;
    color: #003;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #1dc2f8;
    color: #1dc2f8;
    transition: 0.2s ease-in-out;
}

.filter a:hover { background: #1dc2f8;color:#fff; }

.filter {
  text-align: center;
  margin-bottom: 10px;

}

.gallery a img {
  width: 100%;
  height: auto;
  float: left;
}

.pop{
  position: absolute;
  top:0;
}

.gallery a {
    width: 16%;
    transition: all 0.2s;
    display: block;
    float: left;
    opacity: 1;
    height: auto;
    border: 4px solid #fff;
    box-shadow: 0px 0px 4px #ccc;
    overflow: hidden;
    height: 150px;
    background: #fff;
}
.gallery .hide, .gallery .pophide {
  width: 0%;
  opacity: 0;
  transition: all 0.1s;
}

.gallery .pop {
    width: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0px 1000px rgba(0,0,0,0.5);
}


.pop:after {
  content: "\00D7";
  position: absolute;
  top: 10px;
  right: 10px;
  color: #333;
  background: #fff;
  padding: 10px 15px;
  border-radius: 50%;
  opacity: 0.5;
  transition: 0.2s ease-in-out;
}

.pop:hover:after { opacity: 1 }


.boxed label {
    display: inline-block;
    width: 30px;
    height: 40px;
    text-align: center;
    border: solid 1px #ccc;
    transition: all 0.3s;
    font-size: 12px;
    line-height: 40px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 10px;
}

.boxed input[type="radio"] {
  display: none;
}

.boxed input[type="radio"]:checked + label {
  background: #1dc2f8;
  border: solid 1px #1dc2f8;
  color:#fff;
}