@font-face {
    font-family: 'Lazzer';
    src: url('Lazzer-Medium.woff2') format('woff2'),
        url('Lazzer-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    background: #394532;
    position: relative;
    width: 100%;
    height: 100%;
    
    margin: 0;
    display: flex;
    justify-content: center;
    align-items:  center;
}

.wrapper {
    max-width: 1440px;
    max-height: 930px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.center-wrapper {
    position: relative;
    z-index: 3;
    width: 100% ;
    height: 100% !important;
    pointer-events:  none;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 1920px;
    width: 150% !important;
    z-index: 4;
}
.text-wrapper {
    
    width: calc(100% - 64px);
    margin:  0 auto;
    display: block;
    height: 100%;
    position: fixed;
    top: 32px;
    left: 32px;
    z-index: 4;

}

.text, a, a:focus, a:visited {
    font-family: 'Lazzer', Helvetica, sans-serif;
    
    line-height: 1.3;
    letter-spacing:  0.5;
    color:  white;
}

.address {
    position: absolute;
    font-size: 14px;
    top:  0;
    right:  0;
    z-index: 5;
}
.name {
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}
.img-wrapper {
    position: absolute;
    top:  32px;
    left:  50%;
    transform:  translate3D(-50%,0, 0);
    z-index: 1;
    width: 100%;
    max-width: 570px;
    overflow: hidden;
}
.image-desktop {
    position: relative;
  -webkit-animation: wabern 3s ease infinite;
  -moz-animation: wabern 3s ease infinite;
  -o-animation: wabern 3s ease infinite;
  -ms-animation: wabern 3s ease infinite;
  animation: wabern 3s ease infinite;
}



@-webkit-keyframes wabern {
  0%, 100% { -webkit-transform: scale(1); }
  50% { -webkit-transform: scale(1.1); }
}
@-moz-keyframes wabern {
  0%, 100% { -moz-transform: scale(1); }
  50% { -moz-transform: scale(1.1); }
}
@-o-keyframes wabern {
  0%, 100% { -o-transform: scale(1); }
  50% { -o-transform: scale(1.1); }
}
@-ms-keyframes wabern {
  0%, 100% { -ms-transform: scale(1); }
  50% { -ms-transform: scale(1.1); }
}


.image-mobile {
    display: none;
    position: fixed;
    top:  50%;
    left:  50%;
    transform:  translate3D(-50%,-50%, 0);
    z-index: 1;
    width: 100%;
    max-width: 680px;
}

#playsound {
    position: fixed;
    bottom:  32px;
    right:  32px;
    z-index: 11;
}
#stopsound {
    position: fixed;
    bottom:  32px;
    right:  32px;
    z-index: 11;
}
.is_hidden {
    opacity: 0;
    pointer-events:  none;
}
.play, .stop {
    transition:  transform 0.2s ease-in;
}
.play:hover, .stop:hover {
    transform:  scale(1.15);
}

@media all and (min-width: 1920px) {
.address {
    font-size: 20px;
}
.name {
    font-size: 24px;
}
}
@media all and (max-width: 768px) {
    .image-desktop, .image-mobile {
        /*max-width: 320px;*/
    }

    .logo {
        position: absolute;
        width: 150% !important;
        top: -30px;
        height:  710px !important;
    }


    .text-wrapper {
        position: absolute;
    }
    .image-desktop {
        width: 100%;
    }

    .img-wrapper {
        left:  32px;
        right:  32px;
        top:  50%;
        transform:  translate3D(0,-50%, 0);
        width:  calc(100% - 64px);
        
        
    }
    #playsound {
        right:  32px;
    }

/*
    .image-desktop {
        display: none;
    }

    .image-mobile {
        display: block;
    }
*/
    .name {
        left: 0;
        top:  0;
    }
    .address {
        right:  auto;
        left:  0;
        bottom:  62px;
        top:  auto;
    }
}