/*
Theme Name: Americ Child
Theme URI: http://demo.bravisthemes.com/americ
Author: Bravis-Themes
Author URI: https://themeforest.net/user/bravis-themes
Description: Americ is a beautifully handcrafted, pixel perfect business consulting WordPress Theme based on Elementor Page Builder & designed with great attention to details, flexibility and performance. Americ has stunning styles and elements to help you make a professional website in no time.
Version: 1.0.0
License: ThemeForest
License URI: https://themeforest.net/licenses
Template: americ
Text Domain: americ-child
Tags: accountant, advertising, agency, business, company, consulting, corporate, creative, finance, financial, insurance, marketing, elementor, seo, startup
*/

.bf-project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
	padding:15px;
}

.bf-project-item{
    display:block;
    text-decoration:none;
    color:inherit;
}

.bf-project-image{
    overflow:hidden;
    aspect-ratio: 16 / 13;
}

.bf-project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}

.bf-project-item:hover .bf-project-image img{
    transform:scale(1.05);
}

.bf-project-content{
    padding-top:18px;
}

.bf-project-content h3{
    margin:0 0 8px;
    font-size:24px;
	color:#BC914C;
}

.bf-project-content span{
    font-size:14px;
}

@media(max-width:991px){
    .bf-project-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:575px){
    .bf-project-grid{
        grid-template-columns:1fr;
    }
}