.ronny__menu-wrapper {
    padding: 50px 0;
    position: relative;
    z-index: 10;
}

.ronny__menu-items {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 991px;
    margin: 0 auto;

}

.ronny__menu-item {
    width: calc(50% - 25px);
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    padding: 25px;
    min-width: 450px;
    border: 1px solid white;
    overflow: hidden;
    box-shadow: 0 0 4px #ffffff;
}

@media(max-width: 500px) {
    .ronny__menu-item {
        min-width: 300px;
        gap: 15px;
        padding: 15px;
    }
}

.ronny__menu-item_mod-center {
    text-align: center;
    justify-content: center;
}
.ronny__menu-item:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    content: '';
}

.ronny__menu-item:hover {
    box-shadow: 0 0 5px #dbdc2b;
    border-color: #dbdc2b;
}
.ronny__menu-item:hover:before {
    background-color: rgba(0, 0, 0, 0.2);
    transition: all .2s linear;
}

.ronny__menu-item > * {
    position: relative;
    z-index: 2;
}
.ronny__menu-item_logo {
    font-size: 0;
    line-height: 0;
}

.ronny__menu-item_label {
    font-family: 'Benzin';
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.ronny__menu-item_title {
    padding-top: 4px;
    line-height: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
    font-family: 'Benzin';
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: unset;
}

.ronny__menu-item:hover .ronny__menu-item_title {
    color: #dbdc2b;
}

.ronny__menu-item_text {
    font-family: 'Fugue';
    font-weight: 400;
    font-size: var(--body-text);
    line-height: 1.6;
}

.ronny__menu-item_link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
}