body{
    font-family: 'Open Sans', sans-serif;
    background: #e2e9fa !important;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    overflow-x: hidden;
}
h2{
    font-weight: 700px !important;
    font-size: 50px !important;
    margin: 0 0 20px;
    color: #ac2121;
    text-transform: uppercase;
    
}
.text-center{
    padding: 40px 0px 0px 0px;

}
ul{
    margin: 0;
    list-style-type: none;
}
#filter-list{
    display: inline-block;
    border: 1px solid #dddddd;
    border-radius: 28px;
    padding: 4px;
    margin: 0 0 55px;
}
#filter-list li{
    display: inline-block;
    font-size: 16px;
    color: #ac2121;
    text-transform: uppercase;
    line-height: 50px;
    text-align: center;
    border-radius: 25px;
    font-weight: bold;
    padding: 0 20px;
    min-width: 130px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
#filter-list li.active,
#filter-list li:hover{
    background-color: #53bff0;
    color: #fff;
}
.gallery-outer{
    width: 100%;
    float: left;
    height: auto;
    padding: 0 1px;

}
.gallery-items li{
    width: 25%;
    float: left;
    padding: 0 1px 2px;
}
.gallery-items li img{
    width: 100%;
    height: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.gallery-inner{
    width: 100;
    float: left;
    position: relative;
    overflow: hidden;

}
.gallery-overlay{
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    text-align: center;
    -webkit-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.gallery-overlay a{
    width: 60px;
    line-height: 60px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    color: #53bff0;
    font-size: 20px;
}
.gallery-overlay a:hover{
    background: #53bff0;
    color: #fff;

}
.gallery-items li:hover .gallery-overlay{
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);

} 
.gallery-items li:hover img{
   -webkit-transform:scale(1.2); 
   -ms-transform:scale(1.2); 
   -moz-transform:scale(1.2); 
   transform:scale(1.2); 

} 