/* @group Reset */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* @end */
html,
body {
  height: 100%;
}
body {
  background: url(/img/logo-photo.jpg) center no-repeat fixed #222;
  background-size: cover;
  color: #fff;
  font-family: "museo-sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  padding: 0 30px;
}
header,
section,
footer {
  padding: 50px;
  background: rgba(17, 17, 17, 0.9);
}
header,
section,
footer,
aside {
  margin: 30px auto;
  max-width: 500px;
  box-sizing: border-box;
}
img {
  width: 100%;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
a {
  color: #FF7201;
  text-decoration: none;
}
h2 {
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
}
p,
ul,
ol {
  margin: 15px 0 0;
}
p:first-child,
ul:first-child,
ol:first-child {
  margin: 0;
}
li {
  margin: 5px 0 0;
  list-style: square;
}
header {
  padding-top: 25px;
  text-align: center;
  color: #FF7201;
}
header p {
  font-weight: 700;
  font-size: 20px;
}
section img {
  margin: -60px 0 20px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}
aside {
  font-size: 22px;
  padding-left: 47px;
  border-left: 3px solid #FF7201;
  padding-right: 50px;
  display: block;
}
#contact li {
  list-style: none;
  position: relative;
  margin: 10px 0 0;
}
#contact li:before {
  content: url(/img/icons/tel.svg);
  vertical-align: middle;
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 10px;
}
#contact .email:before {
  content: url(/img/icons/email.svg);
}
#contact .loc:before {
  content: url(/img/icons/loc.svg);
}
#menu {
  position: fixed;
  width: 100px;
  top: 0;
  bottom: 0;
  left: 100%;
  background: rgba(17, 17, 17, 0.9);
  padding: 30px 20px;
  box-sizing: border-box;
}
#menu a {
  color: #FF7201;
  display: block;
  height: 60px;
  background: url(/img/icons/contact.svg) center no-repeat;
  background-size: 40px;
  text-indent: -999em;
}
#menu .intro {
  background-image: url(/img/icons/home.svg);
}
#menu .about {
  background-image: url(/img/icons/about.svg);
}
#menu .courses {
  background-image: url(/img/icons/courses.svg);
}
#menu .contact {
  background-image: url(/img/icons/tel.svg);
}
#menu #bttn {
  background-image: url(/img/icons/menu.svg);
  position: absolute;
  top: 30px;
  width: 60px;
  right: 100%;
  cursor: pointer;
}
#main,
#menu {
  transition: all 0.2s ease;
}
body.menu #main,
body.menu #menu {
  -webkit-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
}
@media only screen and (max-width: 620px) {
  #menu {
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    text-align: center;
    width: 100%;
    height: auto;
  }
  #menu a {
    height: 50px;
    width: 50px;
    display: inline-block;
    margin: 0 5px;
  }
  #menu #bttn {
    width: 50px;
    height: 50px;
    background: url(/img/icons/menu-h.svg) center no-repeat rgba(255, 114, 1, 0.9);
    background-size: 40px;
    border-radius: 25px;
    top: -60px;
    left: 50%;
    margin-left: -25px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  }
  body.menu #main {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  body.menu #menu {
    -webkit-transform: translateY(-90px);
    -ms-transform: translateY(-90px);
    transform: translateY(-90px);
  }
}
