@charset "UTF-8";
/* 
Initialize
 */
html {
  box-sizing: border-box; }

*, *::after, *::before {
  box-sizing: inherit; }

button, input[type="button"], input[type="reset"], input[type="submit"],
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  background-color: #477dca;
  border-radius: 3px;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
  padding: 0.75em 1em;
  text-decoration: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap; }
  button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus,
  button:hover,
  button:focus {
    background-color: #2c5999;
    color: #fff; }
  button:disabled, input[type="button"]:disabled, input[type="reset"]:disabled, input[type="submit"]:disabled,
  button:disabled {
    cursor: not-allowed;
    opacity: 0.5; }

fieldset {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  margin: 0 0 0.75em;
  padding: 1.5em; }

input,
label,
select {
  display: block;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em; }

label {
  font-weight: 600;
  margin-bottom: 0.375em; }
  label.required::after {
    content: "*"; }
  label abbr {
    display: none; }

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], textarea,
select[multiple=multiple],
textarea {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  margin-bottom: 0.75em;
  padding: 0.5em;
  transition: border-color;
  width: 100%; }
  input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, textarea:hover,
  select[multiple=multiple]:hover,
  textarea:hover {
    border-color: #c4c4c4; }
  input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, textarea:focus,
  select[multiple=multiple]:focus,
  textarea:focus {
    border-color: #477dca;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(55, 112, 192, 0.7);
    outline: none; }

textarea {
  resize: vertical; }

input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none; }

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin-right: 0.375em; }

input[type="file"] {
  padding-bottom: 0.75em;
  width: 100%; }

select {
  margin-bottom: 1.5em;
  max-width: 100%;
  width: auto; }

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0; }

dl {
  margin-bottom: 0.75em; }
  dl dt {
    font-weight: bold;
    margin-top: 0.75em; }
  dl dd {
    margin: 0; }

table {
  -webkit-font-feature-settings: "kern", "liga", "tnum";
  -moz-font-feature-settings: "kern", "liga", "tnum";
  -ms-font-feature-settings: "kern", "liga", "tnum";
  font-feature-settings: "kern", "liga", "tnum";
  border-collapse: collapse;
  margin: 0.75em 0;
  table-layout: fixed;
  width: 100%; }

th {
  border-bottom: 1px solid #b7b7b7;
  font-weight: 600;
  padding: 0.75em 0;
  text-align: left; }

td {
  border-bottom: 1px solid #ddd;
  padding: 0.75em 0; }

tr,
td,
th {
  vertical-align: middle; }

body {
  -webkit-font-feature-settings: "kern", "liga", "pnum";
  -moz-font-feature-settings: "kern", "liga", "pnum";
  -ms-font-feature-settings: "kern", "liga", "pnum";
  font-feature-settings: "kern", "liga", "pnum";
  -webkit-font-smoothing: antialiased;
  color: #333;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  line-height: 1.5; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  line-height: 1.2;
  margin: 0 0 0.75em; }

p {
  margin: 0 0 0.75em; }

a {
  color: #477dca;
  text-decoration: none;
  transition: color 0.1s linear; }
  a:active, a:focus, a:hover {
    color: #2c5999; }
  a:active, a:focus {
    outline: none; }

hr {
  border-bottom: 1px solid #ddd;
  border-left: none;
  border-right: none;
  border-top: none;
  margin: 1.5em 0; }

img,
picture {
  margin: 0;
  max-width: 100%; }

/* 
Initialize
 */
/*
 * variables
 */
/* 
Mixins
 */
/* 
Functions
 */
/* 
Global settings (elements)
*/
body {
  background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/inverted/dust.png"), -webkit-linear-gradient(0, #fafafa, #f2f2f2), center;
  background: url("https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/textures/inverted/dust.png"), linear-gradient(0, #fafafa, #f2f2f2), center;
  font-family: YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", Osaka, "MS PGothic", "ＭＳ Ｐゴシック", Sans-Serif;
  color: #222; }

img {
  max-width: 100%;
  vertical-align: bottom; }

/* 
Global settings (elements - fontsize)
*/
h1 {
  font-size: 1.8rem; }
  @media screen and (max-width: 767px) {
    h1 {
      font-size: 1.8rem; } }

h2 {
  font-size: 1.8rem; }

h3 {
  font-size: 1.4rem; }

h4, h5, h6 {
  font-size: 1.2rem; }

p, li, dt, dd, td, th, td, input, textarea, blockquote {
  font-size: 1.2rem; }

/* 
Global settings (elements - line height)
*/
h1, h2, h3, dt, th {
  line-height: 1.2; }

p, li, dd, td, blockquote {
  line-height: 1.7; }

/*
Global settings (elements - font weight and font style)
*/
dt, th {
  font-weight: normal; }

em {
  font-style: normal; }

/*
Global settings (margin and padding)
*/
h1, h2, h3 {
  margin-top: 3rem; }

h4, h5, h6 {
  margin-top: 2rem; }

ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem; }

ol {
  margin-left: 2rem; }

dd {
  padding-left: 1.2rem; }

.fa {
  padding-right: 0.3rem; }

input[type="text"],
textarea {
  margin-bottom: 0; }

blockquote {
  padding-left: .8rem; }

header h2 {
  margin-top: 0; }

figure {
  margin: 0 0 1rem; }

/* 
Global settings (elements - list style)
*/
ul {
  list-style: disc; }
  ul > li > ul {
    list-style: circle; }

ol {
  list-style: decimal; }

/* 
Global settings (elements and classes - color)
*/
a:link, a:visited {
  color: #3e517f; }

a:hover, a:active {
  color: #6c82b7; }

blockquote {
  border-left: 7px solid rgba(62, 81, 127, 0.5); }

em {
  background: rgba(35, 172, 56, 0.4); }

.fk-green {
  color: #23ac38; }

.fk-bd-green {
  border-color: #23ac38; }

.fk-bg-green {
  background: #23ac38; }

.fk-pink {
  color: #ff669a; }

.fk-bd-pink {
  border-color: #ff669a; }

.fk-bg-pink {
  background: #ff669a; }

.fk-orange {
  color: #f08200; }

.fk-bd-orange {
  border-color: #f08200; }

.fk-bg-orange {
  background: #f08200; }

.fk-blue {
  color: #3e517f; }

.fk-bd-blue {
  border-color: #3e517f; }

.fk-bg-blue {
  background: #3e517f; }

.fa-twitter-square {
  color: #55acee; }

.fa-facebook-square {
  color: #43609c; }

.fa-youtube-square {
  color: #dd2826; }

.invert input[type="text"], .invert textarea {
  color: #222; }

.require {
  color: #dd2826; }

/*
Global settings (classes - extends)
*/
.row {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto; }
  .row::after {
    clear: both;
    content: "";
    display: table; }

.clearfix::after {
  clear: both;
  content: "";
  display: table; }

.fw-bold {
  font-weight: bold; }

.hidden {
  display: none; }

.photo, .gallery .gallery-icon img {
  border: 1px solid #f7f6e4;
  -webkit-box-shadow: #949494 1px 1px 3px;
  box-shadow: #949494 1px 1px 3px; }

.heading {
  margin-bottom: 1rem; }

.skiplink {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto; }
  .skiplink::after {
    clear: both;
    content: "";
    display: table; }
  .skiplink p {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    text-align: right; }
    .skiplink p:last-child {
      margin-right: 0; }
  .skiplink a {
    color: #949494; }
  .skiplink .button, .skiplink input[type="submit"] {
    background-color: #ffa253;
    background-image: -webkit-linear-gradient(top, #ffa253 0%, #c77032 50%, #a95723 50%, #b05c25 100%);
    background-image: linear-gradient(to bottom,#ffa253 0%, #c77032 50%, #a95723 50%, #b05c25 100%);
    border: 1px solid #8a3302;
    border-bottom: 1px solid #812300;
    border-radius: 5px;
    box-shadow: inset 0 1px 0 0 #ffbf5f;
    color: #333333;
    display: inline-block;
    font-size: inherit;
    font-weight: bold;
    padding: 7px 18px;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 -1px 1px #ffad67;
    padding: 0.8rem 1.5rem;
    color: #fafafa;
    font-weight: normal; }
    .skiplink .button:hover:not(:disabled), .skiplink input[type="submit"]:hover:not(:disabled) {
      background-color: #f29341;
      background-image: -webkit-linear-gradient(top, #f29341 0%, #bd6420 50%, #a24d11 50%, #a95214 100%);
      background-image: linear-gradient(to bottom,#f29341 0%, #bd6420 50%, #a24d11 50%, #a95214 100%);
      cursor: pointer; }
    .skiplink .button:active:not(:disabled), .skiplink input[type="submit"]:active:not(:disabled), .skiplink .button:focus:not(:disabled), .skiplink input[type="submit"]:focus:not(:disabled) {
      box-shadow: inset 0 0 20px 0 #902e00; }
    .skiplink .button:disabled, .skiplink input[type="submit"]:disabled {
      cursor: not-allowed;
      opacity: 0.5; }
  .skiplink.masthead {
    max-width: 68em;
    margin-left: auto;
    margin-right: auto; }
    .skiplink.masthead::after {
      clear: both;
      content: "";
      display: table; }
    .skiplink.masthead p {
      text-align: right; }

.spacing {
  padding-bottom: 3rem;
  margin-bottom: 3rem; }
  @media screen and (max-width: 767px) {
    .spacing {
      padding-bottom: 1.5rem;
      margin-bottom: 1.5rem; } }

.caption {
  font-size: 1rem;
  color: #949494; }

.fk-fx-fade {
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out; }
  .fk-fx-fade:hover {
    opacity: .8;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }

.fk-table th, #content table th {
  width: 30%;
  padding: 0.8rem 0.5rem;
  background: rgba(219, 213, 129, 0.2);
  border-top: 1px solid #949494; }
  .fk-table th:last-of-type, #content table th:last-of-type {
    border-bottom: 1px solid #949494; }
  @media screen and (max-width: 767px) {
    .fk-table th, #content table th {
      width: 100%;
      display: block; } }

.fk-table td, #content table td {
  width: 70%;
  padding: 0.8rem 0.5rem;
  border-top: 1px solid #949494; }
  .fk-table td:last-of-type, #content table td:last-of-type {
    border-bottom: 1px solid #949494; }
  @media screen and (max-width: 767px) {
    .fk-table td, #content table td {
      width: 100%;
      display: block; } }

.button, input[type="submit"] {
  border: 1px solid #076fe4;
  border-radius: 3px;
  box-shadow: inset 0 1px 0 0 #8ebcf1;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  background-color: #4294f0;
  background-image: -webkit-linear-gradient(#4294f0, #0776f3);
  background-image: linear-gradient(#4294f0, #0776f3);
  padding: 7px 18px;
  text-decoration: none;
  text-shadow: 0 1px 0 #0065d6;
  background-clip: padding-box;
  font-weight: normal;
  background-color: #7193db;
  background-image: -webkit-linear-gradient(#7193db, #4776ce);
  background-image: linear-gradient(#7193db, #4776ce); }
  .button:hover:not(:disabled), input[type="submit"]:hover:not(:disabled) {
    background-color: #2f87ea;
    background-image: -webkit-linear-gradient(#2f87ea, #086fe3);
    background-image: linear-gradient(#2f87ea, #086fe3);
    box-shadow: inset 0 1px 0 0 #60a2ec;
    cursor: pointer; }
  .button:active:not(:disabled), input[type="submit"]:active:not(:disabled), .button:focus:not(:disabled), input[type="submit"]:focus:not(:disabled) {
    border: 1px solid #076fe4;
    box-shadow: inset 0 0 8px 4px #0868d3, inset 0 0 8px 4px #0868d3; }
  .button:disabled, input[type="submit"]:disabled {
    cursor: not-allowed;
    opacity: 0.5; }

.float-left {
  float: left; }

.float-right {
  float: right; }

.clearfix::after, .clear::after {
  clear: both;
  content: "";
  display: table; }

/*
Global settings (classes - columns)
*/
.block {
  margin-bottom: 1rem; }
  .block.one {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%; }
    .block.one:last-child {
      margin-right: 0; }
    @media screen and (max-width: 767px) {
      .block.one {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%; }
        .block.one:last-child {
          margin-right: 0; } }
  .block.two {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%; }
    .block.two:last-child {
      margin-right: 0; }
    @media screen and (max-width: 767px) {
      .block.two {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%; }
        .block.two:last-child {
          margin-right: 0; } }
  .block.three {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%; }
    .block.three:last-child {
      margin-right: 0; }
    @media screen and (max-width: 767px) {
      .block.three {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%; }
        .block.three:last-child {
          margin-right: 0; } }
  .block.four {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%; }
    .block.four:last-child {
      margin-right: 0; }
    @media screen and (max-width: 1023px) {
      .block.four {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%; }
        .block.four:last-child {
          margin-right: 0; }
        .block.four:nth-child(2n) {
          margin-right: 0; }
        .block.four:nth-child(2n+1) {
          clear: left; } }
    @media screen and (max-width: 767px) {
      .block.four {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%; }
        .block.four:last-child {
          margin-right: 0; } }
  .block .heading {
    margin-bottom: 0.3rem; }

.column.left {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%; }
  .column.left:last-child {
    margin-right: 0; }
  @media screen and (max-width: 767px) {
    .column.left {
      float: left;
      display: block;
      margin-right: 2.35765%;
      width: 100%; }
      .column.left:last-child {
        margin-right: 0; } }

.column.right {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  margin-right: 0; }
  .column.right:last-child {
    margin-right: 0; }
  @media screen and (max-width: 767px) {
    .column.right {
      float: left;
      display: block;
      margin-right: 2.35765%;
      width: 100%; }
      .column.right:last-child {
        margin-right: 0; } }

.gallery.gallery-columns-2 {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto; }
  .gallery.gallery-columns-2::after {
    clear: both;
    content: "";
    display: table; }
  .gallery.gallery-columns-2 .gallery-item {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%; }
    .gallery.gallery-columns-2 .gallery-item:last-child {
      margin-right: 0; }
    .gallery.gallery-columns-2 .gallery-item:nth-child(2n) {
      margin-right: 0; }
    .gallery.gallery-columns-2 .gallery-item:nth-child(2n+1) {
      clear: left; }

.gallery.gallery-columns-3 {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto; }
  .gallery.gallery-columns-3::after {
    clear: both;
    content: "";
    display: table; }
  .gallery.gallery-columns-3 .gallery-item {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%; }
    .gallery.gallery-columns-3 .gallery-item:last-child {
      margin-right: 0; }
    .gallery.gallery-columns-3 .gallery-item:nth-child(3n) {
      margin-right: 0; }
    .gallery.gallery-columns-3 .gallery-item:nth-child(3n+1) {
      clear: left; }

.gallery.gallery-columns-4 {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto; }
  .gallery.gallery-columns-4::after {
    clear: both;
    content: "";
    display: table; }
  .gallery.gallery-columns-4 .gallery-item {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%; }
    .gallery.gallery-columns-4 .gallery-item:last-child {
      margin-right: 0; }
    .gallery.gallery-columns-4 .gallery-item:nth-child(4n) {
      margin-right: 0; }
    .gallery.gallery-columns-4 .gallery-item:nth-child(4n+1) {
      clear: left; }

.gallery .gallery-icon img {
  max-width: 100%; }

/*
Global settings (classes - fontsize)
*/
.fs-large {
  font-size: 1.6rem; }
  @media screen and (max-width: 767px) {
    .fs-large {
      font-size: 1.4rem; } }

.fs-2x {
  font-size: 2rem; }
  @media screen and (max-width: 767px) {
    .fs-2x {
      font-size: 1.6rem; } }

.fs-3x {
  font-size: 3rem; }
  @media screen and (max-width: 767px) {
    .fs-3x {
      font-size: 2.4rem; } }

.fs-4x {
  font-size: 4rem; }
  @media screen and (max-width: 767px) {
    .fs-4x {
      font-size: 3.2rem; } }

.fs-5x {
  font-size: 5rem; }
  @media screen and (max-width: 767px) {
    .fs-5x {
      font-size: 4rem; } }

/*
Global settings (typeface)
*/
.ff-serif {
  font-family: Judson, YuMincho, "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Kozuka Mincho Pro", "小塚明朝 Pro R", "Kozuka Mincho Std", "小塚明朝 Std R", "HGP明朝E", Serif; }

input[type="text"],
textarea {
  font-family: YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", Osaka, "MS PGothic", "ＭＳ Ｐゴシック", Sans-Serif; }

/* 
Global settings (ids - block)
 */
#masthead-wrapper {
  background-color: #3e517f;
  background-image: -webkit-linear-gradient(#3e517f, #4776ce);
  background-image: linear-gradient(#3e517f, #4776ce);
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #949494;
  box-shadow: 0 1px 0 #c7c7c7; }

#masthead {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto;
  color: #fafafa;
  text-shadow: #ededed 0px -1px 4px; }
  #masthead::after {
    clear: both;
    content: "";
    display: table; }
  #masthead .title {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%; }
    #masthead .title:last-child {
      margin-right: 0; }
    #masthead .title h1 {
      margin: 0.8rem 0; }
    #masthead .title a {
      color: #fafafa; }

#carousel {
  margin-bottom: 0; }
  #carousel img {
    width: 100%;
    vertical-align: bottom; }

#global-nav {
  margin-bottom: 1.5rem; }

#breadcrumb {
  font-family: Sans-Serif, fontawesome;
  max-width: 68em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  border: 1px solid #949494;
  padding: 0.3rem;
  background: rgba(250, 250, 250, 0.1); }
  #breadcrumb::after {
    clear: both;
    content: "";
    display: table; }
  #breadcrumb ul {
    margin: 0;
    list-style: none; }
  #breadcrumb li {
    display: inline-block;
    font-size: 0.9rem;
    line-height: 1.7; }
    #breadcrumb li:before {
      content: "\f105";
      padding: 0 0.5rem; }
    #breadcrumb li:first-of-type:before {
      content: "";
      padding: 0; }

#main {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem; }
  #main::after {
    clear: both;
    content: "";
    display: table; }

#footer-wrapper {
  background-color: #ededed;
  background-image: -webkit-linear-gradient(#ededed, #e1e1e1);
  background-image: linear-gradient(#ededed, #e1e1e1);
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #949494;
  box-shadow: 0 1px 0 #c7c7c7; }
  #footer-wrapper #footer {
    padding-top: 1rem;
    max-width: 68em;
    margin-left: auto;
    margin-right: auto; }
    #footer-wrapper #footer::after {
      clear: both;
      content: "";
      display: table; }
  #footer-wrapper #copyright {
    font-size: 0.9rem; }
  #footer-wrapper #socialnetwork {
    text-align: right; }
  .invert #footer-wrapper {
    background-color: #949494;
    background-image: -webkit-linear-gradient(#949494, #878787);
    background-image: linear-gradient(#949494, #878787);
    color: #fafafa; }
  #footer-wrapper .fa {
    margin-left: 1rem; }

#content {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 74.41059%; }
  #content:last-child {
    margin-right: 0; }
  .page #content {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%; }
    .page #content:last-child {
      margin-right: 0; }
  @media screen and (max-width: 767px) {
    #content {
      float: left;
      display: block;
      margin-right: 2.35765%;
      width: 100%;
      margin-bottom: 3rem; }
      #content:last-child {
        margin-right: 0; } }
  #content h1:not(.page-title):not(.post-title),
  #content h2:not(.page-title):not(.post-title) {
    border-left: 5px solid #3e517f;
    background: rgba(62, 81, 127, 0.3);
    padding: 0.5rem; }
  #content h3:not(.model):before {
    font-family: fontawesome;
    content: "\f04d";
    color: #3e517f;
    padding-right: 0.5rem; }
  #content h4:before {
    font-family: fontawesome;
    content: "\f111";
    color: #3e517f;
    padding-right: 0.5rem; }
  #content h5:before {
    font-family: fontawesome;
    content: "\f1db";
    color: #3e517f;
    padding-right: 0.5rem; }

#sidebar {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%; }
  #sidebar:last-child {
    margin-right: 0; }
  @media screen and (max-width: 767px) {
    #sidebar {
      float: left;
      display: block;
      margin-right: 2.35765%;
      width: 100%; }
      #sidebar:last-child {
        margin-right: 0; } }
  #sidebar nav[class*=navigation] {
    border: 1px solid #949494;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: rgba(250, 250, 250, 0.1); }
    @media screen and (max-width: 767px) {
      #sidebar nav[class*=navigation] {
        padding-right: 0;
        padding-left: 0; } }
    #sidebar nav[class*=navigation] ul {
      margin-left: 0;
      margin-bottom: 0; }
    #sidebar nav[class*=navigation] .menu-item {
      list-style: none;
      border-bottom: 1px dotted #ededed; }
      #sidebar nav[class*=navigation] .menu-item a {
        display: block;
        padding: 0.8rem 0; }
        #sidebar nav[class*=navigation] .menu-item a:hover {
          background: rgba(219, 213, 129, 0.3); }
      #sidebar nav[class*=navigation] .menu-item:last-of-type {
        border: none; }
  #sidebar .widget {
    margin-bottom: 2rem; }

/*
 * WordPress settings
 */
.alignleft {
  display: inline;
  float: left; }

.alignright {
  display: inline;
  float: right; }

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto; }

blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
  margin: 0.4em 1.6em 1.6em 0; }

blockquote.alignright,
.wp-caption.alignright,
img.alignright {
  margin: 0.4rem 0 1.6rem 1.6rem; }

blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
  clear: both;
  margin-top: 0.4rem;
  margin-bottom: 1.6rem; }

.wp-caption.alignleft,
.wp-caption.alignright,
.wp-caption.aligncenter {
  margin-bottom: 1.2rem; }

.gallery-caption {
  display: block;
  padding: 0.5rem 0; }

.wp-caption {
  max-width: 70% !important; }
  .wp-caption .size-large {
    max-width: 100%; }

/* 
Global settings (from Refills)
http://refills.bourbon.io/
*/
#home section {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem; }
  #home section::after {
    clear: both;
    content: "";
    display: table; }
  @media screen and (max-width: 767px) {
    #home section {
      margin-bottom: 2rem; } }
  #home section h3, #home section p, #home section li {
    margin-right: 3rem;
    margin-left: 3rem; }
    @media screen and (max-width: 767px) {
      #home section h3, #home section p, #home section li {
        margin-right: 0;
        margin-left: 0; } }
  #home section a {
    text-decoration: underline; }
  #home section li ul {
    margin-left: 0; }
  #home section h3 {
    margin-top: 2rem; }

#home #masthead {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto; }
  #home #masthead::after {
    clear: both;
    content: "";
    display: table; }
  #home #masthead .logo {
    margin-left: 8.5298%;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%; }
    #home #masthead .logo:last-child {
      margin-right: 0; }
    @media screen and (max-width: 767px) {
      #home #masthead .logo {
        margin-left: 0%;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%; }
        #home #masthead .logo:last-child {
          margin-right: 0; } }
  #home #masthead .catch-copy {
    margin-left: 8.5298%;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%; }
    #home #masthead .catch-copy:last-child {
      margin-right: 0; }
    @media screen and (max-width: 767px) {
      #home #masthead .catch-copy {
        margin-left: 0%;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%; }
        #home #masthead .catch-copy:last-child {
          margin-right: 0; } }
    #home #masthead .catch-copy.copy-top {
      margin-top: 1rem;
      margin-bottom: 3rem; }
      @media screen and (max-width: 767px) {
        #home #masthead .catch-copy.copy-top {
          margin-top: 0.3rem;
          margin-bottom: 1rem; } }
    #home #masthead .catch-copy.copy-bottom {
      margin-top: 0.5rem;
      margin-bottom: 5rem; }
      @media screen and (max-width: 767px) {
        #home #masthead .catch-copy.copy-bottom {
          margin-top: 0;
          margin-bottom: 3rem; } }
