*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background: #fbfbfb;
    font-family: 'Roboto', sans-serif;
}
nav{
    height:90px;
    width:100%;
    box-shadow: 1px 2px 6px 0px #d4d4d4;
    margin-bottom: 2em;
    background: #fff;
}
.restaurant-name{
    margin-bottom: 2em;
    font-weight: 400;
    font-size: 1em;
    margin-left: 1.5em;
}

.logo{
    height: 82px;
}
.card{
    border:1px solid #d4d4d4;
    background: #fff;
    border-radius: 4px;
    padding:10px;
    margin-bottom:10px;
    height:95px;
    width:100%;
}
.card .title{
    color:rgb(27, 26, 26);
    font-weight:700;
    text-transform: capitalize;
}
.card .description{
    font-size: 14px;
    color: grey;
}
.card .price{
    font-weight: 400;
}

.flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
section{
    border-bottom: 1px solid #e3e3e3;
    margin:0 1em;
}
.section-header{
    display: flex;
    justify-content: space-between;
    padding:10px;
    cursor: pointer;
}
.section-header h1{
    text-transform: uppercase;
}
.section-header button{
    background: transparent;
    border: 0;
    font-size: 1em;
}

.hide{
    display: none;
}
.rotate{
    -moz-transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    transition:all 0.4s linear;
}

.rotate.down{
    -ms-transform:rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}