/* SASS FILE */
/* FONTS */
@font-face {
  font-family: 'Acumin Pro Font';
  src: url("fonts/Acumin-RPro.woff") format("woff"), url("fonts/Acumin-RPro.ttf") format("truetype"); }
@font-face {
  font-family: 'Acumin Pro Bold';
  src: url("fonts/Acumin-BdPro.woff") format("woff"), url("fonts/Acumin-RPro.ttf") format("truetype"); }
@font-face {
  font-family: 'Eurostile Font';
  src: url("fonts/Eurostile.woff") format("woff"), url("fonts/Eurostile.ttf") format("truetype"); }
@font-face {
  font-family: 'Myriad Pro';
  src: url("fonts/Myriad-Pro-Regular.woff") format("woff"), url("fonts/Myriad-Pro-Regular.ttf") format("truetype"); }
@font-face {
  font-family: 'Acumin Pro';
  font-style: normal;
  font-weight: normal;
  src: local("Acumin Pro"), url("Acumin-RPro.woff") format("woff"); }
/* Loading outside SASS files */
/* CSS VARIABLES */
/* FONT COLORS */
/* GREY */
/* BLUE */
/* MAROON */
/* FONT FAMILYS */
/* LAYOUT DIMENSIONS */
/* SETTING FONT SIZES for REM later */
body {
  font-size: 62.5%; }

a {
  transition: all .5s ease;
  color: #717172;
  text-decoration: none; }

a, p, ul, ol {
  font-size: 1rem; }

button:hover {
  cursor: pointer; }

em {
  font-style: italic !important; }

iframe {
  max-width: 100% !important; }

/* HEADER */
/* HEADER SCSS */
.singleBar {
  background-color: #000;
  padding: 0px;
  text-align: right;
  font-family: "Myriad Pro", "arial";
  width: 100%; }
  .singleBar a {
    color: #fff;
    font-size: .9rem;
    text-decoration: none; }
  .singleBar a:hover {
    color: #dfdfdf; }
  .singleBar li {
    display: inline-block;
    padding: 8px 15px 5px; }
    .singleBar li:last-child {
      padding-right: 0px; }

.branding {
  padding: 10px 0px;
  box-shadow: 0px 3px 5px #efefef;
  background-color: #fff;
  position: relative;
  z-index: 2; }
  .branding .wrapper {
    display: flex;
    flex-wrap: wrap; }
  .branding #branding-left {
    flex: 1 1 40%;
    min-width: 300px; }
  .branding #branding-right {
    flex: 1 1 60%;
    min-width: 300px;
    text-align: right; }
    .branding #branding-right form, .branding #branding-right a {
      display: inline-block;
      margin-top: 15px; }
    .branding #branding-right a {
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      font-family: "Myriad Pro", "arial";
      padding: 8px 15px;
      text-align: center;
      border: 2px solid; }
      .branding #branding-right a:nth-child(2) {
        background-color: #32518c;
        border-color: #32518c;
        margin-left: 30px; }
        .branding #branding-right a:nth-child(2):hover {
          color: #32518c; }
      .branding #branding-right a:nth-child(3) {
        background-color: #a31d4e;
        border-color: #a31d4e; }
        .branding #branding-right a:nth-child(3):hover {
          color: #a31d4e; }
      .branding #branding-right a:hover {
        background-color: #fff; }
    .branding #branding-right form {
      position: relative; }
      .branding #branding-right form input {
        padding: 8px 32px 8px 8px;
        font-size: 1rem;
        border: 1px solid #000; }
        .branding #branding-right form input:focus {
          outline: none; }
      .branding #branding-right form #searchsubmit {
        display: none; }
      .branding #branding-right form #searchSbmIcon {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 22px;
        height: auto; }

#mainMenu {
  font-size: .9rem;
  text-align: center;
  text-transform: uppercase;
  font-family: "Acumin Pro", "Acumin Pro Font";
  font-weight: bold;
  background-color: #fff; }
  #mainMenu li {
    display: inline-block;
    padding: 20px 15px 15px;
    vertical-align: middle; }
    #mainMenu li:hover > a {
      color: #a31d4e; }
    #mainMenu li.current-menu-item > a {
      color: #a31d4e; }
    #mainMenu li ul.sub-menu {
      display: none; }
  #mainMenu #menu-main-menu > li:first-child {
    padding: 5px 15px 5px; }
  #mainMenu #menu-main-menu > li:first-child a {
    font-size: 0px;
    line-height: 0px;
    height: 23px;
    width: 23px;
    display: block;
    background-image: url("https://crev.info/wp-content/uploads/2017/04/home_icon2-e1492663391236.png");
    background-size: contain; }
  #mainMenu #mobileMenu {
    display: none; }
  #mainMenu .menu-item-has-children:hover {
    position: relative; }
    #mainMenu .menu-item-has-children:hover > ul {
      display: block;
      position: absolute;
      left: 0px;
      top: 100%;
      z-index: 9999;
      background-color: #fff;
      white-space: nowrap; }
      #mainMenu .menu-item-has-children:hover > ul li {
        display: block;
        text-align: left;
        padding: 15px 0px 10px;
        border-bottom: 1px solid #f9f9f9; }
        #mainMenu .menu-item-has-children:hover > ul li:hover {
          background-color: #f0efef; }
          #mainMenu .menu-item-has-children:hover > ul li:hover > a {
            color: #a31d4e; }
        #mainMenu .menu-item-has-children:hover > ul li a {
          padding: 15px 20px 10px; }

/* SLIDESHOW */
/* FOR THE HOMEPAGE SLIDESHOW SASS */
#homeSlider {
  position: relative;
  height: 70vh;
  overflow: hidden;
  background-color: #32518c; }

#slideImage {
  width: 100%;
  height: 100%;
  overflow: hidden; }
  #slideImage img {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%; }

#slideText {
  position: absolute;
  top: 40px;
  width: 90%;
  max-width: 1240px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  font-family: "Acumin Pro", "Acumin Pro Font"; }
  #slideText h2 {
    color: #fff;
    font-family: "Acumin Pro", "Acumin Pro Font";
    font-size: 2.5rem;
    font-weight: 600; }
  #slideText #slideMeta, #slideText #slideMeta a {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #fff; }

#slideNav {
  position: absolute;
  bottom: 40px;
  width: 90%;
  text-align: right;
  left: 50%;
  transform: translate(-50%, 0); }
  #slideNav i {
    width: 13px;
    height: 13px;
    background-color: #fff;
    margin-right: 5px;
    display: inline-block;
    box-shadow: 0px 0px 3px #333; }
    #slideNav i.activeNav {
      background-color: #a31d4e; }

/* HOMEPAGE - also includes content IDs for layout of Archive & Category pages */
/* THE CSS FOR THE HOMEPAGE AFTER THE HEADER AND SLIDESHOW */
/* SLIDESHOW */
#slideImage img {
  min-height: 100%; }

#slideImage:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 40%;
  background: linear-gradient(rgba(0, 0, 0, 0.8), transparent); }

#preloader {
  position: absolute;
  left: -999999px;
  top: -9999999px;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px; }

/* QUOTE AREAS */
#homeQuoteA {
  background-color: #fff;
  color: #fff; }
  #homeQuoteA > div {
    background-color: rgba(50, 81, 140, 0.52);
    padding: 40px 0px; }

.quotationHome {
  height: auto;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  color: #fff;
  padding: 100px 0px 100px;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed; }
  .quotationHome img {
    position: fixed;
    top: 0;
    z-index: -1;
    height: 100%; }
  .quotationHome:nth-child(2) {
    z-index: -3; }
  .quotationHome:nth-child(3) {
    z-index: -2; }
  .quotationHome.finalQuote {
    background-attachment: local; }

.quotation {
  width: 80%;
  margin: 0px auto;
  text-align: center;
  position: relative;
  z-index: 2; }
  .quotation:not(#FirstQuote) {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px 0px; }
  .quotation p {
    font-family: "Myriad Pro", "arial";
    font-size: 1.3rem;
    line-height: 1.3;
    display: inline-block;
    width: 80%;
    text-align: left; }
  .quotation span {
    font-size: 1.1rem;
    font-style: italic; }
  .quotation:before {
    content: '';
    background: url("../images/quote-start.png");
    vertical-align: top;
    margin-right: 20px; }
  .quotation:after {
    content: '';
    background: url("../images/quote-end.png");
    vertical-align: bottom;
    margin-left: 10px; }
  .quotation:before, .quotation:after {
    width: 50px;
    height: 50px;
    background-size: cover;
    display: inline-block; }

.title {
  font-size: 2.3rem;
  font-weight: bold;
  font-family: "Eurostile", "Eurostile Font";
  position: relative;
  width: 40%;
  display: inline-block;
  box-sizing: border-box; }
  .title span {
    padding: 0px 2%;
    background-color: #f0efef;
    position: relative;
    z-index: 2; }

#changeView {
  float: right;
  text-align: right;
  font-family: "Acumin Pro", "Acumin Pro Font";
  font-size: 1rem;
  color: #32518c;
  text-transform: uppercase;
  margin: 34px 0px 10px; }
  #changeView:hover {
    cursor: pointer; }
  #archiveContent #changeView {
    margin: 5px 0px 10px; }

/* MAIN AREA */
#homeContent, #archiveContent {
  width: 100%;
  padding: 30px 5%;
  box-sizing: border-box;
  background-color: #f0efef; }
  #homeContent .title, #archiveContent .title {
    padding-left: 2%;
    margin: 20px 0px 10px; }
  #homeContent article, #archiveContent article {
    width: 100%;
    padding: 2%;
    background-color: #fff;
    margin-bottom: 30px;
    box-sizing: border-box;
    font-family: "Acumin Pro", "Acumin Pro Font";
    display: flex;
    flex-wrap: wrap;
    transition: all .5s ease; }
    #homeContent article:hover, #archiveContent article:hover {
      box-shadow: 0 0 4px #595a5c; }
      #homeContent article:hover .articleImage img, #archiveContent article:hover .articleImage img {
        transform: scale(1.2, 1.2); }
    #homeContent article .articleImage, #archiveContent article .articleImage {
      flex: 1 1 15%;
      min-width: 200px;
      position: relative;
      overflow: hidden; }
      #homeContent article .articleImage img, #archiveContent article .articleImage img {
        transition: all .5s ease;
        min-width: 100%;
        min-height: 100%;
        height: auto;
        width: auto;
        max-height: 150%;
        max-width: 150%;
        object-fit: cover; }
      #homeContent article .articleImage .articleCat, #archiveContent article .articleImage .articleCat {
        position: absolute;
        bottom: 0px;
        z-index: 2;
        background-color: #32518c;
        width: 100%;
        box-sizing: border-box;
        padding: 6px 5px 3px 5px; }
        #homeContent article .articleImage .articleCat a, #archiveContent article .articleImage .articleCat a {
          color: #fff;
          font-size: .8rem;
          text-transform: uppercase; }
    #homeContent article .articleRight, #archiveContent article .articleRight {
      flex: 1 1 68%;
      min-width: 300px;
      margin-left: 2%; }
      #homeContent article .articleRight .articleDate, #archiveContent article .articleRight .articleDate {
        font-size: .9rem;
        color: #32518c;
        margin-bottom: 15px; }
      #homeContent article .articleRight h2.articleTitle, #archiveContent article .articleRight h2.articleTitle {
        font-size: 1.6rem;
        color: #000;
        margin-bottom: 10px;
        transition: all .5s ease;
        font-weight: 700; }
        #homeContent article .articleRight h2.articleTitle:hover, #archiveContent article .articleRight h2.articleTitle:hover {
          color: #32518c; }
      #homeContent article .articleRight .articleExcerpt, #archiveContent article .articleRight .articleExcerpt {
        color: #000;
        font-size: .9rem;
        margin-bottom: 20px;
        width: 65%;
        line-height: 1.3; }
      #homeContent article .articleRight .keepReading a, #archiveContent article .articleRight .keepReading a {
        font-size: .8rem;
        color: #595a5c;
        position: relative;
        transition: all .5s ease; }
        #homeContent article .articleRight .keepReading a:after, #archiveContent article .articleRight .keepReading a:after {
          content: '';
          position: absolute;
          right: -18%;
          top: 0px;
          width: 0;
          height: 0;
          border-bottom: 5px solid transparent;
          border-right: 5px solid transparent;
          border-top: 5px solid transparent;
          border-left: 11px solid #595a5c;
          clear: both; }
        #homeContent article .articleRight .keepReading a:hover, #archiveContent article .articleRight .keepReading a:hover {
          color: #32518c; }
          #homeContent article .articleRight .keepReading a:hover:after, #archiveContent article .articleRight .keepReading a:hover:after {
            border-left: 11px solid #32518c; }
      #homeContent article .articleRight .articleCatB, #archiveContent article .articleRight .articleCatB {
        float: right; }
        #homeContent article .articleRight .articleCatB a, #archiveContent article .articleRight .articleCatB a {
          text-transform: uppercase;
          border: 1px solid #32518c;
          padding: 8px 15px 6px;
          color: #595a5c;
          font-size: .8rem;
          border-radius: 20px; }
          #homeContent article .articleRight .articleCatB a:hover, #archiveContent article .articleRight .articleCatB a:hover {
            background-color: #32518c;
            color: #fff; }
  #homeContent.headlinesOnly .articleImage, #homeContent.headlinesOnly .articleExcerpt, #homeContent.headlinesOnly .keepReading, #homeContent.headlinesOnly .articleCatB, #homeContent.headlinesOnly .articleCat, #archiveContent.headlinesOnly .articleImage, #archiveContent.headlinesOnly .articleExcerpt, #archiveContent.headlinesOnly .keepReading, #archiveContent.headlinesOnly .articleCatB, #archiveContent.headlinesOnly .articleCat {
    display: none; }
  #homeContent.headlinesOnly article:nth-child(n+6), #archiveContent.headlinesOnly article:nth-child(n+6) {
    margin-bottom: 0px;
    width: 100%;
    height: auto; }
  #homeContent.headlinesOnly article, #archiveContent.headlinesOnly article {
    margin-bottom: 0px;
    padding: 1% 2% .5% !important; }
    #homeContent.headlinesOnly article:hover, #archiveContent.headlinesOnly article:hover {
      box-shadow: none; }
      #homeContent.headlinesOnly article:hover .articleImage img, #archiveContent.headlinesOnly article:hover .articleImage img {
        transform: none; }
    #homeContent.headlinesOnly article:nth-child(3), #archiveContent.headlinesOnly article:nth-child(3) {
      padding-top: 3% !important; }
    #homeContent.headlinesOnly article:nth-child(17), #archiveContent.headlinesOnly article:nth-child(17) {
      padding-bottom: 3% !important;
      margin-bottom: 30px; }
  #homeContent.headlinesOnly .articleRight, #archiveContent.headlinesOnly .articleRight {
    display: flex;
    margin-left: 0px; }
    #homeContent.headlinesOnly .articleRight h2.articleTitle, #archiveContent.headlinesOnly .articleRight h2.articleTitle {
      order: 1;
      margin-top: 0px;
      font-size: 1.5rem; }
    #homeContent.headlinesOnly .articleRight .articleDate, #archiveContent.headlinesOnly .articleRight .articleDate {
      order: 2;
      margin-left: 20px;
      line-height: 2; }
    #homeContent.headlinesOnly .articleRight h2.articleTitle, #homeContent.headlinesOnly .articleRight .articleDate, #archiveContent.headlinesOnly .articleRight h2.articleTitle, #archiveContent.headlinesOnly .articleRight .articleDate {
      margin-bottom: 0px;
      vertical-align: middle; }
  #homeContent #homeViewMore, #archiveContent #homeViewMore {
    display: block;
    clear: both;
    margin: 30px auto; }

@media screen and (min-width: 1270px) {
  #homeContent article:nth-child(n+8) {
    width: 50%;
    padding: 2%;
    background-color: #fff;
    margin-bottom: 30px;
    box-sizing: border-box;
    font-family: "Acumin Pro", "Acumin Pro Font";
    float: left;
    transition: all .5s ease;
    height: 240px; }
    #homeContent article:nth-child(n+8) .articleImage {
      min-width: 80px;
      flex: 1 1 15%; }
      #homeContent article:nth-child(n+8) .articleImage img {
        min-width: 100%;
        min-height: 100%;
        height: auto;
        width: auto;
        max-height: 150%;
        max-width: 150%;
        object-fit: cover;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translateY(-50%) translateX(-50%); }
    #homeContent article:nth-child(n+8) .articleRight {
      flex: 1 1 30%; }
    #homeContent article:nth-child(n+8) .articleExcerpt {
      width: 100%;
      height: 35px;
      overflow: hidden; }
    #homeContent article:nth-child(n+8) .articleCatB {
      display: none; }
    #homeContent article:nth-child(n+8) .keepReading a {
      font-size: .7rem !important; }
    #homeContent article:nth-child(n+8) .articleCatB {
      margin-top: 20px; }
    #homeContent article:nth-child(n+8):hover {
      box-shadow: none; } }
/* SUBCONTENT AREAS */
.homeSubContent {
  width: 100%;
  padding: 30px 5%;
  box-sizing: border-box;
  background-color: #f0efef;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .homeSubContent .title {
    margin: 75px 0px 25px;
    flex: 0 0 100%; }
    .homeSubContent .title:after {
      content: '';
      width: 100%;
      display: inline-block;
      border-top: 1px solid #000;
      position: absolute;
      top: 45%;
      left: 0px; }

.topicBlock {
  min-width: 280px;
  flex: 0 1 32%;
  margin-bottom: 2%;
  background-color: #fff;
  font-family: "Myriad Pro", "arial"; }
  .topicBlock p {
    font-family: "Myriad Pro", "arial" !important; }
  .topicBlock .topicImageWrap {
    overflow: hidden;
    height: 150px; }
  .topicBlock img {
    width: 100%;
    height: auto;
    width: 100%;
    min-height: 100%;
    position: relative;
    top: -25%; }
  .topicBlock h4 {
    font-size: 1.5rem;
    color: #595a5c;
    font-weight: bold;
    margin: 20px 0px 10px 5%; }
  .topicBlock ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px 5% 30px; }
    .topicBlock ul li {
      padding: 5px 0px 0px; }
      .topicBlock ul li a {
        font-size: 1.3rem; }

/* EXPLORE FEATURES */
.homeSubContent #widgetAreas {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  font-family: "Acumin Pro", "Acumin Pro Font"; }
  .homeSubContent #widgetAreas > li {
    list-style-type: none;
    flex: 0 1 48%;
    background-color: #fff;
    position: relative;
    padding-bottom: 45px;
    margin-bottom: 4%; }
    .homeSubContent #widgetAreas > li h3 {
      padding: 13px 10px 7px;
      background-color: #32518c;
      color: #fff;
      font-size: 1.3rem;
      text-transform: uppercase; }
    .homeSubContent #widgetAreas > li > div {
      padding: 30px 25px 25px 25px;
      box-sizing: border-box; }
      .homeSubContent #widgetAreas > li > div img {
        max-width: 100%;
        height: auto; }
      .homeSubContent #widgetAreas > li > div:after {
        content: '';
        display: block;
        clear: both; }
      .homeSubContent #widgetAreas > li > div .imageFloat_hsc {
        width: 35%;
        float: left;
        margin: 0px 20px 0px 0px; }
        .homeSubContent #widgetAreas > li > div .imageFloat_hsc img {
          width: 100%;
          height: auto; }
      .homeSubContent #widgetAreas > li > div .title_hsc {
        font-size: 2.1rem; }
      .homeSubContent #widgetAreas > li > div p {
        margin: 10px 0px;
        line-height: 1.5; }
      .homeSubContent #widgetAreas > li > div button.readMore {
        font-size: .9rem;
        color: #32518c;
        text-transform: uppercase;
        border: 1px solid #595a5c;
        background-color: #fff;
        padding: 5px 15px 6px;
        border-radius: 20px;
        margin-top: 20px;
        position: absolute;
        bottom: 25px;
        right: 25px;
        transition: all .5s ease; }
        .homeSubContent #widgetAreas > li > div button.readMore:focus {
          outline: none; }
        .homeSubContent #widgetAreas > li > div button.readMore:hover {
          cursor: pointer;
          background-color: #32518c;
          color: #fff; }
    .homeSubContent #widgetAreas > li#as a.category_as {
      color: #fff;
      font-size: .8rem;
      background-color: #32518c;
      padding: 4px 5px 2px; }
    .homeSubContent #widgetAreas > li#as .title_hsc {
      margin-top: 10px; }
      .homeSubContent #widgetAreas > li#as .title_hsc a {
        color: #32518c;
        font-size: 1.5rem;
        line-height: 1.3; }
    .homeSubContent #widgetAreas > li#as .imageFloat_hsc {
      color: #32518c;
      font-weight: bold; }
      .homeSubContent #widgetAreas > li#as .imageFloat_hsc img {
        margin-bottom: 5px; }
    .homeSubContent #widgetAreas > li .author-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      .homeSubContent #widgetAreas > li .author-list .user {
        flex: 0 0 31%;
        text-align: center;
        margin-bottom: 20px; }
        .homeSubContent #widgetAreas > li .author-list .user p a {
          color: #32518c;
          font-size: 1rem; }
        .homeSubContent #widgetAreas > li .author-list .user .userImage {
          width: 100%;
          overflow: hidden;
          text-align: center; }
          .homeSubContent #widgetAreas > li .author-list .user .userImage img {
            width: 70%;
            height: auto;
            margin-bottom: 10px; }
        .homeSubContent #widgetAreas > li .author-list .user .biography {
          display: none; }
    .homeSubContent #widgetAreas > li .tptn_posts_daily img {
      float: left;
      margin: 0px 10px 0px 0px; }
    .homeSubContent #widgetAreas > li .tptn_posts_daily .tptn_title {
      color: #32518c;
      display: block;
      font-size: 1rem;
      margin-bottom: 5px;
      line-height: 1.2; }
    .homeSubContent #widgetAreas > li .tptn_posts_daily .tptn_date {
      display: block;
      font-size: .8rem;
      margin-bottom: 10px; }
    .homeSubContent #widgetAreas > li .tptn_posts_daily .tptn_excerpt {
      margin: 5px 0px 5px;
      font-size: .9rem; }
    .homeSubContent #widgetAreas > li .tptn_posts_daily li {
      margin-bottom: 20px; }
    .homeSubContent #widgetAreas > li .tptn_posts_daily li:after {
      content: '';
      display: block;
      clear: both; }

/* PAGES */
/* CSS for the PAGES */
.headerImage {
  height: 30vh;
  overflow: hidden;
  position: relative; }
  .headerImage img {
    width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%); }
  .headerImage h1.entry-title {
    font-size: 5rem;
    color: #fff;
    position: absolute;
    bottom: -21px;
    width: 90%;
    margin: 0px auto;
    max-width: 1240px;
    left: 50%;
    transform: translate(-50%, 0);
    font-family: "Acumin Pro", "Acumin Pro Font";
    text-transform: uppercase;
    line-height: 1; }
  #categoryContent .headerImage, #archiveContent .headerImage {
    margin-bottom: 30px;
    height: 20vh; }

/* The basic CSS of the archive & category pages are under the _homepage since it uses a similar layout */
#categoryContent .articleCat, #archiveContent .articleCat {
  background-color: #32518c;
  padding: 6px 5px 3px 5px;
  display: inline-block;
  color: #fff; }
  #categoryContent .articleCat a, #archiveContent .articleCat a {
    color: #fff; }
#categoryContent h2, #archiveContent h2 {
  margin: 20px 0px 10px; }

#pageContent {
  line-height: 1.4;
  min-height: 80vh; }
  #pageContent h1 {
    font-size: 2rem;
    font-family: "Acumin Pro", "Acumin Pro Font";
    margin: 0px 0px 10px; }
  #pageContent article {
    width: 80%;
    margin: 50px auto; }
  #pageContent p {
    margin: 20px 0px; }

#searchTitle {
  font-size: 1.5rem; }

#contentPost {
  margin: 40px 0px;
  font-family: "Acumin Pro", "Acumin Pro Font"; }
  #contentPost .tptn_counter {
    display: none; }
  #contentPost .crev_green_large {
    color: #009000;
    width: 90%;
    margin: 20px auto; }
  #contentPost .post_thumbnail {
    width: 25%;
    overflow: hidden;
    float: left;
    margin: 0px 1.5% 3px 0px; }
    #contentPost .post_thumbnail img {
      width: 100%;
      height: auto; }
  #contentPost article {
    width: 70%;
    margin: 0px auto; }
    #contentPost article .meta {
      font-size: .9rem;
      color: #32518c;
      margin-bottom: 15px; }
    #contentPost article h1 {
      font-size: 2rem;
      color: #000;
      margin-bottom: 10px;
      transition: all .5s ease;
      font-weight: bold;
      line-height: 1.1;
      margin-right: 15%; }
    #contentPost article .printBtn {
      float: right;
      position: relative;
      top: -10px; }
      #contentPost article .printBtn img {
        width: 80%; }
    #contentPost article p, #contentPost article ul, #contentPost article ol {
      margin: 30px 0px;
      line-height: 1.6; }
      #contentPost article p strong, #contentPost article p b, #contentPost article ul strong, #contentPost article ul b, #contentPost article ol strong, #contentPost article ol b {
        font-weight: bold;
        font-family: "Acumin Pro Bold", "Acumin Pro Bold"; }
    #contentPost article a {
      text-decoration: underline; }
    #contentPost article ul, #contentPost article ol {
      list-style-type: circle;
      margin-left: 30px; }
    #contentPost article blockquote, #contentPost article .crev_blue_large {
      padding: 20px;
      box-sizing: border-box;
      color: #fff;
      background-color: rgba(50, 81, 140, 0.52);
      font-size: .9rem; }
      #contentPost article blockquote p, #contentPost article .crev_blue_large p {
        margin: 0px;
        font-size: .9rem; }
      #contentPost article blockquote.quote, #contentPost article .crev_blue_large.quote {
        font-size: 1.6rem;
        width: 50%;
        float: right;
        background-color: rgba(50, 81, 140, 0.2);
        color: #000;
        line-height: 1.3;
        text-align: center;
        padding: 30px 35px;
        position: relative;
        margin-left: 1.5%; }
        #contentPost article blockquote.quote:before, #contentPost article blockquote.quote:after, #contentPost article .crev_blue_large.quote:before, #contentPost article .crev_blue_large.quote:after {
          width: 30px;
          height: 30px;
          position: absolute; }
        #contentPost article blockquote.quote:before, #contentPost article .crev_blue_large.quote:before {
          content: '';
          background: url("../images/quote-start.png");
          vertical-align: top;
          margin-right: 20px;
          left: 2%;
          top: 15px;
          background-size: cover; }
        #contentPost article blockquote.quote:after, #contentPost article .crev_blue_large.quote:after {
          content: '';
          background: url("../images/quote-end.png");
          vertical-align: bottom;
          margin-left: 10px;
          bottom: 25px;
          right: 2%;
          background-size: cover; }
        #contentPost article blockquote.quote p, #contentPost article .crev_blue_large.quote p {
          font-size: 1.6rem;
          line-height: 1.3;
          text-align: center; }
      #contentPost article blockquote:after, #contentPost article .crev_blue_large:after {
        clear: both;
        content: '';
        display: block; }
  #contentPost .articleNav {
    vertical-align: top;
    width: 20px;
    height: 200px; }
    #contentPost .articleNav a {
      font-size: 5rem;
      color: #a7a9ac; }
    #contentPost .articleNav#leftNav {
      float: left;
      left: 11%;
      padding-top: 30px;
      position: fixed; }
    #contentPost .articleNav#rightNav {
      float: right;
      right: 11%;
      padding-top: 30px;
      position: fixed; }

#disqus_thread {
  margin: 0px auto;
  width: 70%; }

/* LOGIN AREAS */
#theme-my-login {
  font-family: "Acumin Pro", "Acumin Pro Font"; }
  #theme-my-login h3 {
    font-size: 1.3rem;
    background-color: #32518c;
    color: #fff;
    padding: 5px 5px 0px 5px; }
  #theme-my-login .tml-form-table {
    margin: 20px 0px;
    font-size: 1rem;
    width: 50%;
    min-width: 250px; }
    #theme-my-login .tml-form-table td {
      margin-bottom: 20px; }
    #theme-my-login .tml-form-table input {
      font-size: 1rem;
      padding: 5px; }
  #theme-my-login .description {
    font-size: .7rem; }
  #theme-my-login button.button, #theme-my-login input[type=submit] {
    background-color: #a31d4e;
    border: 0px;
    padding: 8px 15px;
    font-size: 1rem;
    color: #fff; }
    #theme-my-login button.button:hover, #theme-my-login input[type=submit]:hover {
      cursor: pointer; }

#post-20822, #post-20825 {
  text-align: center; }
  #post-20822 #theme-my-login, #post-20825 #theme-my-login {
    margin: 0px auto; }
    #post-20822 #theme-my-login input[type=text], #post-20822 #theme-my-login input[type=password], #post-20825 #theme-my-login input[type=text], #post-20825 #theme-my-login input[type=password] {
      padding: 8px 5px 3px;
      font-size: 1rem;
      margin-top: 0px; }
      #post-20822 #theme-my-login input[type=text]:focus, #post-20822 #theme-my-login input[type=password]:focus, #post-20825 #theme-my-login input[type=text]:focus, #post-20825 #theme-my-login input[type=password]:focus {
        outline: none; }
    #post-20822 #theme-my-login p, #post-20825 #theme-my-login p {
      border-bottom: 0px !important; }
    #post-20822 #theme-my-login .tml-rememberme-submit-wrap, #post-20825 #theme-my-login .tml-rememberme-submit-wrap {
      display: block; }
      #post-20822 #theme-my-login .tml-rememberme-submit-wrap p.tml-rememberme-wrap, #post-20825 #theme-my-login .tml-rememberme-submit-wrap p.tml-rememberme-wrap {
        border-bottom: 0px !important;
        display: block;
        width: 100%; }
      #post-20822 #theme-my-login .tml-rememberme-submit-wrap p.tml-submit-wrap, #post-20825 #theme-my-login .tml-rememberme-submit-wrap p.tml-submit-wrap {
        margin: 0px auto;
        display: block;
        text-align: center;
        padding: 8px 15px;
        border-bottom: 0px; }
        #post-20822 #theme-my-login .tml-rememberme-submit-wrap p.tml-submit-wrap input[type=submit], #post-20825 #theme-my-login .tml-rememberme-submit-wrap p.tml-submit-wrap input[type=submit] {
          width: 200px; }

.tags {
  font-size: .9rem;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-top: 20px; }
  .tags a {
    font-size: .9rem; }
    .tags a:hover {
      color: #32518c; }

.author {
  font-family: "Acumin Pro", "Acumin Pro Font"; }
  .author .archive-meta {
    padding: 2%;
    background-color: #fff;
    font-size: .9rem;
    line-height: 1.4;
    margin: 0px auto 50px auto;
    width: 80%;
    min-width: 250px; }
    .author .archive-meta img {
      margin: 0px 2% 0px 0px;
      width: 14%;
      height: auto;
      float: left; }
    .author .archive-meta:after {
      content: '';
      clear: both;
      display: block; }

@media print {
  #header, .headerImage, #comments, footer, .articleNav, .printBtn, .a2a_kit.a2a_vertical_style {
    display: none; }

  #contentPost article {
    width: 100%; }

  #contentPost article h1 {
    margin-right: 0px; } }
/* COMMENTS */
/* COMMENTS */
#comments {
  border-top: 2px solid #000;
  width: 70%;
  margin: 50px auto; }

h3.comments-title {
  margin-top: 25px;
  font-size: 1.3rem;
  text-transform: uppercase; }

#comments-list {
  font-family: "Acumin Pro", "Acumin Pro Font"; }
  #comments-list ul {
    margin: 35px 0px; }
    #comments-list ul img {
      float: left;
      margin: 0px 20px 0px 0px; }
    #comments-list ul .comment-author {
      margin-bottom: 5px; }
    #comments-list ul .comment-meta a {
      font-size: .8rem;
      margin-bottom: 5px; }
    #comments-list ul p {
      margin: 10px 0px 10px 75px;
      line-height: 1.4;
      font-size: .9rem; }
    #comments-list ul li {
      margin-top: 25px;
      padding-top: 25px;
      border-top: 1px solid #f0efef; }
    #comments-list ul ul {
      margin-left: 75px; }
      #comments-list ul ul li {
        border-top: 1px solid #f0efef; }
        #comments-list ul ul li ul li {
          border-top: 1px solid #f0efef; }
    #comments-list ul .reply a {
      margin-left: 75px;
      font-size: .8rem; }
  #comments-list > ul > li:first-child {
    border-top: 0px; }

h3#reply-title {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-top: 75px; }

#respond .logged-in-as {
  margin: 20px 0px;
  font-size: .9rem; }
#respond #commentform label {
  display: block;
  font-size: .9rem;
  margin-bottom: 5px; }
#respond #commentform input, #respond #commentform textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
  color: #000;
  font-size: .9rem;
  padding: 8px 8px 5px; }
#respond #commentform p {
  font-size: .9rem;
  margin: 20px 0px; }
#respond #commentform #submit {
  margin-top: 20px;
  width: 250px;
  color: #fff;
  padding: 10px 0px; }
  #respond #commentform #submit:hover {
    cursor: pointer; }

/* FOR ALL PAGES */
.wrapper {
  width: 94%;
  margin: 0px auto;
  max-width: 1240px; }
  .wrapper img {
    max-width: 100%;
    height: auto; }

.alignleft {
  float: left;
  margin: 0px 1.5% 0px 0px; }

.alignright {
  float: right;
  margin: 0px 0px 0px 1.5%; }

p.wp-caption-text {
  font-size: .6rem;
  text-align: left;
  margin: 5px 0px !important; }

/* FORM SITEWIDE */
input, textarea {
  padding: 8px 5px 5px;
  font-size: 1rem;
  transition: all .5s ease; }

input:focus, textarea:focus {
  outline: none; }

input[type=submit]:hover, button:hover {
  opacity: .9; }

button, input[type=submit] {
  background-color: #a31d4e;
  border: 0px;
  padding: 8px 15px;
  font-size: 1rem;
  color: #fff; }
  button:focus, input[type=submit]:focus {
    cursor: pointer; }

div.wpcf7-response-output {
  font-size: 1rem; }

span.wpcf7-not-valid-tip {
  color: #a31d4e; }

/* FOOTER */
#bottomBar {
  text-align: center;
  padding: 3px 5px;
  font-weight: bold;
  box-sizing: border-box; }
  #bottomBar li {
    padding: 8px 35px 5px; }

/* MOBILE */
/* ALL THE MOBILE SASS */
@media screen and (max-width: 600px) {
  body {
    font-size: 40%; }

  .branding #branding-right {
    text-align: center; }
    .branding #branding-right a:nth-child(2) {
      margin: 0px; }

  #searchform {
    display: block !important; }

  /* HOME and pages */
  #homeContent article .articleImage, #archiveContent article .articleImage, #categoryContent article .articleImage {
    min-width: 100%;
    width: 100%; }
  #homeContent article .articleRight, #archiveContent article .articleRight, #categoryContent article .articleRight {
    min-width: 0px;
    width: 100%;
    margin: 30px 0px; }
    #homeContent article .articleRight .articleExcerpt, #archiveContent article .articleRight .articleExcerpt, #categoryContent article .articleRight .articleExcerpt {
      width: 100%; }
    #homeContent article .articleRight .keepReading, #archiveContent article .articleRight .keepReading, #categoryContent article .articleRight .keepReading {
      text-align: center; }
  #homeContent article .articleCatB, #archiveContent article .articleCatB, #categoryContent article .articleCatB {
    margin-top: 30px;
    float: none !important;
    text-align: center; }
    #homeContent article .articleCatB a, #archiveContent article .articleCatB a, #categoryContent article .articleCatB a {
      padding: 5px !important; }

  .quotationHome {
    background-attachment: scroll !important; }

  .homeSubContent .topicBlock {
    flex: 100%; }
  .homeSubContent #widgetAreas > li {
    flex: 1 1 100%; }

  #contentPost article {
    width: 94%; }
    #contentPost article blockquote.quote {
      width: 100%;
      margin-bottom: 20px; }
  #contentPost .articleNav#leftNav {
    left: 1%;
    padding-top: 0px; }
  #contentPost .articleNav#rightNav {
    right: 3%;
    padding-top: 0px; }

  #bottomBar li {
    padding: 8px 15px 5px; } }
@media screen and (max-width: 1023px) {
  /* MENU */
  #mainMenu #mobileMenu {
    display: block;
    position: relative;
    margin: 10px 20px; }
    #mainMenu #mobileMenu div {
      width: 35px;
      height: 5px;
      background-color: black;
      margin: 6px 0;
      transition: 0.4s; }
    #mainMenu #mobileMenu.change div:first-child {
      -webkit-transform: rotate(-45deg) translate(-9px, 6px);
      transform: rotate(-45deg) translate(-9px, 7px); }
    #mainMenu #mobileMenu.change div:nth-child(2) {
      opacity: 0; }
    #mainMenu #mobileMenu.change div:nth-child(3) {
      -webkit-transform: rotate(45deg) translate(-8px, -8px);
      transform: rotate(45deg) translate(-8px, -7px); }
    #mainMenu #mobileMenu:after {
      content: 'MENU';
      position: absolute;
      left: 50px;
      top: 7px;
      font-size: 1.3rem; }
  #mainMenu ul#menu-main-menu {
    background-color: #f0f0f0;
    position: absolute;
    z-index: 999;
    display: none; }
    #mainMenu ul#menu-main-menu li {
      width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid #d6d6d6; }
      #mainMenu ul#menu-main-menu li:last-child {
        border-bottom: 0px; }

  /* HOME */
  .quotation {
    width: 95%;
    text-align: center; }

  .quotation:before, .quotation:after {
    width: 25px;
    height: 25px; }

  .quotation p {
    width: 70%;
    text-align: left; }

  /* PAGES */
  .headerImage {
    display: block; }
    .headerImage img {
      width: auto;
      max-height: 100%;
      min-width: 100%; }
    .headerImage h1.entry-title {
      font-size: 3rem;
      bottom: 0px; }

  #homeContent article .articleRight, #archiveContent article .articleRight, #categoryContent article .articleRight {
    min-width: 0px;
    width: 100%;
    margin: 30px 0px; }
    #homeContent article .articleRight .articleExcerpt, #archiveContent article .articleRight .articleExcerpt, #categoryContent article .articleRight .articleExcerpt {
      width: 100%; }
    #homeContent article .articleRight .keepReading, #archiveContent article .articleRight .keepReading, #categoryContent article .articleRight .keepReading {
      text-align: center; } }

/*# sourceMappingURL=style.css.map */
