/* 
TABLE of CONTENTS

- FONTS
- COLORS
	- main colors
	- greyscale
	- mixins (gradient, transition)
- GRID
- TYPOGRAPHY
- BASIC (basic styles, and basic elements)
	- categories
	- meta
	- share
- FORMS
- THEME SPECIFIC STYLES
	- HEADER
		- menu
		- sidemenu
	- FEATURED
	- ARTICLE-LIST
	- MORE POSTS 
	- ARCHIVE - TITLE
	- AUTHOR - TITLE
	- POSTS and PAGE
		- page
	- FOOTER
		- footer-sidebar
		- footer-social
		- footer-copyright
	- RESPONSIVE queries

*/
/* FONTS
****************************************************** */
/* COlORS
****************************************************** */
/* GRID
****************************************************** */
.left {
  float: left; }

.right {
  float: right; }

.relative {
  position: relative; }

.block {
  display: block; }

.max-width {
  max-width: 100%; }

.inner {
  padding: 1rem; }

.gutter-left {
  padding-left: 1.5rem; }

.gutter-right {
  padding-right: 1.5rem; }

.gutter-top {
  padding-top: 1.5rem; }

.gutter-bottom {
  padding-bottom: 1.5rem; }

.gutter-vertical {
  padding: 1.5rem 0; }

.gutter-horizonal {
  padding: 0 1.5rem; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.border-top {
  border-top: 1px solid #ddd; }

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto; }

.wrap {
  box-sizing: border-box;
  max-width: 102.4rem;
  margin: 0 auto; }

nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  nav ul li {
    display: inline-block; }
    nav ul li a {
      display: block;
      padding: 0 .5rem; }

/* TYPOGRAPHY
****************************************************** */
html {
  font-size: 62.5%; }

body, caption, th, td, input, textarea, select, option, legend, fieldset, h1, h2, h3, h4, h5, h6 {
  font-size-adjust: 0.5; }

body {
  font-size: 1.6em;
  line-height: 1.475em;
  font-family: "Droid Serif", Helvetica, Arial, serif; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Exo", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 1rem 0;
  font-weight: 700; }

.lead {
  color: #6f6f6f; }

h1 {
  font-size: 2em;
  line-height: 1.35; }

h2 {
  font-size: 1.625em;
  line-height: 1.25384615; }

h3 {
  font-size: 1.375em;
  line-height: 1.23636364; }

h4 {
  font-size: 1.125em;
  line-height: 1.21111111; }

h5 {
  font-size: 1em;
  line-height: 1.25; }

h6 {
  font-size: 0.75em;
  line-height: 1.25; }

blockquote {
  font-size: 1.25em;
  line-height: 1.25; }

@media (min-width: 700px) {
  .lead {
    font-size: 1.85rem; }

  h1 {
    font-size: 2.5em;
    line-height: 1.225; }

  h2 {
    font-size: 2em;
    line-height: 1.225; }

  h3 {
    font-size: 1.5em;
    line-height: 1.25; }

  h4 {
    font-size: 1.125em;
    line-height: 1.22222222; }

  h5 {
    font-size: 1em;
    line-height: 1.375; }

  h6 {
    font-size: 0.75em;
    line-height: 1.203125; }

  blockquote {
    font-size: 1.5em;
    line-height: 1.375; } }
@media (min-width: 900px) {
  h1 {
    font-size: 3em;
    line-height: 1.05; }

  h2 {
    font-size: 2.25em;
    line-height: 1.125; }

  h3 {
    font-size: 1.75em;
    line-height: 1.25; } }
/* BASIC
****************************************************** */
::selection {
  background: #CF1332;
  color: #fff; }

::-moz-selection {
  background: #CF1332;
  color: #fff; }

a {
  text-decoration: none;
  color: #CF1332;
  -o-transition: all 0.20s ease-in-out;
  -webkit-transition: all 0.20s ease-in-out;
  -moz-transition: all 0.20s ease-in-out;
  transition: all 0.20s ease-in-out; }
  a:hover {
    color: #333; }

.bg-pic {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  -o-transition: all 0.20s ease-in-out;
  -webkit-transition: all 0.20s ease-in-out;
  -moz-transition: all 0.20s ease-in-out;
  transition: all 0.20s ease-in-out; }
  .bg-pic .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-size: cover;
    background-position: center; }
  .bg-pic .bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #cf1332;
    background: -moz-linear-gradient(45deg, #cf1332 0%, #192b44 100%);
    background: -webkit-linear-gradient(45deg, #cf1332 0%, #192b44 100%);
    background: linear-gradient(225deg, #cf1332 0%, #192b44 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cf1332', endColorstr='#192b44',GradientType=1 );
    opacity: .65; }

a:hover .bg-gradient {
  opacity: .8; }

.categories a {
  white-space: nowrap;
  display: inline-block;
  line-height: 1.65;
  margin: 0 .4rem .6rem -.2rem;
  padding: .3rem .8rem;
  background: #CF1332;
  color: #fff; }
  .categories a:hover {
    background: #192B44 !important; }
.categories a:nth-of-type(2) {
  background: #a00f27; }
.categories a:nth-of-type(3) {
  background: #890d21; }
.categories a:nth-of-type(4) {
  background: #720a1b; }
.categories a:nth-of-type(5) {
  background: #5a0816; }
.categories a:nth-of-type(6) {
  background: #430610; }

.meta {
  font-size: 1.15rem;
  font-size: uppercase;
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: .05rem; }
  .meta span {
    white-space: nowrap; }
    .meta span:before {
      content: "| "; }
    .meta span:first-of-type:before {
      content: ""; }
    .meta span.date:before {
      content: "| \f017 ";
      font-family: "FontAwesome"; }
    .meta span.tags:before {
      content: "| \f02c ";
      font-family: "FontAwesome"; }

.share a {
  line-height: 4rem;
  letter-spacing: 0.1rem;
  padding: 0;
  margin: 0;
  color: #333;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.1rem;
  position: relative;
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal; }
  .share a:before {
    font-family: "FontAwesome";
    padding: .5rem;
    font-size: 1.5rem; }
  .share a:hover {
    color: #fff; }
.share .facebook {
  border-color: #3B5998;
  color: #3B5998; }
  .share .facebook:before {
    content: "\f09a"; }
  .share .facebook:hover {
    background: #3B5998;
    border-color: #3B5998; }
.share .twitter {
  border-color: #1DA1F2;
  color: #1DA1F2; }
  .share .twitter:before {
    content: "\f099"; }
  .share .twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2; }
.share .linkedin {
  border-color: #0177B5;
  color: #0177B5; }
  .share .linkedin:before {
    content: "\f0e1"; }
  .share .linkedin:hover {
    background: #0177B5;
    border-color: #0177B5; }

.ads img, .ads iframe {
  margin: 0 auto; }

/* FORMS
****************************************************** */
textarea,
select {
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: none;
  box-sizing: border-box; }

input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }

input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus {
  border: 1px solid #bbb;
  outline: 0; }

textarea:focus,
select:focus {
  border: 1px solid #bbb;
  outline: 0; }

label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }

fieldset {
  padding: 0;
  border-width: 0; }

input[type="checkbox"], input[type="radio"] {
  display: inline; }

label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }

.button,
button {
  display: inline-block;
  color: #192B44;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid #ddd;
  cursor: pointer;
  box-sizing: border-box; }

input[type="submit"], input[type="reset"], input[type="button"] {
  display: inline-block;
  padding: 0 30px;
  color: #192B44;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid #ddd;
  cursor: pointer;
  box-sizing: border-box; }

.button:hover,
button:hover {
  color: #CF1332;
  border-color: #bbb;
  outline: 0; }

input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
  color: #CF1332;
  border-color: #bbb;
  outline: 0; }

.button:focus,
button:focus {
  color: #CF1332;
  border-color: #bbb;
  outline: 0; }

input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
  color: #CF1332;
  border-color: #bbb;
  outline: 0; }

input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
  color: #fff;
  background-color: #CF1332;
  border-color: #CF1332; }
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"] {
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: none;
  box-sizing: border-box; }

/*  -----------------------------------------------------------------------
TEMPLATE CSS STYLE STARTING
 -------------------------------------------------------------------------- */
/* ADS
****************************************************** */
#header_leaderboard {
  border-bottom: 1px solid #ddd; }

#top_leaderboard {
  background: #ddd;
  box-shadow: inset 0 0 10px #bbb; }

#post_banner {
  border-right: 1px solid #ddd; }

/* HEADER
****************************************************** */
#menu {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  position: relative;
  z-index: 9999; }
  #menu nav {
    font-size: 3rem;
    line-height: 5rem;
    max-height: 7rem;
    -o-transition: all 0.20s ease-in-out;
    -webkit-transition: all 0.20s ease-in-out;
    -moz-transition: all 0.20s ease-in-out;
    transition: all 0.20s ease-in-out;
    overflow: hidden; }
    #menu nav .menu-logo .site-title {
      font-family: "Exo", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      font-weight: 900;
      font-size: 3rem;
      line-height: 5rem;
      margin: 0;
      padding: 0; }
    #menu nav .menu-logo img {
      max-height: 5rem !important;
      width: auto !important; }
    #menu nav .menu-share {
      font-size: 50%; }
    #menu nav .menu-search {
      margin-left: .5rem;
      color: #CF1332;
      cursor: pointer; }
      #menu nav .menu-search.active, #menu nav .menu-search:hover {
        color: #192B44; }
    #menu nav .menu-bars {
      margin: .75rem 1rem 0rem 0rem;
      width: 3rem;
      height: 3rem;
      position: relative;
      -o-transition: all 0.20s ease-in-out;
      -webkit-transition: all 0.20s ease-in-out;
      -moz-transition: all 0.20s ease-in-out;
      transition: all 0.20s ease-in-out; }
      #menu nav .menu-bars span {
        display: block;
        width: 100%;
        background: #CF1332;
        height: .4rem;
        margin: .5rem 0; }
      #menu nav .menu-bars span.s3 {
        width: 3rem; }
      #menu nav .menu-bars span.s2 {
        width: 2.25rem; }
      #menu nav .menu-bars span.s1 {
        width: 1.5rem; }
      #menu nav .menu-bars:hover span, #menu nav .menu-bars:active span {
        -o-transition: all 0.20s ease-in-out;
        -webkit-transition: all 0.20s ease-in-out;
        -moz-transition: all 0.20s ease-in-out;
        transition: all 0.20s ease-in-out;
        background: #192B44;
        width: 3rem !important; }
  #menu #mainmenu-search-form {
    overflow: hidden;
    border-top: 1px solid #ddd;
    font-size: 2.5rem !important;
    display: none;
    font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    #menu #mainmenu-search-form form {
      box-sizing: border-box;
      max-width: 102.4rem;
      margin: 0 auto;
      overflow: hidden; }
    #menu #mainmenu-search-form input {
      width: calc(100% - 5rem);
      float: left;
      border: 0;
      text-indent: 1rem;
      line-height: 5rem;
      font-size: 2.5rem !important;
      padding: 0;
      box-shadow: 0;
      outline: none; }
    #menu #mainmenu-search-form button {
      width: 5rem;
      float: right;
      border: 0;
      line-height: 5rem;
      background: #CF1332;
      box-shadow: none;
      color: #fff;
      font-size: 2rem;
      border-radius: 0;
      padding: 0 !important;
      cursor: pointer; }
      #menu #mainmenu-search-form button:hover {
        background: #192B44;
        color: #fff;
        box-shadow: none; }
    #menu #mainmenu-search-form.active {
      display: block; }

#side-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99999;
  display: none; }
  .admin-bar #side-nav {
    top: 46px; }
    @media screen and (min-width: 783px) {
      .admin-bar #side-nav {
        top: 32px; } }
  #side-nav .relative {
    position: relative;
    width: 100%;
    height: 100%; }
  #side-nav .nav-menu {
    width: 90%;
    max-width: 30rem;
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    overflow-y: auto;
    text-transform: uppercase;
    box-shadow: 0 0 10px #bbb;
    border-right: 1px solid #ddd;
    height: 100%; }
    #side-nav .nav-menu .side-top {
      line-height: 5rem !important;
      border-bottom: 1px solid #ddd;
      overflow: hidden; }
      #side-nav .nav-menu .side-top .side-nav-close {
        text-align: right;
        font-size: 3rem;
        padding: 1rem 2rem 1rem 0; }
      #side-nav .nav-menu .side-top .logo {
        font-weight: 900;
        text-transform: uppercase;
        width: calc(100% - 5rem);
        overflow: hidden;
        font-size: 3rem;
        letter-spacing: -0.15rem;
        font-family: "Exo", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
        padding: 1rem 0 1rem 2rem; }
    #side-nav .nav-menu ul {
      list-style-type: none;
      margin: 0;
      padding: 0; }
      #side-nav .nav-menu ul li {
        display: block;
        font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
        margin: 0;
        border-bottom: 1px solid #ddd;
        position: relative; }
        #side-nav .nav-menu ul li a {
          display: block;
          padding: 1.35rem 2rem;
          overflow: hidden;
          color: #192B44;
          background: #fff; }
          #side-nav .nav-menu ul li a:hover {
            background: #192B44;
            color: #fff; }
        #side-nav .nav-menu ul li:last-of-type {
          border-bottom: 0; }
      #side-nav .nav-menu ul li.menu-item-has-children, #side-nav .nav-menu ul li.page_item_has_children {
        position: relative; }
        #side-nav .nav-menu ul li.menu-item-has-children a.expand, #side-nav .nav-menu ul li.page_item_has_children a.expand {
          display: block;
          position: absolute;
          right: 0;
          text-indent: 0;
          top: 0;
          font-family: "FontAwesome";
          line-height: 5rem;
          content: "\f067";
          padding: 0 2rem;
          box-shadow: -1px 0 0 #ddd, 0 -1px 0 #ddd, 0 1px 0 #ddd; }
        #side-nav .nav-menu ul li.menu-item-has-children ul, #side-nav .nav-menu ul li.page_item_has_children ul {
          display: none;
          background: #eee; }
          #side-nav .nav-menu ul li.menu-item-has-children ul li, #side-nav .nav-menu ul li.page_item_has_children ul li {
            border-top: 1px solid #ddd;
            border-bottom: 0px; }
            #side-nav .nav-menu ul li.menu-item-has-children ul li a, #side-nav .nav-menu ul li.page_item_has_children ul li a {
              background: #f9f9f9; }
              #side-nav .nav-menu ul li.menu-item-has-children ul li a:hover, #side-nav .nav-menu ul li.page_item_has_children ul li a:hover {
                background: #192B44; }

/* FEATURED
****************************************************** */
#featured article {
  position: relative; }
  #featured article .text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    color: #fff; }
  #featured article .bg-pic {
    padding-top: 65%; }
#featured article:last-of-type .bg-pic .bg-gradient {
  background: #cf1332;
  background: -moz-linear-gradient(-45deg, #cf1332 0%, #192b44 100%);
  background: -webkit-linear-gradient(-45deg, #cf1332 0%, #192b44 100%);
  background: linear-gradient(135deg, #cf1332 0%, #192b44 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cf1332', endColorstr='#192b44',GradientType=1 ); }

/* ARTICLE-LIST
****************************************************** */
#article-title .title {
  border-bottom: 0.5rem solid #ddd;
  text-transform: uppercase;
  margin: 0;
  text-align: center; }

#wrapper.article-list article {
  border-bottom: 1px solid #ddd;
  padding: 0; }
  #wrapper.article-list article .image {
    position: relative; }
    #wrapper.article-list article .image .bg-gradient {
      opacity: .40; }
  #wrapper.article-list article .excerpt {
    margin-top: 0.7rem; }
#wrapper.article-list article.sticky .image {
  min-height: 7rem;
  margin: auto 0; }
#wrapper.article-list article.sticky .image:before {
  content: "\f08d";
  font-family: "FontAwesome";
  position: absolute;
  top: calc(50% - 2.5rem);
  left: calc(50% - 2.5rem);
  z-index: 999;
  font-size: 3rem;
  line-height: 5rem;
  width: 5rem;
  text-align: center;
  color: #CF1332;
  background: rgba(255, 255, 255, 0.75); }
#wrapper.article-list article.format-video .image {
  min-height: 7rem;
  margin: auto 0; }
#wrapper.article-list article.format-video .image:before {
  content: "\f03d";
  font-family: "FontAwesome";
  position: absolute;
  top: calc(50% - 2.5rem);
  left: calc(50% - 2.5rem);
  z-index: 999;
  font-size: 3rem;
  line-height: 5rem;
  width: 5rem;
  text-align: center;
  color: #CF1332;
  background: rgba(255, 255, 255, 0.75); }
#wrapper.article-list article.format-image .image {
  min-height: 7rem;
  margin: auto 0; }
#wrapper.article-list article.format-image .image:before {
  content: "\f030 ";
  font-family: "FontAwesome";
  position: absolute;
  top: calc(50% - 2.5rem);
  left: calc(50% - 2.5rem);
  z-index: 999;
  font-size: 3rem;
  line-height: 5rem;
  width: 5rem;
  text-align: center;
  color: #CF1332;
  background: rgba(255, 255, 255, 0.75); }
#wrapper.article-list article.format-gallery .image {
  min-height: 7rem;
  margin: auto 0; }
#wrapper.article-list article.format-gallery .image:before {
  content: "\f03e";
  font-family: "FontAwesome";
  position: absolute;
  top: calc(50% - 2.5rem);
  left: calc(50% - 2.5rem);
  z-index: 999;
  font-size: 3rem;
  line-height: 5rem;
  width: 5rem;
  text-align: center;
  color: #CF1332;
  background: rgba(255, 255, 255, 0.75); }
#wrapper.article-list article.format-quote .image {
  min-height: 7rem;
  margin: auto 0; }
#wrapper.article-list article.format-quote .image:before {
  content: "\f10d";
  font-family: "FontAwesome";
  position: absolute;
  top: calc(50% - 2.5rem);
  left: calc(50% - 2.5rem);
  z-index: 999;
  font-size: 3rem;
  line-height: 5rem;
  width: 5rem;
  text-align: center;
  color: #CF1332;
  background: rgba(255, 255, 255, 0.75); }
#wrapper.article-list article.format-audio .image {
  min-height: 7rem;
  margin: auto 0; }
#wrapper.article-list article.format-audio .image:before {
  content: "\f025";
  font-family: "FontAwesome";
  position: absolute;
  top: calc(50% - 2.5rem);
  left: calc(50% - 2.5rem);
  z-index: 999;
  font-size: 3rem;
  line-height: 5rem;
  width: 5rem;
  text-align: center;
  color: #CF1332;
  background: rgba(255, 255, 255, 0.75); }
#wrapper.article-list article.format-link .image {
  min-height: 7rem;
  margin: auto 0; }
#wrapper.article-list article.format-link .image:before {
  content: "\f0c1";
  font-family: "FontAwesome";
  position: absolute;
  top: calc(50% - 2.5rem);
  left: calc(50% - 2.5rem);
  z-index: 999;
  font-size: 3rem;
  line-height: 5rem;
  width: 5rem;
  text-align: center;
  color: #CF1332;
  background: rgba(255, 255, 255, 0.75); }

/* MORE POSTS
****************************************************** */
#more-posts {
  line-height: 6rem;
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  padding: 0; }
  #more-posts i {
    display: inline-block;
    padding: 0 1rem; }
  #more-posts span {
    display: inline-block;
    padding: 0 1rem; }

/* ARCHIVE-TITLE
****************************************************** */
#archive-title {
  border-bottom: 1px solid #ddd; }
  #archive-title .title {
    border-bottom: 0.5rem solid #ddd;
    text-transform: uppercase;
    margin: 0; }

/* AUTHOR-TITLE
****************************************************** */
#author-title {
  border-bottom: 1px solid #ddd; }
  #author-title .image img {
    border-radius: 50%;
    border-image: initial;
    border: 0.5rem solid #ddd; }
  #author-title .title {
    border-bottom: 0.5rem solid #ddd;
    text-transform: uppercase;
    margin: 0; }
  #author-title .social {
    margin: 0;
    padding: 0; }
    #author-title .social li {
      display: inline-block; }
      #author-title .social li a {
        display: block;
        line-height: 3rem;
        width: 3rem;
        margin: 0 .5rem 0 0;
        text-align: center;
        background: #ddd;
        border-radius: 50%;
        color: #192B44; }
      #author-title .social li a:hover {
        background: #bbb;
        color: #fff; }

/* POSTS and PAGE
****************************************************** */
#wrapper.post #article-header, #wrapper.page #article-header {
  border-bottom: 1px solid #ddd; }
#wrapper.post #article-wrapper, #wrapper.page #article-wrapper {
  border-bottom: 1px solid #ddd; }
  #wrapper.post #article-wrapper p, #wrapper.page #article-wrapper p {
    margin-bottom: 2em; }
#wrapper.post .meta-share, #wrapper.page .meta-share {
  position: absolute;
  bottom: 0rem;
  right: 1rem;
  z-index: 99; }
  #wrapper.post .meta-share .share-button, #wrapper.page .meta-share .share-button {
    text-transform: uppercase;
    font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    width: 4.4rem;
    font-size: 1.6rem;
    line-height: 2.2rem;
    padding: 1rem 0rem;
    text-align: center;
    border: 0.1rem solid #ddd;
    color: #CF1332;
    border-bottom: 0; }
    #wrapper.post .meta-share .share-button:hover, #wrapper.post .meta-share .share-button.active, #wrapper.page .meta-share .share-button:hover, #wrapper.page .meta-share .share-button.active {
      background: #f7f7f7;
      color: #192B44;
      cursor: pointer; }
#wrapper.post #top-share, #wrapper.page #top-share {
  display: none;
  border-bottom: 1px solid #ddd; }
#wrapper.post .article-author, #wrapper.page .article-author {
  padding: 2rem 0 1rem; }
  #wrapper.post .article-author .avatar img, #wrapper.page .article-author .avatar img {
    border-radius: 50%;
    margin: 1rem auto;
    width: 100%;
    border-image: initial;
    border: 0.5rem solid #ddd; }
  #wrapper.post .article-author .text, #wrapper.page .article-author .text {
    padding: 0 0 0 1rem; }
    #wrapper.post .article-author .text .author-name, #wrapper.page .article-author .text .author-name {
      font-weight: bold;
      font-size: 2.2rem;
      display: block;
      text-transform: uppercase;
      font-family: "Exo", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      border-bottom: 0.3rem solid #ddd;
      padding-bottom: .5rem; }
      #wrapper.post .article-author .text .author-name a, #wrapper.page .article-author .text .author-name a {
        color: #192B44; }
        #wrapper.post .article-author .text .author-name a:hover, #wrapper.page .article-author .text .author-name a:hover {
          color: #CF1332; }
    #wrapper.post .article-author .text p, #wrapper.page .article-author .text p {
      margin: .5rem 0 0rem 0 !important;
      padding: 0;
      font-size: 1.4rem; }
    #wrapper.post .article-author .text .author-share, #wrapper.page .article-author .text .author-share {
      margin: 1rem 0; }
      #wrapper.post .article-author .text .author-share a, #wrapper.page .article-author .text .author-share a {
        display: inline-block;
        line-height: 3rem;
        width: 3rem;
        margin: 0 .5rem .5rem 0;
        text-align: center;
        background: #ddd;
        border-radius: 50%;
        color: #192B44; }
      #wrapper.post .article-author .text .author-share a:hover, #wrapper.page .article-author .text .author-share a:hover {
        background: #bbb;
        color: #fff; }
#wrapper.post h1, #wrapper.post h2, #wrapper.post h3, #wrapper.post h4, #wrapper.post h5, #wrapper.post h6, #wrapper.page h1, #wrapper.page h2, #wrapper.page h3, #wrapper.page h4, #wrapper.page h5, #wrapper.page h6 {
  margin-top: .6em;
  color: #192B44; }
#wrapper.post ul, #wrapper.page ul {
  margin: 1em 0;
  padding: 0;
  list-style-type: none; }
  #wrapper.post ul li, #wrapper.page ul li {
    padding-left: 1.5rem;
    margin-left: 0;
    position: relative;
    margin-bottom: 1rem; }
  #wrapper.post ul li:before, #wrapper.page ul li:before {
    content: "\f105";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    color: #CF1332; }
#wrapper.post ol, #wrapper.page ol {
  margin: 1em 0;
  padding: 0;
  list-style-position: inside; }
  #wrapper.post ol li, #wrapper.page ol li {
    padding-left: 0rem;
    margin-left: 0;
    position: relative;
    margin-bottom: 1rem; }
    #wrapper.post ol li li, #wrapper.page ol li li {
      padding-left: 1.5rem; }
#wrapper.post table, #wrapper.page table {
  width: 100%; }
  #wrapper.post table th, #wrapper.post table td, #wrapper.page table th, #wrapper.page table td {
    padding: 1rem;
    border: 0.1rem solid #ddd;
    font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.2rem; }
  #wrapper.post table thead, #wrapper.page table thead {
    background: #ddd; }
#wrapper.post address, #wrapper.page address {
  padding: 1.5rem 1.5rem 1.5rem 5.5rem;
  margin: 1.5rem 5rem;
  background: #ddd;
  position: relative;
  overflow: hidden; }
  #wrapper.post address:before, #wrapper.page address:before {
    content: "\f041";
    font-family: "FontAwesome";
    position: absolute;
    z-index: 0;
    color: #f7f7f7;
    font-size: 6rem;
    line-height: 6rem;
    top: 0.0rem;
    left: 0.4rem; }
#wrapper.post pre, #wrapper.page pre {
  padding: 1.5rem 1.5rem 1.5rem 7.5rem;
  margin: 1.5rem 5.0rem;
  background: #ddd;
  position: relative; }
  #wrapper.post pre:before, #wrapper.page pre:before {
    content: "\f121";
    font-family: "FontAwesome";
    position: absolute;
    z-index: 0;
    color: #f7f7f7;
    font-size: 6rem;
    line-height: 6rem;
    top: 0.0rem;
    left: 0.4rem; }
#wrapper.post .post-password-form, #wrapper.page .post-password-form {
  display: block;
  margin: 1rem auto;
  text-align: center; }
  #wrapper.post .post-password-form label, #wrapper.page .post-password-form label {
    display: block;
    width: 60%;
    min-width: 25rem;
    margin: 0px auto; }
    #wrapper.post .post-password-form label input[type="password"], #wrapper.page .post-password-form label input[type="password"] {
      width: 100%;
      margin: 1rem auto;
      line-height: 3rem;
      padding: 0; }
  #wrapper.post .post-password-form input[type="submit"], #wrapper.page .post-password-form input[type="submit"] {
    width: 30%;
    min-width: 25rem;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    background: #CF1332;
    color: #fff;
    box-shadow: none;
    border: 1px solid #CF1332;
    line-height: 3rem; }
    #wrapper.post .post-password-form input[type="submit"]:hover, #wrapper.page .post-password-form input[type="submit"]:hover {
      background: #192B44;
      color: #fff; }
#wrapper.post blockquote, #wrapper.page blockquote {
  color: #192B44;
  margin: 0;
  padding: 2rem;
  font-family: "Exo", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  position: relative; }
  #wrapper.post blockquote p, #wrapper.page blockquote p {
    margin: 0 !important;
    position: relative;
    z-index: 1; }
  #wrapper.post blockquote cite, #wrapper.page blockquote cite {
    display: block;
    position: relative;
    z-index: 1;
    text-align: right;
    font-size: 1.6rem;
    font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal; }
  #wrapper.post blockquote:before, #wrapper.page blockquote:before {
    content: "\f10e";
    font-family: "FontAwesome";
    position: absolute;
    z-index: 0;
    color: #ddd;
    font-size: 60px;
    line-height: 60px;
    top: 8px;
    left: 4px;
    overflow: hidden; }
#wrapper.post .wp-caption, #wrapper.page .wp-caption {
  margin: 0; }
  #wrapper.post .wp-caption .wp-caption-text, #wrapper.page .wp-caption .wp-caption-text {
    margin: 0;
    font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.15rem;
    text-align: center; }
#wrapper.post .wp-caption.alignleft, #wrapper.page .wp-caption.alignleft {
  margin-right: 1.5rem;
  float: left; }
#wrapper.post .wp-caption.alignright, #wrapper.page .wp-caption.alignright {
  margin-left: 1.5rem;
  float: right; }
#wrapper.post .wp-caption.aligncenter, #wrapper.page .wp-caption.aligncenter {
  margin-left: auto;
  margin-right: auto; }
#wrapper.post .video-container, #wrapper.page .video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin: 2rem 0; }
  #wrapper.post .video-container iframe, #wrapper.post .video-container embed, #wrapper.post .video-container object, #wrapper.page .video-container iframe, #wrapper.page .video-container embed, #wrapper.page .video-container object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
#wrapper.post .pageinated-pages, #wrapper.page .pageinated-pages {
  padding: 2rem 0;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-bottom: 1px solid #ddd; }
  #wrapper.post .pageinated-pages p, #wrapper.page .pageinated-pages p {
    margin: 0 !important; }
#wrapper.post .featured-image, #wrapper.page .featured-image {
  text-align: center;
  margin: 1rem 0; }
  #wrapper.post .featured-image img, #wrapper.page .featured-image img {
    margin: 0 auto; }
#wrapper.post #recommended article, #wrapper.page #recommended article {
  position: relative; }
  #wrapper.post #recommended article .bg-pic, #wrapper.page #recommended article .bg-pic {
    padding-top: 75%; }
  #wrapper.post #recommended article .text, #wrapper.page #recommended article .text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99; }
    #wrapper.post #recommended article .text .title, #wrapper.post #recommended article .text .meta, #wrapper.page #recommended article .text .title, #wrapper.page #recommended article .text .meta {
      color: #fff; }
#wrapper.post #comments, #wrapper.page #comments {
  padding: 2rem 0;
  margin-bottom: 2rem; }
  #wrapper.post #comments .comments-title, #wrapper.page #comments .comments-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2rem;
    padding: .5rem 0 .5rem;
    border-bottom: 0.3rem solid #ddd; }
  #wrapper.post #comments .comment-wrapper-inner .children, #wrapper.page #comments .comment-wrapper-inner .children {
    list-style-type: none;
    margin-left: 0rem;
    padding-left: 1rem !important;
    border-left: 1px solid #ddd !important; }
    #wrapper.post #comments .comment-wrapper-inner .children .comment-body, #wrapper.page #comments .comment-wrapper-inner .children .comment-body {
      border-bottom: 1px solid #ddd !important; }
  #wrapper.post #comments .comment-wrapper-inner .comment-list, #wrapper.page #comments .comment-wrapper-inner .comment-list {
    list-style-type: none;
    margin: 1em 0;
    padding: 0; }
    #wrapper.post #comments .comment-wrapper-inner .comment-list li, #wrapper.page #comments .comment-wrapper-inner .comment-list li {
      margin: 0;
      padding: 0; }
      #wrapper.post #comments .comment-wrapper-inner .comment-list li .comment-body, #wrapper.page #comments .comment-wrapper-inner .comment-list li .comment-body {
        position: relative;
        padding: 1rem 0;
        border-bottom: 1px solid #ddd; }
        #wrapper.post #comments .comment-wrapper-inner .comment-list li .comment-body .comment-meta, #wrapper.page #comments .comment-wrapper-inner .comment-list li .comment-body .comment-meta {
          width: 100%;
          text-transform: uppercase;
          font-size: 1.15rem;
          font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
          #wrapper.post #comments .comment-wrapper-inner .comment-list li .comment-body .comment-meta .comment-author, #wrapper.page #comments .comment-wrapper-inner .comment-list li .comment-body .comment-meta .comment-author {
            width: 100%; }
            #wrapper.post #comments .comment-wrapper-inner .comment-list li .comment-body .comment-meta .comment-author .avatar, #wrapper.page #comments .comment-wrapper-inner .comment-list li .comment-body .comment-meta .comment-author .avatar {
              float: left;
              margin-right: 1rem;
              width: 4rem;
              height: 4rem;
              border-radius: 50%; }
          #wrapper.post #comments .comment-wrapper-inner .comment-list li .comment-body .comment-meta .comment-metadata, #wrapper.page #comments .comment-wrapper-inner .comment-list li .comment-body .comment-meta .comment-metadata {
            width: 100%; }
        #wrapper.post #comments .comment-wrapper-inner .comment-list li .comment-body .comment-content, #wrapper.page #comments .comment-wrapper-inner .comment-list li .comment-body .comment-content {
          padding: 0;
          margin: 0.5rem 0 0.5rem 5rem; }
          #wrapper.post #comments .comment-wrapper-inner .comment-list li .comment-body .comment-content p, #wrapper.page #comments .comment-wrapper-inner .comment-list li .comment-body .comment-content p {
            margin: 0; }
        #wrapper.post #comments .comment-wrapper-inner .comment-list li .comment-body .reply, #wrapper.page #comments .comment-wrapper-inner .comment-list li .comment-body .reply {
          position: absolute;
          top: .5rem;
          right: .5rem;
          text-transform: uppercase;
          font-size: 1.15rem;
          font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    #wrapper.post #comments .comment-wrapper-inner .comment-list li:last-of-type .comment-body, #wrapper.page #comments .comment-wrapper-inner .comment-list li:last-of-type .comment-body {
      border: 0; }
#wrapper.post #respond #reply-title, #wrapper.page #respond #reply-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  padding: .5rem 0 .5rem;
  border-bottom: 0.3rem solid #ddd; }
#wrapper.post #respond #commentform, #wrapper.page #respond #commentform {
  margin: 1rem 0; }
  #wrapper.post #respond #commentform .comment-notes, #wrapper.post #respond #commentform .logged-in-as, #wrapper.page #respond #commentform .comment-notes, #wrapper.page #respond #commentform .logged-in-as {
    width: 100%;
    margin: 1rem .5rem 2.5rem; }
  #wrapper.post #respond #commentform .comment-form-comment, #wrapper.page #respond #commentform .comment-form-comment {
    width: calc(100% - 1rem);
    float: none;
    margin: 0 .5rem;
    min-width: 28rem; }
    #wrapper.post #respond #commentform .comment-form-comment textarea, #wrapper.page #respond #commentform .comment-form-comment textarea {
      height: 17rem;
      font-size: 1.5rem;
      width: 100%; }
  #wrapper.post #respond #commentform .comment-form-author,
  #wrapper.post #respond #commentform .comment-form-email,
  #wrapper.post #respond #commentform .comment-form-url, #wrapper.page #respond #commentform .comment-form-author,
  #wrapper.page #respond #commentform .comment-form-email,
  #wrapper.page #respond #commentform .comment-form-url {
    width: calc(33.33% - 1rem);
    margin: 0 .5rem;
    min-width: 25rem;
    margin-bottom: 1.5rem;
    float: left; }
    #wrapper.post #respond #commentform .comment-form-author input,
    #wrapper.post #respond #commentform .comment-form-email input,
    #wrapper.post #respond #commentform .comment-form-url input, #wrapper.page #respond #commentform .comment-form-author input,
    #wrapper.page #respond #commentform .comment-form-email input,
    #wrapper.page #respond #commentform .comment-form-url input {
      margin: 0;
      font-size: 1.5rem; }
  #wrapper.post #respond #commentform .form-submit, #wrapper.page #respond #commentform .form-submit {
    width: 70%;
    margin: 1rem 15%;
    font-size: 1.15rem;
    font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
#wrapper.post #respond p, #wrapper.page #respond p {
  margin: 0; }
  #wrapper.post #respond p label, #wrapper.page #respond p label {
    font-size: 1.15rem;
    font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    margin: 0;
    text-transform: uppercase; }
  #wrapper.post #respond p input, #wrapper.page #respond p input {
    width: 100%; }

#wrapper.page article {
  border-bottom: 0.1rem solid #ddd;
  padding-bottom: 0; }
#wrapper.page #article-wrapper {
  border-bottom: 0px; }
#wrapper.page .text-404 {
  color: #192B44;
  padding-bottom: 44px;
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase; }
#wrapper.page .title-404 {
  margin: 0;
  padding: 3rem 0 0;
  font-size: 15rem;
  font-weight: 100;
  color: #CF1332; }
#wrapper.page .icon-404 {
  color: #192B44;
  padding-top: 44px;
  font-size: 10rem; }

/* FOOTER
****************************************************** */
#footer {
  background: #222;
  color: #fff; }
  #footer .footer-sidebar a {
    color: #bbb; }
    #footer .footer-sidebar a:hover {
      color: #CF1332; }
  #footer .footer-sidebar .box div, #footer .footer-sidebar .box ul {
    font-size: 1.25rem; }
  #footer .footer-sidebar .box .title {
    color: #ddd; }
  #footer .footer-social {
    background: #151515; }
    #footer .footer-social ul {
      margin: 0;
      padding: 0 1em; }
    #footer .footer-social li {
      display: inline-block;
      padding: 1.5rem	0; }
      #footer .footer-social li a {
        display: inline-block;
        background: #222;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        color: #fff;
        line-height: 1;
        margin: 0.5rem;
        text-align: center;
        width: 5rem;
        line-height: 5rem; }
      #footer .footer-social li a:hover {
        background: #090909;
        color: #CF1332; }
  #footer .footer-copyright {
    background: #090909;
    line-height: 5rem; }
    #footer .footer-copyright p {
      margin: 0; }

/*  -----------------------------------------------------------------------
SIDEBAR
 -------------------------------------------------------------------------- */
#wrapper.post #article-sidebar, #footer .footer-sidebar {
  width: 100%; }
  #wrapper.post #article-sidebar .box, #footer .footer-sidebar .box {
    font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: left;
    font-size: 1.25rem !important; }
    #wrapper.post #article-sidebar .box .title, #footer .footer-sidebar .box .title {
      text-align: center;
      text-transform: uppercase;
      padding: 2rem 0 1rem;
      margin: 0 0 1rem;
      border-bottom: 0.01rem solid #555555; }
      #wrapper.post #article-sidebar .box .title img, #footer .footer-sidebar .box .title img {
        float: left; }
    #wrapper.post #article-sidebar .box form, #footer .footer-sidebar .box form {
      box-sizing: border-box;
      margin: 0 auto;
      overflow: hidden; }
      #wrapper.post #article-sidebar .box form input[type="search"], #footer .footer-sidebar .box form input[type="search"] {
        width: calc(100% - 8rem);
        float: left;
        border: 1px solid #ddd;
        text-indent: 1rem;
        line-height: 3rem;
        font-size: 1.5rem !important;
        padding: 0;
        box-shadow: 0;
        text-shadow: none;
        outline: none;
        font-weight: normal;
        border-radius: 0; }
      #wrapper.post #article-sidebar .box form label, #footer .footer-sidebar .box form label {
        margin: 0; }
      #wrapper.post #article-sidebar .box form input[type="submit"], #footer .footer-sidebar .box form input[type="submit"] {
        text-shadow: none;
        border: 0;
        float: right;
        width: 8rem;
        line-height: 3rem;
        background: #CF1332;
        box-shadow: none;
        color: #fff;
        border-radius: 0;
        margin: 0;
        padding: 0 !important;
        text-align: center;
        cursor: pointer;
        border: 1px solid #CF1332; }
        #wrapper.post #article-sidebar .box form input[type="submit"]:hover, #footer .footer-sidebar .box form input[type="submit"]:hover {
          background: #192B44;
          color: #fff;
          border-color: #192B44;
          box-shadow: none; }
    #wrapper.post #article-sidebar .box.widget_rss .rsswidget, #footer .footer-sidebar .box.widget_rss .rsswidget {
      text-transform: uppercase; }
    #wrapper.post #article-sidebar .box.widget_rss .rss-date, #footer .footer-sidebar .box.widget_rss .rss-date {
      text-transform: uppercase;
      font-size: .99rem;
      line-height: 1.4rem;
      display: block; }
      #wrapper.post #article-sidebar .box.widget_rss .rss-date:before, #footer .footer-sidebar .box.widget_rss .rss-date:before {
        content: "\f017  ";
        font-family: "FontAwesome"; }
    #wrapper.post #article-sidebar .box.widget_rss cite, #wrapper.post #article-sidebar .box.widget_rss .rssSummary, #footer .footer-sidebar .box.widget_rss cite, #footer .footer-sidebar .box.widget_rss .rssSummary {
      font-size: 1rem;
      line-height: 1.25rem; }
    #wrapper.post #article-sidebar .box select, #footer .footer-sidebar .box select {
      width: 100%;
      padding: 1.2rem .5rem;
      font-size: 1.25rem;
      font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-transform: lowercase;
      text-align: center; }
    #wrapper.post #article-sidebar .box table, #footer .footer-sidebar .box table {
      text-align: center; }
    #wrapper.post #article-sidebar .box ul, #footer .footer-sidebar .box ul {
      margin: 0;
      padding: 0;
      list-style-type: none; }
      #wrapper.post #article-sidebar .box ul li, #footer .footer-sidebar .box ul li {
        margin: 0;
        padding: 0;
        padding-left: 1.5rem;
        margin-left: 0;
        position: relative;
        margin-bottom: .5rem; }
      #wrapper.post #article-sidebar .box ul li:before, #footer .footer-sidebar .box ul li:before {
        content: "\f105";
        font-family: "FontAwesome";
        font-size: 1rem;
        position: absolute;
        left: 0;
        top: 0;
        color: #ddd; }
    #wrapper.post #article-sidebar .box .tagcloud a, #footer .footer-sidebar .box .tagcloud a {
      display: inline-block;
      padding: 5px 10px;
      text-transform: lowercase;
      margin: 4px 2px 4px;
      border-radius: 0%;
      border: 1px solid #555555 !important;
      font-size: 1.25rem !important; }
      #wrapper.post #article-sidebar .box .tagcloud a:hover, #footer .footer-sidebar .box .tagcloud a:hover {
        color: #CF1332;
        background-color: #222; }
    #wrapper.post #article-sidebar .box .instagram a, #footer .footer-sidebar .box .instagram a {
      width: calc(33.33% - 10px);
      display: block;
      float: left;
      padding: 5px; }

#wrapper.post #article-sidebar .box .title {
  border-bottom: 0.01rem solid #ddd; }
#wrapper.post #article-sidebar .box .tagcloud a {
  border: 1px solid #ddd !important; }
  #wrapper.post #article-sidebar .box .tagcloud a:hover {
    color: #192B44;
    background-color: #ddd; }
#wrapper.post #article-sidebar .box ul li:before {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0;
  color: #192B44; }

/*  -----------------------------------------------------------------------
RESPONSIVE QUERY-S 
 -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  #article-sidebar {
    width: 300px !important; }

  #post_banner {
    width: 310px !important; }
    #post_banner img, #post_banner iframe {
      margin: 0; } }

/*# sourceMappingURL=main.css.map */
