/* Theme
  ==========================================================================

  1.0 Base
    1.1 General
    1.2 Typography
    1.3 Forms
    1.4 Wordpress
  2.0 Layout
    2.1 Blocks
    2.2 Grid
    2.3 Helpers
  3.0 Module
    3.1 Sections
    3.2 Entries
    3.3 Parts
    3.4 Navigation
    3.5 Widgets
    3.6 Comments
  4.0 State
    4.1 Plugins
    4.2 Animations

*/
/* 1.0 Base
  ========================================================================== */
/* 1.1 General
  -------------------------------------------------------------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 50%;
  }
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  color: #7a7a7a;
  overflow-x: hidden;
}
body > * {
  font-size: 1.4rem;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

figure {
  margin: 0;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  margin: 7.5% 0;
  height: 1px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

/* 1.2 Typography
  -------------------------------------------------------------------------- */
blockquote {
  padding: 2% 3% 1% 3%;
  position: relative;
  font-size: 3.0rem;
  font-weight: lighter;
  text-align: center;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  blockquote {
    padding: 2% 0;
    font-size: 1.8rem;
  }
}
blockquote:after {
  padding: 2.5% 0 0 0;
  content: "\f10e";
  display: block;
  font-family: "fontawesome";
  font-size: 2.0rem;
  opacity: 0.25;
}
blockquote p {
  margin: 0;
}

p {
  margin: 25px 0;
}

table {
  width: 100%;
  max-width: none;
  min-width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}
table tr {
  background-color: white;
}
table tr th,
table tr td {
  font-size: 1.2rem;
  text-align: left;
  border: 1px solid black;
  line-height: 1.5;
}
table tr th {
  padding: 10px 20px;
  text-transform: uppercase;
}
table tr td {
  padding: 3%;
}

pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

/* 1.3 Forms
  -------------------------------------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  color: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
  border: 0;
}

label {
  padding: 0 5px 0 0;
  display: block;
  font-weight: normal;
}

input, textarea {
  padding: 5px 15px;
  width: 100%;
  max-width: 100%;
  font-size: 1.4rem;
  border: 1px solid #7a7a7a;
  background-color: white;
  box-shadow: none;
  outline: none;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

select {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
}

textarea {
  padding: 15px;
  height: 200px;
  resize: vertical;
}

input[type="submit"] {
  margin: 2.5% 0 0 0;
  padding: 0 30px;
  width: auto;
  min-width: 0;
  font-weight: bold;
  color: white;
  border: 1px solid #c1d72e;
  background: #c1d72e;
}

/* 1.4 Wordpress
  -------------------------------------------------------------------------- */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.gallery-caption {
  max-width: 100%;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  padding: 2.5% 5%;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.75;
  background: rgba(0, 0, 0, 0.05);
}

.sticky {
  max-width: 100%;
}

.bypostauthor {
  max-width: 100%;
}

.screen-reader-text {
  display: none;
}

.mejs-audio {
  max-width: 100%;
  overflow: hidden;
}

.alignleft {
  text-align: left;
}

.alignright {
  text-align: right;
}

.aligncenter {
  text-align: center;
}

img.alignnone, figure.alignnone {
  margin: 6% 0;
}
@media screen and (max-width: 767px) {
  img.alignnone, figure.alignnone {
    margin: 6% auto;
  }
}

img.alignleft, figure.alignleft {
  margin: 1% 8% 2% 0;
  float: left;
}
@media screen and (max-width: 767px) {
  img.alignleft, figure.alignleft {
    margin: 6% auto;
    float: none;
  }
}

img.aligncenter, figure.aligncenter {
  margin: 6% auto;
}
@media screen and (max-width: 767px) {
  img.aligncenter, figure.aligncenter {
    margin: 6% auto;
  }
}

img.alignright, figure.alignright {
  margin: 1% 0 2% 8%;
  float: right;
}
@media screen and (max-width: 767px) {
  img.alignright, figure.alignright {
    margin: 6% auto;
    float: none;
  }
}

/* 2.0 Layout
  ========================================================================== */
/* 2.1 Blocks
  -------------------------------------------------------------------------- */
#site-wrap {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  #site-wrap {
    padding: 0;
  }
}
#site-wrap .page-row {
  display: table-row;
  min-height: 1px;
  overflow: hidden;
}
#site-wrap .page-row-expanded {
  height: 100%;
  overflow: hidden;
}

#site-header {
  padding: 15px 0 0 0;
}
@media screen and (max-width: 767px) {
  #site-header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #7a7a7a;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  }
}
#site-header #header-top {
  display: table;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  table-layout: fixed;
}
#site-header #header-top #top-logo {
  display: table-cell;
  width: 37.5%;
  padding: 0 0 15px 0;
  vertical-align: middle;
}
@media screen and (max-width: 960px) {
  #site-header #header-top #top-logo {
    display: table-cell;
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  #site-header #header-top #top-logo {
    padding: 10px 0;
    display: table-cell;
    width: 66.66667%;
  }
  #site-header #header-top #top-logo img {
    height: 80px;
  }
}
#site-header #header-top #top-user {
  display: table-cell;
  width: 62.5%;
  vertical-align: bottom;
}
@media screen and (max-width: 960px) {
  #site-header #header-top #top-user {
    display: table-cell;
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  #site-header #header-top #top-user {
    padding: 10px 0;
    text-align: right;
    vertical-align: middle;
  }
}
#site-header #header-top #top-user .row {
  display: block;
  float: right;
  max-width: 550px;
}
#site-header #header-top #top-user .row:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 767px) {
  #site-header #header-top #top-user .row {
    display: none;
  }
}
#site-header #header-top #top-user .row .user-login {
  float: left;
  display: block;
  margin-right: 1.40845%;
  width: 40.84507%;
}
#site-header #header-top #top-user .row .user-login:last-child {
  margin-right: 0;
}
#site-header #header-top #top-user .row .user-login .button {
  padding: 0 15px;
  float: right;
  line-height: 43px;
}
#site-header #header-top #top-user .row .user-search {
  float: left;
  display: block;
  margin-right: 1.40845%;
  width: 57.74648%;
  position: relative;
}
#site-header #header-top #top-user .row .user-search:last-child {
  margin-right: 0;
}
#site-header #header-top #top-user .row .user-search input[type="search"] {
  height: 45px;
}
#site-header #header-top #top-user .row .user-search input[type="submit"] {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  border: 1px solid #7a7a7a;
  border-left: none;
  background: #ffffff url(../img/search.png) no-repeat right 5px center;
  overflow: hidden;
  text-indent: 9999px;
}
#site-header #header-top #top-user .user-contact {
  margin: 8px 0 25px 0;
  font-size: 1.8em;
  font-weight: lighter;
  text-align: right;
}
@media screen and (max-width: 960px) and (min-width: 768px) {
  #site-header #header-top #top-user .user-contact {
    margin: 8px 0 14px 0;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #site-header #header-top #top-user .user-contact {
    display: none;
  }
}
#site-header #header-top #top-user .user-contact a {
  margin: 0 5px 0 0;
  font-size: 2.8rem;
  color: #7a7a7a;
  opacity: 0.5;
}
#site-header #header-top #top-user .user-contact a:hover {
  opacity: 1;
}
#site-header #header-top #top-user #toggle-nav {
  display: none;
  font-size: 3.0rem;
  color: #ffffff;
}
#site-header #header-top #top-user #toggle-nav.is-toggled {
  color: #c1d72e;
}
@media screen and (max-width: 767px) {
  #site-header #header-top #top-user #toggle-nav {
    display: block;
  }
}

#site-main {
  margin: 0 0 15px 0;
  line-height: 1.5;
}

#site-footer {
  padding: 50px 0;
  font-size: 1.5rem;
  font-weight: lighter;
  text-align: center;
  line-height: 1.5;
  color: #ffffff;
  background: #7a7a7a url(../img/bg-texture.png) center center;
}
#site-footer img {
  display: inline-block;
}
#site-footer .footer-columns {
  display: block;
  padding: 0 0 15px 0;
}
#site-footer .footer-columns:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 767px) {
  #site-footer .footer-columns {
    padding: 0;
  }
}
#site-footer .footer-columns .footer-column {
  float: left;
  display: block;
  margin-right: 1.40845%;
  width: 32.39437%;
  padding: 15px 0 0 0;
}
#site-footer .footer-columns .footer-column:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  #site-footer .footer-columns .footer-column {
    float: left;
    display: block;
    margin-right: 1.40845%;
    width: 100%;
    padding: 10px 50px;
  }
  #site-footer .footer-columns .footer-column:last-child {
    margin-right: 0;
  }
}
#site-footer .footer-columns .footer-column .title {
  margin: 0 auto;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #site-footer .footer-columns .footer-column .title {
    width: 25px;
    height: 25px;
    font-size: 1.4rem;
    line-height: 25px;
  }
}
#site-footer .footer-columns .footer-column h2 {
  margin: 0;
}
@media screen and (max-width: 767px) {
  #site-footer .footer-columns .footer-column h2 {
    margin: 10px 0;
  }
}
#site-footer .footer-columns .footer-column p {
  margin: 15px 0;
}
@media screen and (max-width: 767px) {
  #site-footer .footer-columns .footer-column p {
    margin: 5px 0;
  }
}
#site-footer .copyright {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  #site-footer .copyright {
    padding: 0 50px;
  }
}
#site-footer a {
  color: #ffffff;
}

/* 2.2 Grid
  -------------------------------------------------------------------------- */
.container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.container:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  #site-main {
    padding-top: 120px;
  }
}

.gallery {
  position: relative;
  margin: 0 -5px -5px -5px;
}
.gallery .gallery-item {
  padding: 5px;
  float: left;
  width: 33.333333%;
  visibility: hidden;
}
.gallery .gallery-item a {
  cursor: cell;
}
.gallery .gallery-item img {
  margin: 0 auto;
  height: auto;
}
.gallery.gallery-columns-1 .gallery-item {
  width: 100%;
}
.gallery.gallery-columns-2 .gallery-item {
  width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
  width: 33.333333%;
}
.gallery.gallery-columns-4 .gallery-item {
  width: 25%;
}
.gallery.gallery-columns-5 .gallery-item {
  width: 25%;
}
.gallery.gallery-columns-6 .gallery-item {
  width: 16.666666%;
}
.gallery.gallery-columns-7 .gallery-item {
  width: 14.285714%;
}
.gallery.gallery-columns-8 .gallery-item {
  width: 12.5%;
}
.gallery.gallery-columns-9 .gallery-item {
  width: 11.111111%;
}
@media screen and (max-width: 767px) {
  .gallery.gallery-columns-1 .gallery-item, .gallery.gallery-columns-2 .gallery-item, .gallery.gallery-columns-3 .gallery-item, .gallery.gallery-columns-4 .gallery-item, .gallery.gallery-columns-5 .gallery-item, .gallery.gallery-columns-6 .gallery-item, .gallery.gallery-columns-7 .gallery-item, .gallery.gallery-columns-8 .gallery-item, .gallery.gallery-columns-9 .gallery-item {
    width: 100%;
  }
}

/* 2.3 Helpers
  -------------------------------------------------------------------------- */
.clipped > *:first-child, #site-footer > *:first-child, #site-footer .footer-columns .footer-column > *:first-child, .blog-items .blog-item > *:first-child,
.clipped > *:first-child > *:first-child,
#site-footer > *:first-child > *:first-child,
#site-footer .footer-columns .footer-column > *:first-child > *:first-child,
.blog-items .blog-item > *:first-child > *:first-child,
.clipped > *:first-child > *:first-child > *:first-child,
#site-footer > *:first-child > *:first-child > *:first-child,
#site-footer .footer-columns .footer-column > *:first-child > *:first-child > *:first-child,
.blog-items .blog-item > *:first-child > *:first-child > *:first-child {
  margin-top: 0 !important;
}

.clipped > *:last-child, #site-footer > *:last-child, #site-footer .footer-columns .footer-column > *:last-child, .blog-items .blog-item > *:last-child,
.clipped > *:last-child > *:last-child,
#site-footer > *:last-child > *:last-child,
#site-footer .footer-columns .footer-column > *:last-child > *:last-child,
.blog-items .blog-item > *:last-child > *:last-child,
.clipped > *:last-child > *:last-child > *:last-child,
#site-footer > *:last-child > *:last-child > *:last-child,
#site-footer .footer-columns .footer-column > *:last-child > *:last-child > *:last-child,
.blog-items .blog-item > *:last-child > *:last-child > *:last-child {
  margin-bottom: 0 !important;
}

/* 3.0 Module
  ========================================================================== */
/* 3.1 Sections
  -------------------------------------------------------------------------- */
/* 3.2 Entries
  -------------------------------------------------------------------------- */
/* 3.3 Parts
  -------------------------------------------------------------------------- */
.page-banner {
  margin: 0 0 15px 0;
}
.page-banner img {
  margin: 0 auto;
}

.home-buttons {
  display: block;
}
.home-buttons:after {
  content: "";
  display: table;
  clear: both;
}
.home-buttons .home-button {
  float: left;
  display: block;
  margin-right: 1.40845%;
  width: 23.94366%;
}
.home-buttons .home-button:last-child {
  margin-right: 0;
}
.home-buttons .home-button .title {
  padding: 20px 15px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.25;
  color: #ffffff;
  background: #c1d72e;
}
.home-buttons .home-button a {
  color: #7a7a7a;
}
.home-buttons .home-button a p {
  margin: 10px 5px;
}
@media screen and (max-width: 767px) {
  .home-buttons {
    display: block;
  }
  .home-buttons:after {
    content: "";
    display: table;
    clear: both;
  }
  .home-buttons .home-button {
    float: left;
    display: block;
    margin-right: 1.40845%;
    width: 100%;
  }
  .home-buttons .home-button:last-child {
    margin-right: 0;
  }
}

.nav-page-top {
  display: table;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  table-layout: fixed;
  margin: 0;
  padding: 0 30px;
  border-top: 1px solid #a7a9ac;
  border-bottom: 1px solid #a7a9ac;
  list-style: none;
  table-layout: none;
}
.nav-page-top li {
  display: table-cell;
  width: 25%;
  text-align: center;
  vertical-align: middle;
}
.nav-page-top li.active {
  background: #c1d72e;
}
.nav-page-top li.active a {
  color: #ffffff;
}
.nav-page-top li a {
  padding: 10px 5px;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #a7a9ac;
}

/* 3.4 Navigation
  -------------------------------------------------------------------------- */
.nav-header {
  margin: 0;
  padding: 0;
  float: right;
  width: auto;
  list-style: none;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .nav-header {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
    background: #7a7a7a url(../img/bg-texture.png) center center;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .nav-header.is-toggled {
    visibility: visible;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.nav-header li {
  float: left;
}
@media screen and (max-width: 767px) {
  .nav-header li {
    float: none;
  }
}
.nav-header li a {
  display: block;
  padding: 30px 15px;
  font-size: 2.0rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #a7a9ac;
}
@media screen and (max-width: 960px) and (min-width: 768px) {
  .nav-header li a {
    padding: 15px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .nav-header li a {
    padding: 15px 20px;
  }
}
.nav-header li a:hover {
  color: #ffffff;
  background: #c1d72e;
}

.button {
  padding: 15px;
  display: inline-block;
  width: auto;
  min-width: 0;
  font-weight: bold;
  line-height: 1px;
  color: white;
  border: 1px solid #c1d72e;
  background: #c1d72e;
}
.button:hover {
  border: 1px solid #b1c626;
  background: #b1c626;
  color: white;
}

a {
  text-decoration: none;
  color: #c1d72e;
  cursor: pointer;
}
a:hover {
  color: #c1d72e;
}
a img {
  border: none;
}

/* 3.5 Widgets
  -------------------------------------------------------------------------- */
/* 3.6 Comments
  -------------------------------------------------------------------------- */
#comments {
  margin: 10% 0 0 0;
  padding: 5% 0;
  font-size: 1.3rem;
  background-color: rgba(0, 0, 0, 0.05);
}
#comments h6 {
  margin: 0;
}
#comments label {
  display: block;
}
#comments input[type="text"], #comments textarea {
  font-size: 1.2rem;
}

.post-comments-list {
  margin: 5% 0 7.5% 0;
  padding: 0;
  list-style: none;
}
.post-comments-list li.comment {
  padding: 5%;
  background-color: rgba(0, 0, 0, 0.025);
  border-bottom: 1px solid rgba(0, 0, 0, 0.025);
}
.post-comments-list li.comment ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post-comments-list li.comment ul li {
  margin: 5% 0 0 0;
}
.post-comments-list li.comment .comment-header {
  display: block;
}
.post-comments-list li.comment .comment-header:after {
  content: "";
  display: table;
  clear: both;
}
.post-comments-list li.comment .comment-header .comment-avatar {
  padding: 0 20px 0 0;
  float: left;
}
.post-comments-list li.comment .comment-header .comment-avatar img {
  border-radius: 16px;
}
.post-comments-list li.comment .comment-header .comment-author {
  float: left;
}
.post-comments-list li.comment .comment-header .comment-author h4, .post-comments-list li.comment .comment-header .comment-author #respond h3, #respond .post-comments-list li.comment .comment-header .comment-author h3 {
  margin: 0;
  line-height: 32px;
}
.post-comments-list li.comment .comment-content {
  padding: 1% 0;
}
.post-comments-list li.comment .comment-footer {
  display: block;
  font-size: 90%;
}
.post-comments-list li.comment .comment-footer:after {
  content: "";
  display: table;
  clear: both;
}
.post-comments-list li.comment .comment-footer .comment-reply {
  float: left;
  display: block;
  margin-right: 1.40845%;
  width: 49.29577%;
}
.post-comments-list li.comment .comment-footer .comment-reply:last-child {
  margin-right: 0;
}
.post-comments-list li.comment .comment-footer .comment-reply a {
  padding: 0 10px 0 0;
}
.post-comments-list li.comment .comment-footer .comment-date {
  float: left;
  display: block;
  margin-right: 1.40845%;
  width: 49.29577%;
  font-style: italic;
  text-align: right;
}
.post-comments-list li.comment .comment-footer .comment-date:last-child {
  margin-right: 0;
}

#respond h3 {
  margin: 0 0 5% 0;
}
#respond p {
  margin: 2% 0;
}
#respond p.comment-notes {
  display: none;
}
#respond p.form-submit {
  margin: 0;
}
#respond p.form-submit input {
  margin: 2.5% 0 0 0;
}
#respond small a {
  padding: 0 10px;
  display: inline-block;
  font-size: 70%;
}
#respond .form-allowed-tags {
  font-size: 1.3rem;
}

/* 4.0 State
  ========================================================================== */
/* 4.1 Plugins
  -------------------------------------------------------------------------- */
/* 4.2 Animations
  -------------------------------------------------------------------------- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#pageFeaturedImage {
  float: right;
  padding: 0 0 15px 20px;
}
#pageFeaturedImage img {
  border: 5px solid #FFFFFF;
  box-shadow: 0 0 5px 0 #BBBBBB;
  margin: 30px 15px 0 0;
  width: 285px;
}
@media screen and (max-width: 767px) {
  #pageFeaturedImage {
    max-width: 300px;
    margin: 0 auto;
    float: none;
  }
  #pageFeaturedImage img {
    width: 100%;
  }
}

.clear {
  clear: both;
}

.enqButton {
  float: right;
}

@media screen and (max-width: 767px) {
  .nav-page-top {
    margin-top: 100px;
    display: block;
  }
  .nav-page-top li {
    display: inline-block;
    width: 100%;
  }
}

#pageSidebarLeft {
  float: left;
  width: 180px;
  margin-top: 70px;
}
#pageSidebarLeft .nav-page-left {
  margin: 0;
  padding: 0;
  /*border-top: 1px solid #a7a9ac;
  border-bottom: 1px solid #a7a9ac;*/
  border-right: 1px solid #a7a9ac;
  padding-right: 7px;
  list-style: none;
}
#pageSidebarLeft .nav-page-left li {
  text-align: center;
  vertical-align: middle;
  width: 100%;
  border-bottom: 1px solid #a7a9ac;
}
#pageSidebarLeft .nav-page-left li.active {
  background: #c1d72e;
}
#pageSidebarLeft .nav-page-left li.active a {
  color: #ffffff;
}
#pageSidebarLeft .nav-page-left li a {
  padding: 10px 5px;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #a7a9ac;
}
@media screen and (max-width: 767px) {
  #pageSidebarLeft {
    float: none;
    width: 100%;
  }
  #pageSidebarLeft .nav-page-left {
    border-right: none;
  }
}

#pageSidebarRight {
  float: left;
  width: calc(100% - 200px);
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  #pageSidebarRight {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

.adviserContainer {
  border-bottom: 1px solid #c1d72e;
  margin-bottom: 5px;
  padding-bottom: 25px;
}
.adviserContainer .image {
  float: left;
  width: 285px;
  border: 5px solid #FFFFFF;
  box-shadow: 0 0 5px 0 #BBBBBB;
  margin: 30px 15px 0 0;
  width: 285px;
}
@media screen and (max-width: 767px) {
  .adviserContainer .image {
    width: 100%;
    float: none;
  }
}
.adviserContainer .content {
  float: right;
  width: calc(100% - 300px);
}
@media screen and (max-width: 767px) {
  .adviserContainer .content {
    width: 100%;
    float: none;
  }
}
.adviserContainer .content .jobTitle {
  color: #c1d72e;
  font-family: Roboto, arial, sans-serif;
  font-size: 13pt;
  font-weight: 300;
}
.adviserContainer .content .qualifications {
  font-size: 8pt;
  font-weight: 400;
}
.adviserContainer:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

h2 {
  color: #c1d72e;
  font-family: Roboto, arial, sans-serif;
  font-size: 20pt;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 5px;
}

#pageContactLeft {
  width: calc(100% - 450px);
  float: left;
}
@media screen and (max-width: 767px) {
  #pageContactLeft {
    width: 100%;
    float: none;
  }
}

#pageContactRight {
  width: 400px;
  float: right;
}
@media screen and (max-width: 767px) {
  #pageContactRight {
    width: 100%;
    float: none;
    margin-bottom: 20px;
    margin-top: 50px;
  }
}

.acf-map {
  width: 100%;
  height: 400px;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

#contactInformation th {
  background-color: #C1D72E;
  color: #FFFFFF;
  width: 30%;
}
#contactInformation th, #contactInformation td {
  border: none;
  border-bottom: 2px solid #FFFFFF;
  padding: 4.5px 25px;
}
#contactInformation td {
  background-color: #F4F4F4;
}
#contactInformation #contactEnquiry {
  font-weight: bold;
  font-size: 16px;
  background-color: #C1D72E;
  text-align: center;
}
#contactInformation #contactEnquiry a {
  color: #fff;
}

#menu-header {
  margin-bottom: 15px;
}

h3 {
  border-bottom: 1px dashed #CCCCCC;
  border-top: 1px dashed #CCCCCC;
  font-size: 16pt;
  font-weight: bold;
  padding: 10px 0;
  width: 583px;
  color: #c1d72e;
  font-family: Roboto, arial, sans-serif;
}

.blog-items .blog-item {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.blog-items .blog-item:last-child {
  border-bottom: none;
}
.blog-items .blog-item h1 {
  margin: 0;
}
.blog-items .blog-item h4, .blog-items .blog-item #respond h3, #respond .blog-items .blog-item h3 {
  margin: 0;
}
