.cities
{
    text-align: center;
    width: 100vw;
    margin-left: -moz-calc(50% - 50vw);
    margin-left: -webkit-calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.cities .city
{
    display: inline-block;
    width: 33.33%;
    margin: 0;
    position: relative;
}

.cities .city .overlay
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(240,95,64,.95);
    opacity: 0;
    -webkit-transition: .5s ease;
    transition: .5s ease;

    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box;
}

.cities .city .overlay:hover
{
    opacity: 0.95;
}

.cities .city .overlay .t
{
    display: table;
    text-align: center;
    width: 100%;
    height: 100%;
}


.cities .city .overlay .t div
{
    display: table-cell;
    text-align: center;
    height: 100%;
    vertical-align: middle;
}


.cities .city .overlay div p.cityNameIntro
{
    font-size: 2em;
    color: white;
    text-transform: uppercase;
    margin-left: 2em;
    margin-right: 2em;
    font-weight: lighter;
    margin: auto;
}

.cities .city .overlay div p.cityNameIntro strong
{
    font-weight: lighter;
    text-align: center;
}

.cities .city .overlay .cityName
{
    text-transform: none;
    font-size: 3.0em;
    line-height: 1.2em;
    font-weight: normal;
    text-align: center;
    color: white;
}

div.accordionContainer
{
    text-align: center;
    margin-top: 6em;
    margin-bottom: 6em;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.9em;
}

a.accordionControl
{
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    text-align: center;
    border: none;
    outline: none;
    text-transform: uppercase;
    font-size: 2.5em;
    border-radius: 0.5em;
    -webkit-transition:  0.4s;
    -moz-transition:  0.4s;
    transition:  0.4s;
    text-decoration: none;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordionControl:hover {
    /*background-color: #ccc;*/
    color: #eb3812;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    margin-top: 2em;
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.2s ease-out;
    -moz-transition: max-height 0.2s ease-out;
    transition: max-height 0.2s ease-out;
}

/* Intermediary screen size */
/* Here, we just want to adjust the width of the page with the width of the screen */
@media all and (max-width: 1200px) and (min-width: 768px)
{
    .cities .city
    {
        width: 50%;
    }
}

/* For mobiles */
@media all and (max-width: 768px) 
{
   .cities .city
    {
        width: 100%;
    }
    
    div.accordionContainer
    {
        width: 90%;
    }
    
    a.accordionControl
    {
        font-size: 1.4em;
    }
}
