/*
Theme Name: Findme
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.project-grid__overlay-box p{
	margin: 0;
}

.project-grid__overlay-box {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgb(0 0 0 / 70%);
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    gap: 8px;
	opacity: 0;
	transition: all .3s ease;
}

.project-grid__box:hover .project-grid__overlay-box {
	opacity: 1;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}