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

.gallery .controls .buttons {
    background-color: #fff;
    color: #0e46ff;
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    font-family: sans-serif;
    line-height: 40px;
    cursor: pointer;
    padding: 2px 16px;
    margin: 8px;
    border: 2px solid #0e46ff;
    border-radius: 15px;
    text-align: center;
    transition: all .4s ease;
}

.gallery .controls .buttons:hover {
    background-color: #0e46ff;
    color: #ffffff;
}

.gallery .controls .buttons.active {
    background-color: #0e46ff;
    color: #ffffff;
}

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

.gallery .image-container .image {
    width: 350px;
    height: 300px;
    overflow: hidden;
    border: 12px solid #fff;
    box-shadow: 0px 0px 12px -2px gray;
    margin: 15px;
    transition: all .4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.gallery .image-container .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease;
}

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