.current-investments {
    padding: 60px 0 60px;
    background-color: #F0F0F0;
}

.current-investments .block-title {
    padding-bottom: 50px;
}

.current-investments .current-investments-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 8px;
}

.current-investments .investment-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    width: calc(33.33333333% - 6px);
    height: auto;
    position: relative;
    padding: 56px 40px;
}

.current-investments .investment-single>* {
    position: relative;
    z-index: 1;
}

.current-investments .investment-single::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.40);
    transition: opacity .3s ease;
    opacity: 1;
    z-index: 0;
}

.current-investments .investment-single svg,
.current-investments .investment-single:hover::before {
    opacity: 0;
}

.current-investments .investment-single svg {
    transition: opacity .3s ease;
}

.current-investments a.investment-single:hover svg {
    opacity: 1;
}

/* .current-investments div.investment-single:hover::after {
    opacity: 1;
} */

@media (max-width:1199px) {
    .current-investments {
        padding: 60px 0;
    }
}

@media (max-width:991px) {
    .current-investments {
        padding: 46px 0 23px;
    }

    .current-investments .investment-single {
        padding: 28px 40px;
        justify-content: center;
    }

    .current-investments .block-title {
        padding-bottom: 8px;
    }
}

@media (max-width:768px) {

    .current-investments .investment-single {
        padding: 28px 40px;
        justify-content: center;
        width: 100%;
        aspect-ratio: 343 / 210;
    }

    .current-investments .investment-single::before {
        background-color: #0000004D;
        opacity: 1;
    }

    .current-investments .investment-logo img {
        max-height: 82px;
        width: auto;
    }

    .current-investments .investment-single svg {
        max-width: 56px;
    }

    .current-investments .investment-single svg,
    .current-investments .investment-single:hover::before {
        opacity: 1;
    }
}