.services__item-icon {
    display: flex;
}

.services__item-icon img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.city__selector {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.city__list-dropdown {
    position: absolute;
    top: 100%;
    opacity: 0;
    visibility: hidden;
}

.city__selector._active .city__list-dropdown{
    opacity: 1;
    visibility: visible;
    z-index: 1;
    width: 100%;
    left: 0;
    border: 2px solid rgba(26, 63, 108, .25);
    
}

.city__name {
    padding:0;
}

.city__name a {
    display: block;
    padding:10px;
}

@media (max-width: 1024px) {
    .city__catalog {
        flex-direction: column;
    }
    
    .city__catalog .col-6 {
        width: 100%;
    }
}