Gallery.css
/************* Gallery Page ************/




/* Pagination Styling - No Top Border*/
.et_pb_gallery .et_pb_gallery_pagination {
    border-top: 0px;
}

/* Active Pagination*/
.et_pb_filterable_portfolio .et_pb_portofolio_pagination ul li a.active, .et_pb_gallery .et_pb_gallery_pagination ul li a.active {
    color: #fff;
    background-color: #C7A17A;
    padding: 10px 16px;
    border-radius: 30px;
}

/* Default Pagination */
.et_pb_gallery .et_pb_gallery_pagination ul li a {
    color: #000;
    padding: 10px 16px;
    background-color: #f7f7f7;
    border-radius: 30px;
    font-weight: bold;
}

/* Center Align Pagination */
.et_pb_gallery .et_pb_gallery_pagination ul {
    text-align: center;
}

/* Gallery Hover Effect Rotate and Scale*/

/*Normal State*/
@media (min-width: 981px){
.et_pb_gallery_grid .et_pb_gallery_item img {
    transition: .5s ease-in-out;
}
}


/* Hover State */
@media (min-width: 981px){
.et_pb_gallery_grid .et_pb_gallery_item img:hover {
    transform: scale(1.3) rotate(-5deg);
    transition: .5s ease-in-out;
 }
}

