body, html {
  padding:0;
  margin:0;
  height:100%;
  font-family: 'Roboto', sans-serif;
 
}

article, aside, footer, header, hgroup, nav, section {
  display: block;
}

p {
  line-height:24px;
}
.header {
  background:#aa272f;
  min-height: 100px;
  display: block;
  position: fixed;
  padding:10px;
  top:0;
  width:100%;
  z-index: 1;
  transition: 0.3s;
}
.sm-header {
  background:#aa272f;
  min-height: 50px;
  display: block;
  position: fixed;
  padding:10px;
  top:0;
  height:50px;
  width:100%;
  z-index: 1;
  transition: 0.3s;
}
.logo {
  position: relative;
  top:12px;
  width:120px;
  transition:0.3s;
}
.sm-logo {
  position: relative;
  top:0px;
  width:80px;
  transition:0.3s;
}
.logo img {
  width:100%;
  transition:2s;
}
.sm-logo img {
  width:100%;
  transition:2s;
}

.nav {
  position: absolute;
  right:10px;
  top:20px;
  transition: 0.3s;
}
.nav ul li {
  border-radius: 4px;
  background-color: #0088CE;
  border: none;
  color: #FFFFFF;
  text-align: center;
  min-width: 80px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 0 5px;
  padding:10px 20px;
  list-style: none; 
}

.nav ul li a {
  color:#fff;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-size: 18px;
  outline:none;
}
.nav ul li a:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.nav ul li:hover a {
  padding-right: 25px;
}
.nav ul li:hover a:after {
  opacity: 1;
  right: 0;
}

.body-content {
  position: relative;
  min-height: 100vh;
  top:120px;
}

.anchor-links ul li {
  list-style: none;
}

.anchor-links ul li a {
  color:#0088ce;
  font-weight: bold;
  text-decoration:none;
}

.anchor-links ol {
  padding-left:30px;
  list-style: decimal;
}

.anchor-links ol li {

  color:#0088ce;
  list-style: decimal;
}

.anchor-links ul li a:hover {
  color:#aa272f;
}
ul, ol {
  padding:10px 0;
  margin:0;
  list-style-position: inside;
}
.container {
  max-width:1200px;
  width:100%;
  margin:0 auto;
  min-height:100%;
  position:relative;
}

h1 {
  font-size:36px;
}
h1,h2 {
  color:#0088ce;
  font-weight: bold;
  padding:8px 0;
}

.sub-title {
  font-size:18px;
  font-weight: bold;
}

.source-code {
  background:#404545;
  color:#fff;
  padding:20px;
}
.footer {
  background:#aa272f;
  position: relative;
  width: 100%;
  height: 250px;
  margin-top:220px;
  padding:20px 0;
  font-size: 14px;
}

.clear {
  clear:both;
}

.footer-section {
  float:left;
  width:30%;
  padding:15px 10px;
  color:#fff;
  line-height: 24px;
}

.footer-section .title {
 
  font-weight: bold;
  display: block;
}
.logo-footer img {
  float:right;
  width:80px;
}

.img-center-full {
  width:100%;
}