.contact-card--wrapper {
    height: 350px
}
.contact-card {
    color: #fff;
    font-weight: 400;
    height: 70%;
    position: relative;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden
}
.contact-card.clicked-show-details .contact-card--details {
    opacity: 1;
    visibility: visible;
    top: 0
}
.contact-card .contact-card--content-link:hover .contact-card--details {
    opacity: 1;
    visibility: visible;
    top: 0
}
.is-touch-device .contact-card--content {
    top: 25%
}
.is-touch-device .contact-card .contact-card--details {
    opacity: 1;
    visibility: visible;
    top: 50%;
    height: 50%;
    padding: 10px;
    font-size: 14px
}
.is-touch-device .contact-card .contact-card--city {
    font-size: 22px
}
.is-touch-device .contact-card .contact-card--button {
    font-size: 12px;
    padding: 8px 10px
}
.is-touch-device .contact-card .contact-card--details-close {
    display: none
}
.is-touch-device .contact-card .contact-card--content-link {
    cursor: default
}
.is-touch-device .contact-card.show-details .contact-card--details {
    opacity: 1;
    visibility: visible;
    top: 0
}
.is-touch-device .contact-card--details-inner {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none
}
.contact-card--content {
    z-index: 2;
    left: 10px;
    right: 10px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}
.contact-card--content-link {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 3;
    cursor: pointer
}
.contact-card--city {
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.contact-card--city::-moz-selection {
    background: transparent
}
.contact-card--city::selection {
    background: transparent
}
.contact-card--city span {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block
}
.contact-card--city span::-moz-selection {
    color: transparent
}
.contact-card--city span::selection {
    color: transparent
}
.contact-card--city span:before {
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -45px;
    content: '';
    height: 1px;
    background: #fff;
    width: 90px
}
.contact-card--city span:after {
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -45px;
    content: '';
    height: 1px;
    background: #fff;
    width: 90px
}
.contact-card--details-close {
    position: absolute;
    z-index: 9999;
    top: 0px;
    right: 5px;
    height: 20px;
    width: 20px;
    line-height: 1;
    color: #fff;
    font-size: 30px;
    display: block
}
.contact-card--details-close:hover {
    color: #fff
}
.contact-card--details {
    text-align: center;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    height: 100%;
    background: #032d5c;
    background: rgba(186, 140, 44, 0.75);
    color: #fff;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 4;
    padding: 80px 30px 0
}
.contact-card--details p, .contact-card--details span {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.contact-card--details p::-moz-selection, .contact-card--details span::-moz-selection {
    background: transparent
}
.contact-card--details p::selection, .contact-card--details span::selection {
    background: transparent
}
.contact-card--details-inner {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}
.contact-card--button {
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 10px 15px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}
.contact-card--button+.contact-card--button {
    margin: 0 0 0 10px
}
.contact-card--button:hover {
    background: #bd9135;
    border: 2px solid #bd9135;
}
.contact-card--overlay {
    display: none;
    background: #0b2b57;
    background: rgba(11, 43, 87, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}
