
/* PUSH MENU */
#menu-switch{
  display:none;
}
#menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    padding: 50px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    text-align: center;
    background-color: #fff;
    z-index: 111;
    overflow-y: scroll;
    padding-top: 10px;
}
#menu .brand {
    /* height: 51px; */
    font-size: 20px;
    font-weight: 900;
    line-height: .6;
    color: #000;
    text-align: left;
}
#menu ul {
    padding: 0;
    margin-top: 15px;
    list-style-type: none;
    float: left;
    width: 100%;
    border-bottom: solid 1px #f7f7f7;
    /* padding-bottom: 25px; */
    /* padding-top: 25px; */
}

#menu ul li a {
    display: block;
    font-weight: 500;
    line-height: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    text-decoration: none;
    text-transform: uppercase;
    color: #232629;
    border-top: 1px solid #eee;
    list-style-type: none;
    text-align: left;
}
#menu ul li:last-child a {
    border-bottom: 1px solid #eee;
}
#menu ul li a:hover {
    letter-spacing: 1px;
}
#menu-switch:checked ~ #menu {
    left: 0;
}
/* MAIN PAGE */
.page-wrap {
   /* padding: 50px; */
   /* -webkit-box-sizing: border-box; */
   -moz-box-sizing: border-box;
   box-sizing: border-box;
   -webkit-transition: all .3s ease-in;
   -moz-transition: all .3s ease-in;
   -o-transition: all .3s ease-in;
   transition: all .3s ease-in;
   /* margin-top: -65px; */
   padding-right: 15px;
}
#menu-switch:checked ~ .page-wrap {
    margin-left: 300px;
}

/* MENU TOGGLE ICON */
#menu-toggle:focus {
    outline: none;
}
#menu-toggle {
    display:inline-block;
    position: relative;
    width: 148px;
    height: 43px;
    cursor: pointer;
    border: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: #fff;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    background: #272829;
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 41px;
    float: right;
    /* margin-top: -130px; */
}
#menu-toggle:before,
#menu-toggle:after {
    position: absolute;
    /* content: ""; */
    /* background-color: #232629; */
}

#menu-toggle:before {
    top: 12px;
    left: 25px;

    width: 1px;
    height: 27px;
}
#menu-toggle:after {
    top: 25px;
    left: 12px;

    width: 27px;
    height: 1px;
}

#menu-switch:checked ~ .page-wrap #menu-toggle {
    /* -webkit-transform: rotate(45deg); */
    -ms-transform: rotate(45deg);
    /* transform: rotate(45deg); */
    background: #321950;
}
/* CONTENT CONTAINER */
.container {
    /* max-width: 600px; */
    /* min-width: 200px; */
    /* margin: 0 auto; */
}

p{
  /* text-decoration:line-through; */
}

a{
  /* font-size: .5em; */
}
