/* CITIES COMPONENT - WHY RTBHOUSE
--------------------------- */
#cities-component {
    text-align: left;
    margin-bottom: 20px;
}

#cities-component .cities-component-item {
    position: relative;
    display: inline-block;
    width: 33.3333%;
    vertical-align: top;
    margin-bottom: -6px;
    overflow: hidden;
}

@media screen and (max-width: 1000px) {
    #cities-component .cities-component-item {
        width: 50%;
    }
}

@media screen and (max-width: 690px) {
    #cities-component .cities-component-item {
        width: 100%;
    }
}

#cities-component .cities-component-item:hover .cities-component-item__img--color {
    opacity: 1;
    filter: alpha(opacity=100);
}

#cities-component .cities-component-item__name {
    position: absolute;
    font-family: 'OpenSansSemiBold', sans-serif;
    z-index: 10;
    top: 15%;
    right: 0;
    color: #EFEFEF;
    background-color: #808080;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 10px;
    -webkit-transition: color .5s ease, background-color .5s ease;
       -moz-transition: color .5s ease, background-color .5s ease;
         -o-transition: color .5s ease, background-color .5s ease;
            transition: color .5s ease, background-color .5s ease;
}

#cities-component .cities-component-item:hover .cities-component-item__name {
    color: #fff;
    background-color: #EF4136;
}

#cities-component .cities-component-item__img {
    z-index: 5;
}

#cities-component .cities-component-item__img--grey {
}

#cities-component .cities-component-item__img--color {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: opacity .5s ease;
       -moz-transition: opacity .5s ease;
         -o-transition: opacity .5s ease;
            transition: opacity .5s ease;
}