.investments-section .investment-card {
    transition: all 0.3s ease-in-out;
}

.investments-section .investment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}


.investments-section .investment-card .investment-title {
    transition: all 0.3s ease-in-out;
}

.investments-section .investment-card:hover .investment-title {
    color: var(--primary-color) !important;
}

.investments-section .investment-card picture img {
    transition: all 0.3s ease-in-out;
}

.investments-section .investment-card:hover picture img {
    transform: scale(1.05);
}
