
@media (min-width:768px) {
#portfoliobox {  

}
	.tile { 
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
	float:left;
	display: inline-block;
    width: 25%;
	padding: 10px;

}
	.tile img {
    max-width: 100%;
    width: 100%;
    height: auto;
	border-radius: 5px;
	float:left;
	display: inline-block;

}
	}

@media (max-width:768px) {
	#portfoliobox {  
}
	.tile { 
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
	float:left;
	display: inline-block;
    width: 50%;
	padding: 10px;

}
	.tile img {
    max-width: 100%;
    width: 100%;
    height: auto;
	border-radius: 5px;
	float:left;
	display: inline-block;

}
	
}


.tile:hover { 

}

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




.btn-gallery{
    font-family: Roboto;
    font-size: 1.3em;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    line-height: normal;
    padding: 10px 20px;
	border-radius: 5px;
    margin: 5px 2px;
    height: auto;
	border: none;
    vertical-align: middle;
    -webkit-appearance: none;
    color: #fff;
    background-color: #BC1C1B;
}

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

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

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

