@font-face {
    font-family: 'ModernPictogramsNormal';
    src: url('/fonts/modernpics-webfont.eot');
    src: url('/fonts/modernpics-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/modernpics-webfont.woff') format('woff'),
         url('/fonts/modernpics-webfont.ttf') format('truetype'),
         url('/fonts/modernpics-webfont.svg#ModernPictogramsNormal') format('svg');
    font-weight: normal;
    font-style: normal;
}


@font-face {
  font-family: 'Gudea';
  font-style: normal;
  font-weight: 400;
  src: local('Gudea'), url('/fonts/gudea-normal.ttf') format('truetype');
}
@font-face {
  font-family: 'Gudea';
  font-style: italic;
  font-weight: normal;
  src: local('Gudea Italic'), local('Gudea-Italic'), url('/fonts/gudea-italic.ttf') format('truetype');
}
@font-face {
  font-family: 'Gudea';
  font-style: normal;
  font-weight: bold;
  src: local('Gudea Bold'), local('Gudea-Bold'), url('/fonts/gudea-bold.ttf') format('truetype');
}


/* 
 * Zero it out
 * ------------------------------------------------------------------ */
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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a:focus {
  outline: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

sub,
sup {
  font-size: 60%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
  *overflow: visible;
}

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

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

/* _preboot.scss
 * Variables and mixins
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Variables
-------------------------------------------------------- */
/*---------------------------------------------------------
	Mixins
-------------------------------------------------------- */
.clear {
  zoom: 1;
}
.clear:before, .clear:after {
  display: table;
  content: "";
}
.clear:after {
  clear: both;
}



/* _scaffolding.scss
 * Basic structure
 * ------------------------------------------------------------------ */
html {
  font-size: 87.5%;
}


/*---------------------------------------------------------
	Body
-------------------------------------------------------- */
body {
  background-color: #ededed;
/*  text-rendering: optimizeLegibility;*/
  -webkit-font-smoothing: antialiased;
  color: #191919;
  font-family: Gudea, Helvetica, "Helvetica Neue", Arial, Verdana, Tahoma, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

#container {
  background-color: #fff;
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5em;
  zoom: 1;
}
@media screen and (min-width: 1042px) {
  #container {
    margin: 0 auto;
    padding: 4em 5em;
  }
}
#container:before, #container:after {
  display: table;
  content: "";
}
#container:after {
  clear: both;
}

#wrapper {
  zoom: 1;
}
@media screen and (min-width: 800px) {
  #wrapper {
    width: 73.9534884%;
    float: left;
  }
}

#wrapper:before, #wrapper:after {
  display: table;
  content: "";
}
#wrapper:after {
  clear: both;
}

.content {
  margin-bottom: 26px;
  margin-bottom: 1.857rem;
}


/*---------------------------------------------------------
	Selection
-------------------------------------------------------- */
::-moz-selection {
  background: #e5e5e5;
  color: #191919;
  text-shadow: none;
}

::-webkit-selection {
  background: #e5e5e5;
  color: #191919;
  text-shadow: none;
}

::selection {
  background: #e5e5e5;
  color: #191919;
  text-shadow: none;
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

/*---------------------------------------------------------
	Links
-------------------------------------------------------- */
a {
	color: rgb(189, 5, 51);

  text-decoration: none;
}
a:hover {
  color: #505050;
  -webkit-transition: color 0.1s ease-in-out;
  -moz-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}



/*---------------------------------------------------------
	Base
-------------------------------------------------------- */
ul, ol, dl, p, address, .vcard, .notice, .card, figure, pre, fieldset, table, dt, dd, hr {
  margin-bottom: 26px;
  margin-bottom: 1.857rem;
}

p, ul, ol, dl, blockquote, .post-statement, .statement {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

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

pre,
code,
input,
textarea {
  font: inherit;
}

/*---------------------------------------------------------
	Headings
-------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  word-wrap: break-word;
  margin-bottom: 12px;
  margin-bottom: 0.857rem;
}

h1 {
  font-size: 22px;
  font-size: 1.571rem;
}

h2 {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.286rem;
}
h2 a {
  color: #191919;
}
h2 a:hover {
  color: #191919;
}

h3 {
  font-size: 18px;
  font-size: 1.286rem;
}

h4 {
  font-weight: bold;
  font-size: 17px;
  font-size: 1.214rem;
}

h5 {
	color: rgb(189, 5, 51);

  font-weight: bold;
  font-style: italic;
}

h6 {
  font-weight: bold;
color: rgb(189, 5, 51);

  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.857rem;
}

/*---------------------------------------------------------
	Elements
-------------------------------------------------------- */
blockquote {
  color: #505050;
  padding-left: 2em;
  margin-top: -62px;
  font-style: italic;
  font-size: 16px;
  font-size: 1.143rem;
}
@media screen and (min-width: 1042px) {
  blockquote {
    margin-left: -2em;
  }
}
blockquote p {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}
blockquote:before {
  content: "\201C";
  position: relative;
  top: 50px;
  left: -40px;
  font-size: 40px;
  font-size: 2.857rem;
  font-family: Monaco, "Courier New", Courier, monospace;
}
blockquote cite {
	color: rgb(189, 5, 51);

  font-size: 14px;
  font-size: 1rem;
}
blockquote cite:before {
  content: "\2014";
}

tt,
kbd,
pre,
code,
samp {
  font-family: Monaco, "Courier New", Courier, monospace;
  font-weight: normal;
  background: rgba(0, 0, 0, 0.04);
  font-size: 12px;
  font-size: 0.857rem;
  padding: 1px 3px;
  padding:  0.071rem 0.214rem;
}

mark {
  background: #ffc;
  padding: 2px 4px;
  padding:  0.143rem 0.286rem;
}

code {
  background: rgba(0, 0, 0, 0.04);
}

abbr,
acronym,
dfn {
  font-weight: bold;
  border-bottom: 2px solid 	rgb(189, 5, 51);
  cursor: help;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

ins {
  color: #f00;
  text-decoration: none;
}

small {
  font-size: .75em;
}

pre {
  display: block;
  word-wrap: break-word;
  overflow: auto;
  white-space: pre-wrap;
  padding: 26px;
  padding: 1.857rem;
}

hr {
  border: 0;
  height: 1px;
  margin: 26px auto;
  background-color: #e5e5e5;
}


/*---------------------------------------------------------
	Table
-------------------------------------------------------- */
table {
  width: 100%;
/*  font-weight: bold;*/
/*  text-align: center;*/
}
table th,
table td,
table caption {
  padding: 1% 2%;
}
table th a:hover,
table td a:hover,
table caption a:hover {
  color: #191919;
}
table caption {
	background: rgb(189, 5, 51);
}
table tr:nth-child(even) td,
table tr.even td {
  background: rgba(0, 0, 0, 0.04);
}
table tfoot {
  font-style: italic;
}

/*---------------------------------------------------------
	Lists
-------------------------------------------------------- */
ul {
  list-style: disc outside;
}

ol {
  list-style: decimal outside;
}

#wrapper li {
  margin: .4em 0;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

dl dt {
  font-weight: bold;
  margin-bottom: 12px;
  margin-bottom: 0.857rem;
}
dl dd {
  margin-left: 0;
  color: #505050;
}

/*---------------------------------------------------------
	Classes
-------------------------------------------------------- */
.clear {
  clear: both;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

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

.hide {
  display: none;
  visibility: hidden;
}

.hidden {
  visibility: hidden;
}

.noborder {
  border: none;
}



/*---------------------------------------------------------
	Menu
-------------------------------------------------------- */
nav[role="navigation"] {
  text-align: center;
}
@media screen and (min-width: 800px) {
  nav[role="navigation"] {
    text-align: right;
    float: right;
    width: 80%;
  }
}
nav[role="navigation"] ul {
  margin: 0;
  text-indent: 0;
}
nav[role="navigation"] li a,
nav[role="navigation"] li {
  display: inline-block;
  color: #505050;
}
nav[role="navigation"] li a ul li,
nav[role="navigation"] li ul li {
  padding-left: 0;
}
nav[role="navigation"] li a:hover,
nav[role="navigation"] li:hover {
  color: #191919;
}
nav[role="navigation"] li.current-menu-item a {
  color: rgb(189, 5, 51);
  font-weight: bold;
}
nav[role="navigation"] li {
  margin: 0 1%;
  position: relative;
}
nav[role="navigation"] li a {
  border-bottom: 0;
  padding: .3em .5em;
}
nav[role="navigation"] li:hover ul {
  display: block;
}
nav[role="navigation"] li:last-child {
  margin-right: 0;
  border-right: none;
}
nav[role="navigation"] li ul {
  display: none;
  position: absolute;
  top: 25px;
  padding: 0;
  margin: 0;
  z-index: 1;
  text-align: center;
}
nav[role="navigation"] li ul:before {
  content: "\25B2";
  color: #f3f3f3;
  position: relative;
  left: -25px;
  bottom: -6px;
}
nav[role="navigation"] ul.children:before {
  left: 10px;
}
nav[role="navigation"] li ul li,
nav[role="navigation"] li ul li a {
  float: none;
}
nav[role="navigation"] li ul li a {
  padding: 11px 4px;
  padding:  0.786rem 0.286rem;
  word-break: break-word;
}
nav[role="navigation"] ul.sub-menu li,
nav[role="navigation"] ul.children li {
  background: #fff;
  display: block;
  border: 1px solid #f3f3f3;
  border-top: none;
  padding-left: 4px;
  padding-right: 4px;
  width: 88px;
  line-height: 1.7;
  top: -4px;
}
nav[role="navigation"] ul.sub-menu li a,
nav[role="navigation"] ul.children li a {
  border: none;
  font-weight: normal;
  color: inherit;
}
nav[role="navigation"] ul.sub-menu li.current-menu-item, nav[role="navigation"] ul.sub-menu li:hover,
nav[role="navigation"] ul.children li.current-menu-item,
nav[role="navigation"] ul.children li:hover {
  color: #191919;
  background-color: #f3f3f3;
}
nav[role="navigation"] ul.sub-menu li:first-child,
nav[role="navigation"] ul.children li:first-child {
  border-top: 1px solid #f3f3f3;
}
nav[role="navigation"] ul.sub-menu li:nth-child(1):last-child,
nav[role="navigation"] ul.children li:nth-child(1):last-child {
  border-bottom: 1px solid #f3f3f3;
}

/*---------------------------------------------------------
	Footer
-------------------------------------------------------- */
footer[role="contentinfo"] {
  border-top: 1px solid #e5e5e5;
  padding: 2em 0 0;
  margin: 2em 0 0;
  float: left;
  width: 100%;
  clear: both;
}
footer[role="contentinfo"] a {
  color: #191919;
}
@media screen and (min-width: 800px) {
  footer[role="contentinfo"] div.contact {
	  width: 50%;
  }
}

footer[role="contentinfo"] div.contact-right p, footer[role="contentinfo"] div.contact-left p {
  text-align: center;
  color: #505050;
  margin: 0;
  font-size: 13px;
  font-size: 0.929rem;
  margin-bottom: 5px;
}

@media screen and (min-width: 800px) {
  footer[role="contentinfo"] div.contact-right p {
    text-align: right;
  }
  footer[role="contentinfo"] div.contact-left p {
	  text-align: left;
  }
}

/*---------------------------------------------------------
	Social
-------------------------------------------------------- */
footer[role="contentinfo"] nav.social {
  text-align: center;
  height: 26px;
  margin-bottom: 12px;
  margin-bottom: 0.857rem;
}
@media screen and (min-width: 800px) {
  footer[role="contentinfo"] nav.social {
    float: right;
    text-align: left;
/*    width: 50%;*/
    margin-top: 4px;
    margin-top: 0.286rem;
  }
}
footer[role="contentinfo"] nav.social a {
	font-size: 28px;
	font-family: ModernPictogramsNormal;
	color: #777;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
	line-height: 1;
}
footer[role="contentinfo"] nav.social a:hover {
	color: rgb(189, 5, 51);
}

/* _patterns.scss
 * Repeatable patterns
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	Media
-------------------------------------------------------- */
img {
  font-style: italic;
color: rgb(189, 5, 51);

  height: auto;
  max-width: 100%;
}
img.wp-smiley {
  margin: 0 !important;
}
img.alignleft, img.alignright, img.aligncenter {
  margin-bottom: 26px;
  margin-bottom: 1.857rem;
}

img.alignleft,
div.alignleft {
  margin-right: 26px;
  margin-right: 1.857rem;
}
img.alignright,
div.alignright {
  margin-left: 26px;
  margin-left: 1.857rem;
}

embed,
object,
video,
iframe {
  max-width: 100%;
}

dt.wp-caption-dt {
  margin-bottom: 0;
}

dd.wp-caption-dd {
  margin-left: 0;
}

body.attachment figcaption,
.post-feature figcaption,
dd.wp-caption-dd,
.wp-caption-text {
  color: #505050;
  font-style: italic;
  word-wrap: break-word;
}

div.wp-caption {
  max-width: 100%;
}

.aligncenter .wp-caption-text {
  text-align: center;
}

.alignright .wp-caption-text {
  text-align: right;
}


/*---------------------------------------------------------
	Header
-------------------------------------------------------- */
header .title {
  text-align: center;
  clear: both;
  font-size: 22px;
  font-size: 1.571rem;
}
@media screen and (min-width: 800px) {
  header .title {
    max-width: 75%;
    text-align: left;
    clear: none;
  }
}
header .post-meta {
  text-align: center;
  color: #505050;
}
@media screen and (min-width: 800px) {
  header .post-meta {
    text-align: left;
  }
}
header .post-meta a {
  color: #505050;
}
header .post-meta a:hover {
  color: rgb(189, 5, 51);
}

header {
	margin-bottom: 70px;
}

body.blog header .title,
body.archive header .title,
body.single header .title {
  margin-bottom: 0;
}



.col-60, .col-140, .col-220, .col-300, .col-380, .col-460, .col-540, .col-620, .col-700, .col-780, .col-860 {
    display:inline;
    margin-right:2.127659574468%;
	float: left;
}

.col-60 {
    width:6.382978723404%;
}

.col-140 {
    width:14.893617021277%;
}

.col-220 {
    width:23.404255319149%;
}

.col-300 {
    width:31.914893617021%;
}

.col-380 {
    width:40.425531914894%;
}

.col-460 {
    width:48.936170212766%;
}

.col-540 {
    width:57.446808510638%;
}

.col-620 {
    width:65.957446808511%;
}

.col-700 {
    width:74.468085106383%;
}

.col-780 {
    width:82.978723404255%;
}

.col-860 {
    width:91.489361702128%;
}

.col-940 {
    width:100%;
}

.fit {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/*---------------------------------------------------------
	Homepage
-------------------------------------------------------- */
section.main-content {
/*  border-bottom: 1px solid #e5e5e5;*/
}

section.main-content:after{
	margin-bottom: 15px;
}

.content {
  margin-top: 36px;
  margin-top: 2.571rem;
  margin-bottom: 0;
}
section.grid {
  zoom: 1;
  padding-top: 26px;
  padding-top: 1.857rem;
}

.featured {
	text-align: center;
}

h1.featured-title {
	font-size: 60px;
	font-weight: bold;
}

h2.featured-subtitle {
	font-size: 22px;
	color: #666;
	color: rgb(189, 5, 51);
}

.featured p {
	font-size: 18px;
}

.small {
	font-size: 12px !important;
}

.page-template-homepage-php .featured-placeholder {
  height: 200px;
  width: 90%;
  text-align: center;
  padding: 100px 5% 0;
  background-color: rgba(0, 0, 0, 0.04);
  display: block;
  color: #191919;
}
.page-template-homepage-php #featured button {
  position: absolute;
  z-index: 1;
  bottom: 26px;
  left: 4%;
  font-weight: normal;
  font-family: Gudea, Helvetica, "Helvetica Neue", Arial, Verdana, Tahoma, sans-serif;
}
.page-template-homepage-php #featured ul {
  margin-bottom: 0;
}
.page-template-homepage-php .slide-title {
  font-weight: bold;
  position: absolute;
  z-index: 1;
  bottom: 18px;
  left: 4%;
  color: #fff;
  padding: .5em;
  background: #191919;
  max-width: 50%;
  line-height: 1.1;
  margin-bottom: 36px;
  -webkit-transition: font-size 0.1s;
  -moz-transition: font-size 0.1s;
  transition: font-size 0.1s;
  font-size: 15px;
  font-size: 1.071rem;
}
@media screen and (min-width: 800px) {
  .page-template-homepage-php .slide-title {
    font-size: 17px;
    font-size: 1.214rem;
    max-width: 45%;
  }
}

p.type-intro {
	line-height: 1.5;
	font-size: 20px;
	font-size: 1.429rem;
}

/*---------------------------------------------------------
	Item grid
-------------------------------------------------------- */
@media screen and (min-width: 600px) and (max-width: 1000px) {
  .grid {
    margin-left: auto;
    margin-right: auto;
    max-width: 530px;
  }
}

.small .grid-item {
	width: auto;
}

.small .grid-item img {
	opacity: 0.6;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
	
}
.small .grid-item:hover img {
	opacity: 1;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
	
}

.grid-item {
	float: left;
    width: 242px;
	word-wrap: break-word;
    padding: 1.047%;
    margin-bottom: 26px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #fff;
    color: #505050;
    zoom: 1;
}

@media screen and (min-width: 600px) {
  .grid-item {
    float: left;
    margin-right: 3.721%;
  }
}
@media screen and (min-width: 1000px) {
  .grid-item {
    margin-right: 4.186%;
  }
}

.grid a:nth-of-type(3n) .grid-item {
  margin-right: 0;
}

.grid a:nth-of-type(3n+1) .grid-item {
	clear: both;
}



div.grid-item:after {
  clear: both;
}
a div.grid-item:hover {
  border: 1px solid #e5e5e5;
  color: #191919;
}
a div.grid-item:hover .thumbnail-image {
  background: rgba(0, 0, 0, 0.4);
}
a div.grid-item:active {
  border-color: #d8d8d8;
}
 div.grid-item img {
  margin-bottom: 12px;
  margin-bottom: 0.857rem;
}
 .thumbnail-image {
  background: rgba(0, 0, 0, 0);
  width: 100%;
  height: 135px;
  position: relative;
  top: 135px;
  margin-top: -135px;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
 .thumb-icon {
  font-family: ModernPictogramsNormal;
  font-size: 60px;
  color: #fff;
  position: relative;
  top: 22px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

 .thumb-meta {
  text-align: left;
}
 .thumb-meta p,
 .thumb-meta h4 {
  margin-bottom: 12px;
}

.small .thumb-meta p {
	margin-bottom: 3px;
	text-align: justify;
}
.small .thumb-meta h4 {
	font-size: 15px;
	margin-bottom: 3px;
}

.tmp-portfolio div.portfolio-thumb:hover .view-port-item,
div.portfolio-thumb:hover .view-port-item {
  visibility: visible;
}
.tmp-portfolio div.portfolio-thumb:active,
div.portfolio-thumb:active {
  border-color: #d8d8d8;
}
.tmp-portfolio div.portfolio-thumb img,
div.portfolio-thumb img {
  margin-bottom: 12px;
  margin-bottom: 0.857rem;
}
.tmp-portfolio .view-port-item,
.view-port-item {
  color: #7c7c7c;
  text-align: right;
  display: block;
}
.tmp-portfolio .view-port-item:before,
.view-port-item:before {
  color: #eb171c;
  font-family: ModernPictogramsNormal;
  content: "E";
/*  padding: .1em .3em;*/
margin-right: .5em;
  position: relative;
  top: -0.1em;
}

 .thumb-title {
  color: #191919;
  text-align: left;
}

/*---------------------------------------------------------
	Portfolio item
-------------------------------------------------------- */
article.portfolio-single .main-content img,
article.portfolio-single .main-content div {
  display: block;
  margin: 0 auto;
}

.colophon section {
  color: #505050;
}
.colophon section blockquote {
  margin: 0 0 26px 0;
  padding: 26px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.colophon section blockquote p {
  margin-bottom: 0;
  font-size: 15px;
  font-size: 1.071rem;
}
.colophon section blockquote cite {
  display: block;
  clear: both;
  color: #191919;
  font-weight: bold;
  font-family: Gudea, Helvetica, "Helvetica Neue", Arial, Verdana, Tahoma, sans-serif;
  font-style: normal;
  margin-top: 12px;
  margin-top: 0.857rem;
}
.colophon section blockquote cite:before {
  content: "";
}
.colophon section blockquote:before {
  content: "";
}
.colophon .portfolio-meta {
  color: #505050;
  margin-bottom: 26px;
  margin-bottom: 1.857rem;
}
.colophon .portfolio-meta p {
  margin-bottom: 0;
}

button.view-link {
  font-weight: normal;
  padding: .6em .6em;
  font-size: 12px;
  font-size: 0.857rem;
}
button.view-link:after {
  content: "  o";
  font-family: ModernPictogramsNormal;
  font-size: 14px;
  font-size: 1rem;
}



/* _forms.scss
 * Form styling
 * ------------------------------------------------------------------ */
textarea,
select,
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"] {
  border: 1px solid #e5e5e5;
  padding: .1em;
  color: #191919;
  color: #505050;
  -webkit-transition: color 0.1s ease-in-out;
  -moz-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

textarea:focus,
select: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 {
  outline-color: transparent;
  outline-style: none;
  color: #191919;
  border-color: #d8d8d8;
}

input[type="checkbox"],
input[type="radio"] {
  margin-right: .4em;
}

textarea {
  resize: vertical;
}

select {
  outline: none;
  height: 30px;
}

button,
input[type="reset"],
input[type="submit"],
input[type="button"] {
	color: rgb(189, 5, 51);

  padding: .1em .2em;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border: none;
}


/* _sidebar.scss
 * Sidebar and widget styling
 * ------------------------------------------------------------------ */
/*---------------------------------------------------------
	No Sidebar
-------------------------------------------------------- */
div.no-sidebar {
  width: 100% !important;
}

/*---------------------------------------------------------
	Sidebar & widgets
-------------------------------------------------------- */
@media screen and (min-width: 800px) {
  aside[role="complementary"] {
    width: 20.233%;
    float: right;
  }
}
aside[role="complementary"] ul {
  margin-left: 0;
}
aside[role="complementary"] ul li {
  line-height: 1.95;
  list-style: none;
}
aside[role="complementary"] .widgettitle {
  font-weight: bold;
  clear: both;
  line-height: 1.8;
  word-wrap: break-word;
  font-size: 14px;
  font-size: 1rem;
  margin-bottom: 0;
  margin-top: 1rem;
}
aside[role="complementary"] .widgettitle a.rsswidget img {
  display: none;
}
aside[role="complementary"] .textwidget {
  color: #505050;
}
aside[role="complementary"] .widget {
  margin-bottom: 26px;
  margin-bottom: 1.857rem;
  border-top: 1px solid #e5e5e5;
}


aside[role="complementary"] .widget_search input[type="text"] {
  margin-right: 12px;
}
aside[role="complementary"] .widget_rss ul {
  margin-left: 0;
}
aside[role="complementary"] .widget_rss li {
  list-style: none;
}
aside[role="complementary"] .widget_rss .rss-date {
  font-style: italic;
}
aside[role="complementary"] .widget_rss .rss-date:before {
  content: "\2013  ";
}
aside[role="complementary"] .widget_rss a.rsswidget,
aside[role="complementary"] .widget_rss cite {
  font-weight: bold;
}
aside[role="complementary"] .widget_rss cite {
  display: inline-block;
  margin-bottom: 26px;
  margin-bottom: 1.857rem;
}
aside[role="complementary"] .widget_rss cite:before {
  content: "\2013  ";
}
aside[role="complementary"] .widget_tag_cloud {
  display: inline-block;
}
aside[role="complementary"] .widget_tag_cloud a {
  font-size: 14px !important;
  border-bottom: none;
  display: inline-block;
  padding: .2em .4em;
  margin: 0 .6em .6em 0;
  border: 1px solid #e5e5e5;
}
aside[role="complementary"] .widget_tag_cloud a:active {
  border-color: #d8d8d8;
}
aside[role="complementary"] .widget_nav_menu ul.sub-menu li {
  margin-left: 1.5em;
}
aside[role="complementary"] .widget_nav_menu ul.sub-menu li :before {
  content: "\00BB  ";
}
aside[role="complementary"] #wp-calendar td {
  font-weight: normal;
}
aside[role="complementary"] #wp-calendar caption {
  color: #fff;
}

@media screen and (max-width: 800px) {
	aside[role="complementary"] .widget {
		width: 30%;
		margin-right: 3%;
		float: left;
		border-top: 1px solid #d8d8d8;
	}
	aside[role="complementary"] .widget:nth-of-type(3n) {
	  margin-right: 0;
	}

	aside[role="complementary"] .widget:nth-of-type(3n+1) {
		clear: both;
	}
	
}

