.cities-container {
    background-color: black;
    background: url("https://images.pexels.com/photos/4391470/pexels-photo-4391470.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 250px;
    color: white;
}

.cities-container-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    z-index: 0;
    backdrop-filter: blur(3px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.icon-circle {
    transition: all 0.3s ease;

}

.icon-circle:hover {
    transform: translateY(-5px) scale(1.1);


}