@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500");

@font-face {
    font-family: 'Bebas Neue';
    src: url("fonts/bebasneue_bold-webfont.woff2") format("woff2"), url("fonts/bebasneue_bold-webfont.woff") format("woff");
    font-weight: bold;
    font-style: bold
}

@font-face {
    font-family: 'Bebas Neue';
    src: url("fonts/bebasneue_regular-webfont.woff2") format("woff2"), url("fonts/bebasneue_regular-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal
}

*:focus {
    outline: none
}

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

body {
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #282C34
}

a {
    text-decoration: none;
    color: #282C34
}

.btn {
    display: inline-block;
    margin: 0 10px;
    border-radius: 20px;
    padding: 10px 15px;
    min-width: 130px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
    z-index: 30
}

.btn--std {
    position: relative;
    z-index: 30;
    color: #282C34;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    transition: all .2s ease-in-out
}

.btn--std:hover {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3)
}

header {
    background: #FFFFFF;
    height: 100px;
    text-align: center;
    line-height: 100px
}

header img {
    height: 60px;
    vertical-align: middle
}

.container {
    display: flex;
    width: calc(100% - 30px);
    height: calc(100vh - 110px);
    margin: 0 10px 10px
}

.restaurant__wrapper {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.restaurant__wrapper:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #282C34;
    opacity: 0.3
}

.restaurant__wrapper.restaurant-01 {
    background-image: url(../img/picture--restaurant-01.png);
    margin-right: 10px;
}

.restaurant__wrapper.restaurant-02 {
    background-image: url(../img/picture--restaurant-02.png);
    margin: 0 10px
}

.restaurant__wrapper.restaurant-03 {
    background-image: url(../img/picture--restaurant-03.png)
}

.restaurant__wrapper h2 {
    font-family: 'Bebas Neue', serif;
    color: #FFFFFF;
    font-size: 30px;
    font-weight: normal;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    z-index: 30
}

footer {
    position: absolute;
    z-index: 30;
    bottom: 25px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    color: #FFFFFF
}

@media (max-width: 1000px) {
    .container {
        flex-wrap: wrap;
        width: calc(100% - 20px)
    }

    .restaurant__wrapper {
        flex: 0 0 100%;
    }

    .restaurant__wrapper.restaurant-02 {
        margin: 0 0 0 10px
    }

    .restaurant__wrapper.restaurant-03 {
        flex: 0 0 100%;
        margin-top: 10px
    }
}

@media screen and (max-width: 650px) {
    /* .restaurant__wrapper.restaurant-01 {
        margin: 0;
        flex: 0 0 100%
    }

    .restaurant__wrapper.restaurant-02 {
        margin: 10px 0;
        flex: 0 0 100%
    }

    .restaurant__wrapper.restaurant-03 {
        flex: 0 0 100%;
        margin-top: 0
    } */

    footer {
        position: initial;
        margin: 30px 0;
        color: #282C34;
        font-weight: 400
    }
}

@media screen and (max-width: 350px) {
    .btn {
        display: block;
        margin: 0
    }

    .btn:last-child {
        margin-top: 20px
    }
}