

.gallery{
   
    background:#ffffff;
    padding-bottom: 1px;
}

.gallery .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    
    list-style: none;
}

.gallery .controls .buttons{
    height:100%;
    width: 140px;
    background:#fff;
    color:#666;
    font-size: 13px;
    line-height: 40px;
    cursor: pointer;
    margin:20px;
    box-shadow: 5px 6px 5px #3a3a3a;
    text-align: center;
    
}

.gallery .controls .buttons.active{
    background:5px 6px 5px #ffffff;
    box-shadow: 0 6px 5px rgba(0,0,0,.3);
    color:#000000;
}

.gallery .image-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .image-container .image{
    height:300px;
    width: auto;
    overflow: hidden;
    border:15px solid #fff;
    box-shadow: 5px 6px 5px #3a3a3a;
    margin: 20px;
}

.gallery .image-container .image img{
    height: 100%;
    width:100%;
    object-fit: cover;
}

.gallery .image-container .image:hover img{
    transform: scale(1.1);
}