.section-values {
    position: relative;
    overflow: hidden;
    text-align: center;
    .container {
        img {
            /* max-width: 800px; */
        }
    }
}

.dropdown-hover {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    display: none;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

.dropdown-menu-custom li {
    list-style: none;
}

.dropdown-menu-custom a {
    display: block;
    padding: 8px 16px;
    color: #000;
    text-decoration: none;
}

.dropdown-menu-custom a:hover {
    background: #f5f5f5;
}

/* hover trigger */
.dropdown-hover:hover .dropdown-menu-custom {
    display: block;
}