.invest-wrapper{
padding:30px 40px;
}

.invest-title{
font-size:14px;
font-weight:bold;
letter-spacing:1px;
margin-bottom:20px;
text-transform:uppercase;
border-top:2px solid #ddd;
padding-top:10px;
}

.invest-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.invest-item img{
width:100%;
height:160px;
object-fit:cover;
margin-bottom:10px;
}



.invest-item img{
width:100%;
height:160px;
object-fit:cover;
margin-bottom:10px;
transition:0.3s;
}

.invest-item:hover img{
transform:scale(1.05);
}





.invest-item h3{
font-size:18px;
line-height:1.3;
color:#111;
}

.invest-item a{
text-decoration:none;
color:#111;
}



.invest-item h3{
font-size:18px;
line-height:1.3;
color:#111;
transition:0.3s;
}

.invest-item a:hover h3{
color:#d40000;
}



@media (max-width:768px){

.invest-wrapper{
padding:20px;
}

.invest-grid{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.invest-item img{
height:120px;
}

.invest-item h3{
font-size:15px;
}

}