.title img {
    height: 10em;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    transform-origin: right;
    transform: rotate(-35deg);
}
.impress {
    position: fixed;
    bottom: -100%;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, .5);
    transition: all .5s ease-in-out;
}

.impress.open {
    bottom: 0;
}

.impress .impress-content {
    position: absolute;
    overflow-y: auto;
    background: #272833;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    padding: 1em;
}

.impress .impress-content h1 {
    font-size: 2em;
}
.impress .impress-content h2 {
    margin: 1em 0;
}
.impress .impress-content .address p {
    margin: 0 0 0 0;
}
.impress .impress-content .btn-close {

    position: absolute;
    right: 0;
    top:0;
    width: 3em;
    height: 3em;
    margin: 1em;
    background: #ddd;
    border-radius: 5px;
    cursor: pointer;
}
.impress .impress-content .btn-close:before,
.impress .impress-content .btn-close:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    top: 50%;
    border-radius: 5px;
    background-color: #272833;
    z-index: 1;
}
.impress .impress-content .btn-close:before {
        transform: translateY(-50%) rotate(45deg);
}
.impress .impress-content .btn-close:after {
        transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 736px){
    .impress .impress-content {
        width: 100%;
        height: 100%;
        margin-top: 44px;
    }
}