@import url('https://fonts.googleapis.com/css?family=Lato');
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v15/S6uyw4BMUTPHjxAwXjeu.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v15/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.material-icons
{
  font-size:24px;
  margin-right:12px;
  vertical-align:text-bottom;
}

.menu
{
  background:#fff;
  color:#000;
  height:0px;
  position:fixed;
  z-index:500;
  right: 0px;
    top: 0px;
	width:100%;
	-webkit-transition: all 400ms ease out;
  transition: all 400ms ease-out;
}

.menu .title
{
  font-size:30px;
  font-weight:bold;
  line-height:50px;
  padding:0 20px;
  text-transform:none;
}

.menu nav
{
  background:inherit;
  font-size:16px;
  font-weight:bold;
  height:0;
  position:relative;
 
  margin-left: 0px;
    background-color: #fff;
  overflow:hidden;
  text-transform:none;
  transition:height .2s;
  width:100%;
  -webkit-transition: all 400ms ease out;
  transition: all 400ms ease-out;
}

.menu nav > *
{
  display:block;
  font-family: 'Bell Centennial Std Bd Listing';
  letter-spacing:1px;
  line-height:2.5;
  padding:0 20px;
  text-transform: lowercase;
  text-align: center;
  width:100%;
     color: #000;
    text-decoration: none;
	-webkit-transition: all 400ms ease out;
  transition: all 400ms ease-out;
}
.menu nav a:hover, .menu nav a.active{
	 color: #000;
    text-decoration: underline;
	-webkit-transition: all 400ms ease out;
  transition: all 400ms ease-out;
}
.menu nav input
{
  background:rgba(0,0,0,.2);
  border:none;
  color:#fff;
}

.menu .burger
{
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
  color:inherit;
  cursor:pointer;
  font-family:'Material Icons';
  font-size:30px;
  line-height:50px;
  margin:0;
  outline:0;
  padding:0;
  position:absolute;
  z-index:550;
  text-align:center;
  top:0;
  right:2px;
  height:50px;
  width:50px;
}

.menu .burger:before
{
  content:'';
  color:#fff;
  font-size:1px;
  padding:20px 25px;
  background-image:url(../images/baseline_menu_black_18dp.png);
  background-repeat:no-repeat;
  background-position:center;
  
}

.menu .burger:checked:before
{
  content:'';
   padding:20px 25px;
  background-image:url(../images/baseline_close_black_18dp.png);
  background-repeat:no-repeat;
  background-position:center;
}

.menu .burger:checked + nav
{
  height:calc(100vh);
   padding-top:40px;
}

.accueil .menu{
	display:none;
}