/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -webkit-box-sizing: border-box;
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: border-box;
}
body {
  background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}
caption,
th,
td {
  font-weight: normal;
  text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
a {
  color: #e20121;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
  color: #000000;
}
a img {
  border: 0;
}
/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
/* Google Fonts */
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}
p {
  font-family: Arial, sans-serif;
  margin-bottom: 1.5em;
}
b,
strong {
  font-weight: bold;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
blockquote {
  margin: 0 1.5em;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code,
kbd,
tt,
var {
  font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  bottom: 1ex;
}
sub {
  top: .5ex;
}
small {
  font-size: 75%;
}
big {
  font-size: 125%;
}
/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul,
ol {
  margin: 0 0 1.5em 3em;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}
figure {
  margin: 0;
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
th {
  font-weight: bold;
}
/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
  font-size: 100%;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Improves appearance and consistency in all browsers */
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #666;
  border: none;
  border-radius: 0px;
  background-color: #d2d2d2;
  font-size: 20px;
  line-height: 28px;
  width: 100%;
  height: 40px;
}
select option {
  padding: 0 8px;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  background: #1a1a1a;
  color: #ffffff;
  width: 100%;
  cursor: pointer;
  /* Improves usability and consistency of cursor style between image-type 'input' and others */
  -webkit-appearance: button;
  /* Corrects inability to style clickable 'input' types in iOS */
  font-size: 16px;
  line-height: 1;
  padding: 12px;
}
input[type="submit"] {
  width: auto;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover{
  background: #d2d2d2;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active{
  border-color: #aaa #bbb #bbb;
  -webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
  -webkit-appearance: textfield;
  /* Addresses appearance set to searchfield in S5, Chrome */
  -webkit-box-sizing: content-box;
  /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
  border: 0;
  padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: none;
  border-radius: 0px;
  background-color: #f1f3eb;
  font-size: 20px;
  line-height: 28px;
  width: 100%;
}
input[type="search"]{
  width:auto;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 6px 12px;
}
textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  padding-left: 3px;
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #d2d2d2;
}
.wpcf7-form p {
  color: #505050;
  font-size: 14px;
  padding-right: 10px;
}
/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  width: 100%;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  text-align: center;
  width: 100%;
}
.main-navigation li {
  display: inline-block;
  position: relative;
  margin: 0 20px;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
.main-navigation ul ul {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul {
  left: auto;
}
.main-navigation ul ul li:hover > ul {
  left: 100%;
}
/* Small menu */
.menu-toggle {
  display: none;
}
@media screen and (max-width: 600px) {
  .menu-toggle,
  .main-navigation.toggled .nav-menu {
    display: block;
  }
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
}
/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}
/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: '';
  display: table;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}
/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 2em;
}
/* Make sure select elements fit in widgets */
.widget select {
  max-width: 100%;
}
/* Search widget */
.widget_search .search-submit {
  display: none;
}
/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.hentry {
  margin: 0;
}
.updated {
  display: none;
}
.single .byline,
.group-blog .byline {
  display: inline;
}
.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}
.paginate-links {
  clear: both;
  float: right;
}
/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}
/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}
/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
  display: block;
}
/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%;
}
/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0 auto;
}
.wp-caption-text {
  text-align: center;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.grid,
.grid2,
.grid3,
.grid5,
.grid6 {
  width: 100%;
  overflow: hidden;
}
.grid .block {
  width: 33.3333%;
  float: left;
  height: auto;
  color: #CCC;
}
.grid2 .block {
  width: 50%;
  float: left;
  height: auto;
  color: #CCC;
}
.grid3 .block {
  width: 33.333333%;
  float: left;
  padding-bottom: 20px;
}
.grid5 .block {
  width: 20%;
  float: left;
  height: auto;
}
.grid6 .block {
  width: 20%;
  float: left;
  height: auto;
  color: #CCC;
}
.grid .block header {
  margin: 20px 20px 0 20px;
  padding: 10px;
  background: #333;
}
.grid .block .copy {
  margin: 0 20px 20px 20px;
  padding: 10px;
  background: #333;
}
.grid .block-2 {
  width: 33.3333%;
  float: left;
}
.grid .block-6 {
  width: 66.666666%;
  float: left;
}
.block-wrap {
  padding: 40px;
}
@media only screen and (max-width: 768px) {
  .grid-bind .block,
  .grid .block {
    width: 100%;
    padding: 0px;
  }
  .grid2 .block {
    width: 50%;
  }
  .grid3 .block {
    width: 33.333333%;
  }
  .grid5 .block {
    width: 50%;
  }
  .grid6 .block {
    width: 50%;
  }
  .grid .block-2 {
    width: 100%;
  }
  .grid .block-6 {
    width: 100%;
  }
  .text-group {
    padding: 20px;
  }
  .block .wrap {
    height: auto;
  }
  .content-bottom-slider {
    width: 100%;
  }
  .content-individual-property-top-details-sidebar {
    width: 100%;
  }
  footer {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .grid .block {
    width: 50%;
  }
  .grid2 .block {
    width: 50%;
  }
  .grid3 .block {
    width: 33.333333%;
  }
  .grid6 .block {
    width: 25%;
  }
  .block .wrap {
    height: 550px;
  }
  .content-bottom-slider {
    width: 50%;
  }
  .content-individual-property-top-details-sidebar {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .grid .block {
    width: 33%;
  }
  .block .wrap {
    height: 460px;
  }
  .grid2 .block {
    width: 50%;
  }
  .grid3 .block {
    width: 33.333333%;
  }
  .grid6 .block {
    width: 20%;
  }
  .content-bottom-slider {
    width: 70%;
  }
  .content-individual-property-top-details-sidebar {
    width: 30%;
  }
}
@media only screen and (min-width: 1400px) {
  .grid .block {
    width: 25%;
  }
  .grid2 .block {
    width: 50%;
  }
  .grid3 .block {
    width: 33.333333%;
  }
  .grid6 .block {
    width: 16.6666666667%;
  }
  .block .wrap {
    height: 420px;
  }
}
@media only screen and (min-width: 1600px) {
  .grid .block {
    width: 20%;
  }
  .grid2 .block {
    width: 50%;
  }
  .grid3 .block {
    width: 33.333333%;
  }
  .grid6 .block {
    width: 12.5%;
  }
  .block .wrap {
    height: 420px;
  }
  .agents-list .block .wrap {
    height: 320px;
  }
}
@media only screen and (min-width: 2400px) {
  .grid .block {
    width: 20%;
  }
  .grid2 .block {
    width: 50%;
  }
  .grid3 .block {
    width: 33.333333%;
  }
  .grid6 .block {
    width: 12.5%;
  }
  .block .wrap {
    height: 400px;
  }
}
/* iPhone 4 ----------- */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* Styles */
}
body {
  line-height: 1.6em;
  font-size: 12px;
  text-transform: normal;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 2em;
  text-transform: none;
  text-decoration: none;
  font-weight: normal;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1em 0 .5em;
}
h1 {
  font-size: 22px;
  text-transform: normal;
  font-family: Arial, sans-serif;
  font-size: 30px;
  line-height: 1.2em;
  text-transform: none;
  text-decoration: none;
  letter-spacing: 0px;
  font-weight: bold;
  font-style: normal;
}
h2 {
  font-weight: bold;
  font-size: 18px;
  text-transform: normal;
  letter-spacing: 0px;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.2em;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 400;
  font-style: normal;
}
h3 {
  font-weight: bold;
  text-transform: normal;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.2em;
  text-transform: none;
  text-decoration: none;
  letter-spacing: 0px;
  font-weight: 700;
  font-style: normal;
}
p {
  line-height: 1.6em;
  font-size: 12px;
  text-transform: normal;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 2em;
  text-transform: none;
  text-decoration: none;
  font-weight: normal;
  font-style: normal;
  margin: 0 0 1em;
}
blockquote {
  margin: 1em 0;
  padding: 0 0 0 1em;
  border: 1px solid #777;
  border-width: 0 0 0 1px;
}
ul,
ol,
dl {
  line-height: 1.6em;
  font-size: 12px;
  text-transform: normal;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 2em;
  text-transform: none;
  text-decoration: none;
  font-weight: normal;
  font-style: normal;
  margin: 1em 0;
}
nav ul,
nav ol {
  margin: 0;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
#masthead,
#content,
#footer {
  max-width: 1120px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
#masthead{
  margin-bottom: 20px;
}
#content {
  max-width: 1400px;
  display: flex;
  margin: 5px auto;
  /** Carousel **/
  /** Carousel Controls **/
}
#content .jcarousel-wrapper {
  position: relative;
}
#content .jcarousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}
#content .jcarousel ul {
  width: 20000em;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
#content .jcarousel li {
  float: left;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#content .jcarousel img {
  display: block;
  max-width: 100%;
}
#content .jcarousel-control-prev,
#content .jcarousel-control-next {
  display: block;
  position: absolute;
  top: 0;
  width: 90px;
  height: 180px;
  text-align: center;
  color: #CCC;
  text-decoration: none;
  font: 48px/52px Arial, sans-serif;
  opacity: 0.5;
}
#content .jcarousel-control-prev:hover,
#content .jcarousel-control-next:hover {
  opacity: 1;
}
#content .jcarousel-control-prev {
  left: -65px;
}
#content .jcarousel-control-prev:after {
  content: "\2039";
  position: absolute;
  top: 40%;
}
#content .jcarousel-control-next {
  right: -50px;
}
#content .jcarousel-control-next:after {
  content: "\203A";
  position: absolute;
  top: 40%;
}
#content .featured ul {
  list-style: none;
  height: 180px;
  padding: 0;
  margin: 1.5em 0 1.5em 0;
  vertical-align: top;
  overflow: hidden;
}
#content .featured ul li {
  margin: 0 10px 0 0;
}
#content .featured ul li a {
  display: block;

}
#content .featured ul li img {
  width: 146px;
  height: 146px;
}
#content .featured ul li:first-child {
  margin-left: 0;
}
#content .featured ul li:nth-child(7) {
  margin-right: 4;
}
#content .featured ul li .caption {
  height: 30px;
  display: block;
  max-width: 132px;
  overflow: hidden;
  text-align: left;
  font-family: Arial, sans-serif;
  font-size: 13px;
}
#content .featured .textwidget {
  display: inline;
  margin-left: 4px;
}
#primary {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 60%;
  float: left;
}
#primary .widget {
  margin: 0;
}
#primary #text-5 {
  margin-bottom: 30px;
}
#primary article {
  margin-bottom: 6em;
  font-size: 15px;
}
#primary article .entry-header span.subhead {
  color: #afafaf;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#primary article .entry-header .entry-title {
  margin: 0;
}
#primary article .entry-header .entry-title a {
  color: #000000;
}
#primary article .entry-header .entry-title a:hover {
  text-decoration: none;
  color: #e20121;
}
#primary article .entry-summary > img {
  margin-bottom: 2em;
  min-width: 100%;
}
#primary article .entry-summary p {
  font-family: "Georgia", serif;
}
#primary article .entry-summary .read-more {
  font-family: Arial, sans-serif;
  font-weight: bold;
}
#primary article .entry-content > img {
  margin-bottom: 2em;
}
#primary article .entry-content p {
  font-family: "Georgia", serif;
}
#primary article .entry-content p img {
  padding: 0 0 2em 0;
}

#primary article .entry-content .one_half p {
  width: 95%;
}
#primary article .entry-footer {
  font-size: 13px;
}
#primary article .entry-footer .tags-links {
  display: none;
}
#primary article .entry-footer .related {
  overflow: hidden;
}
#primary article .entry-footer .related h4 {
  margin: 2.5em 0 1.5em 0;
  font-size: 14px;
  font-weight: bold;
}
#primary article .entry-footer .related ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  vertical-align: top;
  overflow: hidden;
}
#primary article .entry-footer .related ul li {
  display: block;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0 8px 0 0;
  width: 116px;
  height: auto;
}
#primary article .entry-footer .related ul li a {
  display: block;
}
#primary article .entry-footer .related ul li .image-placeholder {
  width: 108px;
  height: 108px;
  background-color: #CCC;
}
#primary article .entry-footer .related ul li img {
  width: 108px;
  height: 108px;
}
#primary .post-navigation {
  padding: 2em 0;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}
#primary #comments .comment-form-comment label {
  font-weight: bold;
}
#primary #comments .form-allowed-tags {
  display: none;
}
#primary .search header h4 {
  color: #000000;
}
#secondary {
  width: 20%;
}
/* .page #secondary.left-column,
.search #secondary.left-column,
.single #secondary.left-column {
  margin-right: 0px;
  margin-left: 40px;
} */
#secondary.left-column {
  margin-right: 20px;
}
#secondary.left-column aside{
  max-width: 85%;
}
#secondary.right-column aside{
  max-width: 85%;
}
#secondary.left-column .quote-wrap{
  /* background:black;
  color: white; */
  padding: 0 0 0 0;
}
#secondary.left-column .quote-wrap .quote{
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom:10px;
}
#secondary.left-column .quote-wrap .quote:before{
  content:"“";
}
#secondary.left-column .quote-wrap .quote:after{
  content:"”";
}
#secondary.right-column {
  margin-left: 40px;
  margin-right: 20px;
}

#masthead .search-form {
  position: relative;
}
#secondary .search-form > label:before,
#masthead .search-form > label:before {
  position: absolute;
  content: "\f002";
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  top: 9px;
  left: 16px;
}
#secondary .search-form .search-submit,
#masthead .search-form .search-submit{
  position: absolute;
  top:0;
  right:0;
  border:0;
  display: none;
}
#secondary .search-form .search-field,
#masthead .search-form .search-field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px 12px 8px 40px;
  font-size: 18px;
  background-color: #FFF;
  border: 1px solid #CCC;
  border-radius: 0px;
}
#secondary h1 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
}
#secondary h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  max-width: 180px;
  
}
#secondary h1{
  text-transform: uppercase;
  font-weight: 200;
  border-bottom: 1px solid black;
  padding-bottom: 6px;
  margin-bottom: 10px;
  
}
#secondary aside {
  font-size: 15px;
}
#secondary aside ul {
  list-style: none;
  padding: 0;
}
#secondary aside ul li {
  font-family: "Georgia", serif;
}
#secondary aside ul li a {
  color: #e20121;
}
#secondary aside ul li a:hover {
  color: #505050;
}
#secondary aside:nth-child(2) {
  font-family: "Georgia", serif;
  color: #505050;
  margin-top: 3.55em;
  margin-bottom: 3.55em;
}
#secondary{
  margin-top: 65px;
}
#secondary aside:nth-child(3) .textwidget > div {
  margin-bottom: 1.5em;
}
.page aside:nth-child(4) {
  /* display: none; */
}
.page aside:nth-child(5) {
  /* display: none; */
}
.site-branding {
  margin: 4px auto 0;
}
.site-branding h1 {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.site-branding h1 a {
  display: block;
  width: auto;
}
.site-branding h1 a img {
  width: 100%;
  height: auto;
}
.site-branding h2 {
  display: none;
}
footer {
  /* ++++++++++++++++
   ++++ SOCIAL ++++
   ++++++++++++++++ */
  border-top: 1px solid #d2d2d2;
  padding-top: 2em;
}
footer #socialLinks {
  text-align: right;
}
footer #socialLinks:before,
footer #socialLinks:after {
  content: "";
  display: table;
}
footer #socialLinks:after {
  clear: both;
}
footer #socialLinks a,
footer #socialLinks a:visited {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  width: 18px;
  height: 18px;
  margin: 0 0 10px 10px;
  color: #1f1f1f;
  text-decoration: none !important;
}
footer #socialLinks a:before,
footer #socialLinks a:visited:before {
  font-size: 18px;
}
footer #socialLinks a:hover,
footer #socialLinks a:visited:hover {
  color: #444;
}
#site-navigation {
  display: flex;
  align-items: center;
  justify-content:center;
  border-bottom: 1px solid #CCC;
  margin: 12px auto 0;
}
#site-navigation .menu-toggle {
  display: none;
}
#site-navigation .menu ul,
#site-navigation .menu-primary-container ul {
  list-style: none;
}
#site-navigation .menu ul li,
#site-navigation .menu-primary-container ul li {
  text-transform: uppercase;
}
#site-navigation .menu ul li a,
#site-navigation .menu-primary-container ul li a {
  color: #afafaf;
  font-size: 13px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 4em;
  letter-spacing: 8px;
  font-weight: 400;
  font-style: normal;
}
#site-navigation .menu ul li a:hover,
#site-navigation .menu-primary-container ul li a:hover {
  color: #000000;
  text-decoration: none;
}
#site-navigation .menu ul li.current_page_item a,
#site-navigation .menu-primary-container ul li.current_page_item a {
  color: #e20121;
}

.wp-block-image img {
  width: 100%;
}
.entry-summary img{
  width: 100%;
}

@media (max-width: 1024px) {
  #content{
    flex-direction: column;
  }
  /* .page #secondary.left-column,
  .home #secondary.right-column,
  .search #secondary.left-column, 
  .single #secondary.left-column {
    margin-right: 0px;
    margin-left: 0px;
  } */
  .home #primary{
    order:1;
  }
  .home #secondary.left-column{
    order:2;
  }
  .home #secondary.right-column{
    order:3;
  }
  /* .home #content{
    flex-direction: column-reverse;
  } */
  #masthead {
    height: auto;
    overflow: visible;
  }
  #masthead .menu-primary-container{
    margin-top:10px;
  }
  #site-navigation{
    flex-direction: column;
  }
  #site-navigation .search-form{
    margin: 10px 0;
  }
  /* #masthead .search-form{
    display: none;
  } */
  #content {
    margin: 5px auto;
  }
  #content .featured ul {
    padding: 0 8px;
  }
  #content .featured ul li img {
    width: 140px;
    height: 140px;
  }
  #primary {
    width: 100%;
    float: none;
    padding-right: 0px;
    padding-left: 0px;
  }
  #primary .widget {
    display: none;
  }
  #primary article .entry-footer .related ul li {
    display: block;
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0 10px 0 0;
    width: 140px;
    height: auto;
  }
  #primary article .entry-footer .related ul li a {
    display: block;
  }
  #primary article .entry-footer .related ul li .image-placeholder {
    width: 130px;
    height: 130px;
    background-color: #CCC;
  }
  #primary article .entry-footer .related ul li img {
    width: 130px;
    height: 130px;
  }
  #secondary {
    margin-top: 0px;
    width: 100%;
    float: none;
    padding-right: 0px;
    padding-left: 0px;
  }
  #secondary aside:nth-child(3) .textwidget > div {
    margin-left: -10px;
  }
  .site-branding {
    margin: 4px auto 0;
  }
  .site-branding h1 {
    display: block;
    margin: 0 !important;
    /* height: 60px; */
  }
  .site-branding h1 a {
    display: block;
    width: auto;
  }
  .site-branding h1 a img {
    width: 90%;
    margin: 0 5%;
    height: auto;
  }
  .site-branding h2 {
    display: none;
  }
  #site-navigation {
    height: auto;
  }
  #site-navigation .menu,
  #site-navigation .menu-primary-container {
    height: auto;
  }
  #site-navigation .menu ul,
  #site-navigation .menu-primary-container ul {
    list-style: none;
  }
  #site-navigation .menu ul li,
  #site-navigation .menu-primary-container ul li {
    text-transform: uppercase;
  }
  #site-navigation .menu ul li a,
  #site-navigation .menu-primary-container ul li a {
    height: auto;
    line-height: 2em;
  }
  footer .textwidget {
    padding: 0 20px;
  }
}
.covers {
  width:33%;
  float:left;
  display:inline-block;
  margin-bottom: 20px;
  }