/* ==========================================================================
   HTML
   ========================================================================== */
html, body{
  min-height: 100%;
}

.center-child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}



/* ==========================================================================
   Typography
   ========================================================================== */

/* Text */
body {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: #2b2a29;
}
p {
  margin-bottom: 30px;
}
b,
strong {
  font-weight: bold;
}
.font-18 {
  font-size: 18px;
}
/* Headlines */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  font-style: normal;

}
h1 {
  font-size: 24px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 18px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 12px;
}
h6 {
  font-size: 12px;
}
/* Links */
a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  font-weight: normal;
  text-decoration: underline;
}
a:hover,
a:focus {
  color: #fff;
  text-decoration: none;
}
p a {
  color: #2b2a29;
}
p a:hover,
p a:focus {
  color: #d12023;
  text-decoration: underline;
}
/* label */
.label {
  display: inline-block;
  width: 50px;
  padding: 0;
  font-size: 1em;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-align: inherit;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0;
}
/* Buttons */
/* ==========================================================================
   Layout
   ========================================================================== */
img,
video {
  max-width: 100%;
  height: auto;
}
iframe {
  max-width: 100%;
}
section .container {
  max-width: 630px;
}
/* ==========================================================================
   Background
   ========================================================================== */
body {
  background: #fcfcfc;
  background: -moz-linear-gradient(-45deg, #fcfcfc 0%, #dbdbdb 100%);
  background: -webkit-linear-gradient(-45deg, #fcfcfc 0%,#dbdbdb 100%);
  background: linear-gradient(135deg, #fcfcfc 0%,#dbdbdb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#dbdbdb',GradientType=1 );
}
/* ==========================================================================
   Logo
   ========================================================================== */
#logo{
  margin: 4em auto;
}

/* ==========================================================================
   Title
   ========================================================================== */

#title{
  margin: 4em auto 2em;
}


/* ==========================================================================
   Content
   ========================================================================== */

#content .container .inner{
  background-color: #fff;
  padding: 30px;
  padding-bottom: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
#footer {
  padding: 10px 0;
  margin-top: 10px;
}
.footer-menu {
  margin: 0;
  padding: 0;
}
.footer-menu li {
  list-style: none;
  display: inline-block;
  line-height: 1;
  margin-left: -4px;
}
.footer-menu li a {
  display: block;
  border-right: 1px solid #2b2a29;
  padding: 0 10px;
  color: #2b2a29;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-menu li a:hover,
.footer-menu li a:focus {
  color: #d12023;
  text-decoration: none;
}
.footer-menu li.active a {
  color: #d12023;
}
.footer-menu li:first-child {
  margin-left: 0;
}
.footer-menu li:first-child a {
  padding-left: 0;
}
.footer-menu li:last-child a {
  border-right: none;
  padding-right: 0;
}
