/*
Theme Name: Skinner Architectts
Text Domain: mvskin
Version: 1.0
Requires PHP: 7.0
Description: A custom theme for Skinner Architects - built in 2020
Author: Brent Patroch of Modev Media
Author URI: https://modevmedia.com/
*/
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,700&display=swap");
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

main, article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  /* Remove excess padding and border in Firefox 4+ */
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

[hidden] {
  display: none;
}

.has-primary-color {
  color: #0E79B2;
}

.has-primary-background-color {
  background-color: #0E79B2;
}

.has-secondary-color {
  color: #045D8D;
}

.has-secondary-background-color {
  background-color: #045D8D;
}

.has-blue-color {
  color: #3C64C4;
}

.has-blue-background-color {
  background-color: #3C64C4;
}

.has-black-color {
  color: #191919;
}

.has-black-background-color {
  background-color: #191919;
}

.has-white-color {
  color: #c0c0c0;
}

.has-white-background-color {
  background-color: #c0c0c0;
}

.has-yellow-color {
  color: #EDE04D;
}

.has-yellow-background-color {
  background-color: #EDE04D;
}

.has-red-color {
  color: #ED4F32;
}

.has-red-background-color {
  background-color: #ED4F32;
}

.has-green-color {
  color: #15CD72;
}

.has-green-background-color {
  background-color: #15CD72;
}

.flexarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.flex-middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-offset-0 {
  margin-left: 0;
}

.flex-1 {
  -ms-flex-preferred-size: 8.33333%;
      flex-basis: 8.33333%;
}

.flex-offset-1 {
  margin-left: 8.33333%;
}

.flex-2 {
  -ms-flex-preferred-size: 16.66667%;
      flex-basis: 16.66667%;
}

.flex-offset-2 {
  margin-left: 16.66667%;
}

.flex-3 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

.flex-offset-3 {
  margin-left: 25%;
}

.flex-4 {
  -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%;
}

.flex-offset-4 {
  margin-left: 33.33333%;
}

.flex-5 {
  -ms-flex-preferred-size: 41.66667%;
      flex-basis: 41.66667%;
}

.flex-offset-5 {
  margin-left: 41.66667%;
}

.flex-6 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.flex-offset-6 {
  margin-left: 50%;
}

.flex-7 {
  -ms-flex-preferred-size: 58.33333%;
      flex-basis: 58.33333%;
}

.flex-offset-7 {
  margin-left: 58.33333%;
}

.flex-8 {
  -ms-flex-preferred-size: 66.66667%;
      flex-basis: 66.66667%;
}

.flex-offset-8 {
  margin-left: 66.66667%;
}

.flex-9 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
}

.flex-offset-9 {
  margin-left: 75%;
}

.flex-10 {
  -ms-flex-preferred-size: 83.33333%;
      flex-basis: 83.33333%;
}

.flex-offset-10 {
  margin-left: 83.33333%;
}

.flex-11 {
  -ms-flex-preferred-size: 91.66667%;
      flex-basis: 91.66667%;
}

.flex-offset-11 {
  margin-left: 91.66667%;
}

.flex-12 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.flex-offset-12 {
  margin-left: 100%;
}

.show {
  display: initial;
}

.hide {
  display: none;
}

@media screen and (min-width: 576px) {
  .flex-sm-offset-0 {
    margin-left: 0;
  }
  .flex-sm-1 {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
  }
  .flex-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .flex-sm-2 {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
  }
  .flex-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .flex-sm-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .flex-sm-offset-3 {
    margin-left: 25%;
  }
  .flex-sm-4 {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
  }
  .flex-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .flex-sm-5 {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
  }
  .flex-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .flex-sm-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .flex-sm-offset-6 {
    margin-left: 50%;
  }
  .flex-sm-7 {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
  }
  .flex-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .flex-sm-8 {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
  }
  .flex-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .flex-sm-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .flex-sm-offset-9 {
    margin-left: 75%;
  }
  .flex-sm-10 {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
  }
  .flex-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .flex-sm-11 {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
  }
  .flex-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .flex-sm-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .flex-sm-offset-12 {
    margin-left: 100%;
  }
}

@media screen and (min-width: 576px) {
  .show-sm {
    display: initial;
  }
  .hide-sm {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .flex-md-offset-0 {
    margin-left: 0;
  }
  .flex-md-1 {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
  }
  .flex-md-offset-1 {
    margin-left: 8.33333%;
  }
  .flex-md-2 {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
  }
  .flex-md-offset-2 {
    margin-left: 16.66667%;
  }
  .flex-md-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .flex-md-offset-3 {
    margin-left: 25%;
  }
  .flex-md-4 {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
  }
  .flex-md-offset-4 {
    margin-left: 33.33333%;
  }
  .flex-md-5 {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
  }
  .flex-md-offset-5 {
    margin-left: 41.66667%;
  }
  .flex-md-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .flex-md-offset-6 {
    margin-left: 50%;
  }
  .flex-md-7 {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
  }
  .flex-md-offset-7 {
    margin-left: 58.33333%;
  }
  .flex-md-8 {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
  }
  .flex-md-offset-8 {
    margin-left: 66.66667%;
  }
  .flex-md-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .flex-md-offset-9 {
    margin-left: 75%;
  }
  .flex-md-10 {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
  }
  .flex-md-offset-10 {
    margin-left: 83.33333%;
  }
  .flex-md-11 {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
  }
  .flex-md-offset-11 {
    margin-left: 91.66667%;
  }
  .flex-md-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .flex-md-offset-12 {
    margin-left: 100%;
  }
}

@media screen and (min-width: 768px) {
  .show-md {
    display: initial;
  }
  .hide-md {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .flex-lg-offset-0 {
    margin-left: 0;
  }
  .flex-lg-1 {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
  }
  .flex-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .flex-lg-2 {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
  }
  .flex-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .flex-lg-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .flex-lg-offset-3 {
    margin-left: 25%;
  }
  .flex-lg-4 {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
  }
  .flex-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .flex-lg-5 {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
  }
  .flex-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .flex-lg-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .flex-lg-offset-6 {
    margin-left: 50%;
  }
  .flex-lg-7 {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
  }
  .flex-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .flex-lg-8 {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
  }
  .flex-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .flex-lg-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .flex-lg-offset-9 {
    margin-left: 75%;
  }
  .flex-lg-10 {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
  }
  .flex-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .flex-lg-11 {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
  }
  .flex-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .flex-lg-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .flex-lg-offset-12 {
    margin-left: 100%;
  }
}

@media screen and (min-width: 992px) {
  .show-lg {
    display: initial;
  }
  .hide-lg {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .flex-xl-offset-0 {
    margin-left: 0;
  }
  .flex-xl-1 {
    -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
  }
  .flex-xl-offset-1 {
    margin-left: 8.33333%;
  }
  .flex-xl-2 {
    -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
  }
  .flex-xl-offset-2 {
    margin-left: 16.66667%;
  }
  .flex-xl-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .flex-xl-offset-3 {
    margin-left: 25%;
  }
  .flex-xl-4 {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
  }
  .flex-xl-offset-4 {
    margin-left: 33.33333%;
  }
  .flex-xl-5 {
    -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
  }
  .flex-xl-offset-5 {
    margin-left: 41.66667%;
  }
  .flex-xl-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .flex-xl-offset-6 {
    margin-left: 50%;
  }
  .flex-xl-7 {
    -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
  }
  .flex-xl-offset-7 {
    margin-left: 58.33333%;
  }
  .flex-xl-8 {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
  }
  .flex-xl-offset-8 {
    margin-left: 66.66667%;
  }
  .flex-xl-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
  .flex-xl-offset-9 {
    margin-left: 75%;
  }
  .flex-xl-10 {
    -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
  }
  .flex-xl-offset-10 {
    margin-left: 83.33333%;
  }
  .flex-xl-11 {
    -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
  }
  .flex-xl-offset-11 {
    margin-left: 91.66667%;
  }
  .flex-xl-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .flex-xl-offset-12 {
    margin-left: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .show-xl {
    display: initial;
  }
  .hide-xl {
    display: none;
  }
}

.show-force {
  display: initial !important;
}

.hide-force {
  display: none !important;
}

.container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: -30px;
}

@media screen and (min-width: 576px) {
  .container {
    max-width: 546px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 738px;
  }
}

@media screen and (min-width: 992px) {
  .container {
    max-width: 962px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.container-full {
  margin-left: 30px;
  margin-right: 30px;
}

@media only screen and (min-width: 768px) {
  .container-full {
    margin-left: 70px;
    margin-right: 70px;
  }
}

.container-narrow {
  max-width: 800px;
}

.full-width, .size-full {
  width: 100%;
}

.full-width img, .size-full img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: calc(100vw - 30px);
  }
}

.box-border-theme {
  border: 2px solid #0E79B2;
}

.box-shadow-theme {
  -webkit-box-shadow: 4px 4px 0 0 rgba(79, 123, 146, 0.37);
          box-shadow: 4px 4px 0 0 rgba(79, 123, 146, 0.37);
}

.p-1 {
  padding: 1em;
}

.p-2 {
  padding: 2em;
}

.m-1 {
  margin: 1em;
}

.m-2 {
  margin: 2em;
}

.mt-1 {
  margin-top: 1em;
}

.mt-1h {
  margin-top: 1.5em;
}

.mt-2 {
  margin-top: 2em;
}

.mt-4 {
  margin-top: 4em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-4 {
  margin-bottom: 4em;
}

.sr-only, .nf-field-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: black;
  color: white;
  padding: 0.5em 1em;
  text-decoration: none;
  z-index: 100;
}

.embed-container, .wp-block-embed {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.embed-container .wp-block-embed__wrapper, .embed-container iframe, .wp-block-embed .wp-block-embed__wrapper, .wp-block-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

html {
  font-size: 16px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  color: #c0c0c0;
  font-weight: 300;
  line-height: 1.5em;
}

p {
  margin-bottom: 1.5em;
  margin-top: 1.5em;
}

a {
  color: #c0c0c0;
}

a.no-deco {
  text-decoration: none;
  padding: 0.5em 0;
  display: inline-block;
}

h1 {
  font-size: 1.8em;
  font-weight: 200;
  padding-bottom: 0.2em;
}

h2 {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 1em;
  margin-top: 2em;
}

h3 {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 0.5em;
}

.text-white {
  color: #c0c0c0;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-muted {
  font-size: 90%;
  opacity: 0.6;
}

.text-small {
  font-size: 90%;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-big {
  font-size: 1.2em;
  line-height: 1.5em;
  font-weight: 300;
}

@media screen and (min-width: 576px) {
  .text-sm-left {
    text-align: left;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-big {
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: 300;
  }
}

@media screen and (min-width: 768px) {
  .text-md-left {
    text-align: left;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-big {
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: 300;
  }
}

@media screen and (min-width: 992px) {
  .text-lg-left {
    text-align: left;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-big {
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: 300;
  }
}

@media screen and (min-width: 1200px) {
  .text-xl-left {
    text-align: left;
  }
  .text-xl-center {
    text-align: center;
  }
  .text-xl-right {
    text-align: right;
  }
  .text-xl-big {
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: 300;
  }
}

ol, ul {
  margin-left: 2em;
  margin-bottom: 1.5em;
}

ol li, ul li {
  margin: 1em 0;
}

ul {
  list-style: disc;
}

.site-notice {
  padding: 0.5em 1em;
  text-align: center;
  background: white;
  color: black;
  border: 1px solid black;
}

.site-notice.notice-success {
  background: #5aeea5;
  border-color: #0c703f;
  color: #02140b;
}

.site-notice.notice-warning {
  background: #f6f0aa;
  border-color: #c1b213;
  color: #645d0a;
}

.site-notice.notice-danger {
  background: #f5a090;
  border-color: #aa270f;
  color: #4c1107;
}

.brand img {
  max-height: 55px;
}

.toggle-button .bars .bar {
  display: block;
  width: 36px;
  height: 3px;
  margin: 6px 4px;
  border-radius: 5px;
  background: #c0c0c0;
}

.toggle-button .bars .close {
  -webkit-transform: translateY(9px) rotate(32deg);
          transform: translateY(9px) rotate(32deg);
}

.toggle-button .bars .close:last-of-type {
  -webkit-transform: translateY(0) rotate(-32deg);
          transform: translateY(0) rotate(-32deg);
}

.toggle-button.toggle-button-close {
  padding-bottom: 1em;
}

#menu-main:not([hidden]) .toggle-button .bars .close {
  -webkit-animation-name: rotateClose1;
          animation-name: rotateClose1;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#menu-main:not([hidden]) .toggle-button .bars .close:last-of-type {
  -webkit-animation-name: rotateClose2;
          animation-name: rotateClose2;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#menu-main:not([hidden]) .toggle-button-close {
  margin-right: 15px;
}

@-webkit-keyframes rotateClose1 {
  from {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  to {
    -webkit-transform: translateY(9px) rotate(32deg);
            transform: translateY(9px) rotate(32deg);
  }
}

@keyframes rotateClose1 {
  from {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  to {
    -webkit-transform: translateY(9px) rotate(32deg);
            transform: translateY(9px) rotate(32deg);
  }
}

@-webkit-keyframes rotateClose2 {
  from {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  to {
    -webkit-transform: translateY(0) rotate(-32deg);
            transform: translateY(0) rotate(-32deg);
  }
}

@keyframes rotateClose2 {
  from {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  to {
    -webkit-transform: translateY(0) rotate(-32deg);
            transform: translateY(0) rotate(-32deg);
  }
}

#menu-main li {
  text-align: right;
}

#menu-main li a, #menu-main li button:not(.toggle-button-close) {
  padding: 10px 14px;
  margin: 8px 0;
  width: 100%;
  text-decoration: none;
  color: #c0c0c0;
  opacity: 0.7;
  font-weight: 400;
  font-size: 16px;
}

#menu-main li a:active, #menu-main li a.active, #menu-main li a:focus, #menu-main li a:hover, #menu-main li a[aria-expanded='true'], #menu-main li button:not(.toggle-button-close):active, #menu-main li button:not(.toggle-button-close).active, #menu-main li button:not(.toggle-button-close):focus, #menu-main li button:not(.toggle-button-close):hover, #menu-main li button:not(.toggle-button-close)[aria-expanded='true'] {
  outline: none;
  opacity: 1;
}

#menu-main li.current-menu-parent > button {
  opacity: 1;
}

#menu-main .submenu {
  background: #333333;
}

#menu-main .submenu a, #menu-main .submenu button {
  padding: 5px 20px;
  font-size: 0.9em;
  color: #a7a7a7 !important;
  width: 100%;
  display: block;
}

#menu-main > li.menu-item {
  display: inline-block;
}

#menu-main .dropdown {
  position: relative;
}

#menu-main .submenu {
  position: absolute;
  z-index: 99;
  left: 0;
  right: 0;
  margin-left: 0;
  margin-top: 3em;
  min-width: 180px;
  text-align: left;
  -webkit-box-shadow: 2px 2px 5px #111111;
          box-shadow: 2px 2px 5px #111111;
}

#menu-main .submenu a, #menu-main .submenu button {
  text-align: left;
}

#menu-main.show-force {
  display: block !important;
  position: absolute;
  padding: 0.5em;
  left: 0;
  right: 0;
  z-index: 90;
  min-width: 400px;
  margin: 0 auto;
  width: 90%;
  background: #191919;
  -webkit-box-shadow: 2px 2px 5px #111111;
          box-shadow: 2px 2px 5px #111111;
}

#menu-main.show-force li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #aaa;
}

#menu-main.show-force li a {
  display: inline-block;
  padding: 8px;
  margin: 0;
  text-align: center;
}

#menu-main.show-force button:not(.toggle-button-close) {
  border: 0;
  padding: 0;
}

#menu-main.show-force .submenu.show-force {
  position: inherit;
  display: block !important;
  margin-top: 0;
}

.top-banner-img {
  max-height: 200px;
  overflow: hidden;
  margin-top: 3em;
}

.gallery-fade {
  display: block !important;
  height: 18vw;
  max-height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-fade figure {
  display: block !important;
  position: absolute !important;
}

.gallery-fade figure img {
  width: 100% !important;
  height: auto;
}

.gallery-fade figure:nth-of-type(1) {
  -webkit-animation-name: fader;
          animation-name: fader;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  z-index: 20;
}

.gallery-fade figure:nth-of-type(2) {
  z-index: 10;
}

.gallery-fade figure:nth-of-type(n+3) {
  display: none;
}

@-webkit-keyframes fader {
  from {
    opacity: 1.0;
  }
  to {
    opacity: 0.0;
  }
}
@keyframes fader {
  from {
    opacity: 1.0;
  }
  to {
    opacity: 0.0;
  }
}

body {
  background-color: #191919;
}

.infinite-scroll .pagination {
  display: none;
}

.infinite-scroll .infinite-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  color: white;
}

.mosaic {
  margin: -0.5em;
  width: calc(100% + 1em);
}

.mosaic .index-content {
  padding: 0.5em;
  padding-bottom: 1em;
}

.mosaic .index-content.index-publication {
  padding: 1.5em;
}

.content-columns > div {
  background: #333;
  padding: 1em 1em 0 1em;
}

@media (max-width: 599px) {
  .content-columns > div:not(:first-child) {
    margin-top: -1em;
  }
}

.nf-form-layout .nf-form-fields-required {
  display: none;
}

.nf-form-layout .nf-form-content {
  padding: 0;
}

.nf-form-layout .nf-form-content textarea.ninja-forms-field.nf-element {
  height: 170px;
}

.nf-form-layout .nf-form-content .list-select-wrap .nf-field-element > div, .nf-form-layout .nf-form-content input:not([type=button]), .nf-form-layout .nf-form-content textarea, .nf-form-layout .nf-pass .ninja-forms-field, .nf-form-layout .nf-error .ninja-forms-field {
  border-color: #c4c4c4 !important;
  border-width: 2px !important;
  border-left: none !important;
  border-right: none !important;
  background: #333;
  color: #c0c0c0;
}

.nf-form-layout .nf-form-content .list-select-wrap .nf-field-element > div:focus, .nf-form-layout .nf-form-content input:not([type=button]):focus, .nf-form-layout .nf-form-content textarea:focus, .nf-form-layout .nf-pass .ninja-forms-field:focus, .nf-form-layout .nf-error .ninja-forms-field:focus {
  background: #333;
  color: #c0c0c0;
}

.nf-form-layout .nf-error.field-wrap .nf-field-element:after, .nf-form-layout .nf-error-msg, .nf-form-layout .nf-error .nf-error-msg {
  background: transparent;
  color: #ED4F32;
}

.nf-form-layout .nf-form-content button:disabled, .nf-form-layout .nf-form-content input[type=button]:disabled, .nf-form-layout .nf-form-content input[type=submit]:disabled {
  opacity: 0.3;
}

a .img-zoom-in {
  overflow: hidden;
  position: relative;
  margin-bottom: 0.4em;
}

a .img-zoom-in.zoom-visible {
  overflow: visible;
}

a .img-zoom-in .img-card-before {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

a .img-zoom-in img {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: block;
}

a:hover .img-zoom-in .img-card-before {
  opacity: 0;
}

a:hover .img-zoom-in img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.reno-toggle {
  float: right;
  position: relative;
  margin-top: 4px;
  width: 33px;
  height: 19px;
  border: 2px solid #c0c0c0;
  cursor: pointer;
}

.reno-toggle .toggle-button {
  position: absolute;
  height: 15px;
  width: 15px;
  left: 0;
  background-color: #c0c0c0;
  border: 2px solid black;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.reno-toggle.toggle-on .toggle-button {
  left: 14px;
}

.flex-5th {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}

@media only screen and (min-width: 768px) {
  .flex-md-5th {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
}

.social-icons img {
  width: 30px;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.7;
}

.social-icons a {
  padding: 0.5em;
  display: inline-block;
}

.social-icons a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
/*# sourceMappingURL=style.css.map */