/*---------------------------------------------------------
 Contents (_contents.scss)
-----------------------------------------------------------
1. Code notes
2. Reset
3. Basic structure
4. Elements and typography
5. Media and classes
6. Posts and grid
7. Pages and details
8. Sidebar and widgets
9. Comments
10. Forms and buttons
-------------------------------------------------------- */
/*---------------------------------------------------------
 1. Notes (_notes.scss)
-----------------------------------------------------------
This stylesheet uses rem values with a pixel fallback.
-----------------------------------------------------------
 Examples
-----------------------------------------------------------
* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.27778rem 0; (5/$base)
-----------------------------------------------------------
 Vertical spacing
-----------------------------------------------------------
The $base variable ($base: 22;) is used for vertical spacing.
Vertical spacing between most elements should use 11px, 22px or 44px
to maintain vertical rhythm:

.my-new-div {
	margin: 11px 0;
	margin: 0.61111rem 0; (11/$base)
}
-----------------------------------------------------------
 Horizontal spacing
-----------------------------------------------------------
The $col ($col: 82;) and $gut ($gut: 32;) variables are used for horizontal spacing.
Horizontal spacing between most elements should use 16px, 32px or 82px
to maintain horizontal rhythm:

.my-new-div {
	margin: 16px 0;
	margin: 0.88889rem 0; (16/$gut)
}

-------------------------------------------------------- */
/*---------------------------------------------------------
 2. Reset (_reset.scss)
-------------------------------------------------------- */
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 {
  font-smooth: always;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

nav ol, nav ul, .portfolio-details li {
  list-style: none;
  margin:0;
}

blockquote,
q {
  quotes: none;
  border-left: solid 3px rgba(0,0,0,.08);
}

blockquote:before,
blockquote: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;
}

p {
	-moz-hyphens: none;
	-ms-hyphens: none;
	-webkit-hyphens: none;
	hyphens: none;
	word-wrap: normal;
}

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

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

sub,
sup {
  font-size: 81.25%;
  line-height: 0;
  position: relative;
  letter-spacing: .05em;
  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;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  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;
}

/*---------------------------------------------------------
 Extends (_preboot.scss)
-------------------------------------------------------- */
.clear, .frame, .blog-wrapper, .pagination, .portfolio-post, #comments-nav {
  zoom: 1;
}
.clear:before, .frame:before, .blog-wrapper:before, .pagination:before, .portfolio-post:before, #comments-nav:before, .clear:after, .frame:after, .blog-wrapper:after, .pagination:after, .portfolio-post:after, #comments-nav:after {
  display: table;
  content: "";
}
.clear:after, .frame:after, .blog-wrapper:after, .pagination:after, .portfolio-post:after, #comments-nav:after {
  clear: both;
}

.small-type, .snap-tagline, table, .alert, .placeholder-text, .wp-caption-text,
dd.wp-caption-dd, .featured-image, .set-post, .pagination, .post-footer, .portfolio-description, .portfolio-details, .attachment-content, .archive .sub-desc,
.search .sub-desc, #sidebar, #respond,
#comments, textarea,
select,
input, .wpcf7 {
  line-height: 1.55;
  font-size: 15px;
}
@media screen and (min-width: 900px) {
  .small-type, .snap-tagline, table, .alert, .placeholder-text,
  dd.wp-caption-dd, .featured-image, .set-post, .pagination, .attachment-content, .archive .sub-desc,
  .search .sub-desc,
  #comments, textarea,
  select,
  input, .wpcf7 {
    font-size: 15px;
    font-size: 0.93333rem;
  }

  .portfolio-description, .portfolio-details, #sidebar, .post-footer, #respond, .wp-caption-text {
	/*font-size: 13px;
    font-size: 0.83333rem;*/
  }

}

.serif-type, h5 {
  letter-spacing: 0;
  color: #707070;
}

.box-size, hr, .placeholder-text, .tile .post, textarea,
select,
input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*---------------------------------------------------------
 3. Scaffolding (_scaffolding.scss)
-------------------------------------------------------- */
@media screen and (min-width: 900px) {
  html {
    /*font-size: 112.5%;*/
  }
}

/*---------------------------------------------------------
 Body (_scaffolding.scss)
-------------------------------------------------------- */
body {
  color: #222;
  font-size: 16px;
  background-color: #fefefe;
  font-family: "Lausanne", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  line-height: 32px;
}

/*---------------------------------------------------------
 Base (_scaffolding.scss)
-------------------------------------------------------- */
ul, ol, dl, p, details, address, .vcard, figure, pre, fieldset, table, dt, dd, hr {
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}

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

ul li, ol li {
  margin:5px 0 0 50px;
}

/*---------------------------------------------------------
 Structure (_scaffolding.scss)
-------------------------------------------------------- */

.theme-container {
  margin-top: 2rem !important;
  padding: 0;
}

@media screen and (min-width: 900px) {
  .theme-container {
    margin-top: 3.66667rem !important;
    transition: padding .2s;
    -webkit-transition: padding .2s;
  }
  .page-template-profile-php .theme-container, .page-template-profile-php.scrolling .theme-container {
  	margin-top:230px !important;
	position: relative;
	z-index: 2;
  }
}
@media screen and (min-width: 900px) and (max-height: 700px) {
	.page-template-profile-php .theme-container, .page-template-profile-php.scrolling .theme-container,
    .page-template-portfolio-php .theme-container, .page-template-portfolio-php.scrolling .theme-container {
		margin-top:290px !important;
	}
}
.frame {
  max-width: 994px;
  margin: 0 auto;
}

/*---------------------------------------------------------
 Links (_scaffolding.scss)
-------------------------------------------------------- */
a {
  color: #007fd0;
  text-decoration: none;
}
a:hover {
  text-decoration:underline;
}

a[rel="prev"]:before,
a[rel="next"]:after,
.comments-next a:before,
.comments-previous a:after {
  position: relative;
  opacity: .6;
  top: -1px;
  top: -0.05556rem;
}

/* Removing the prev/next arrows next to the prev/next post links
 * 
 * a[rel="prev"]:before,
.comments-next a:before {
  font-family: 'themify';
  content: '\e629';
  padding-right: 10px;
  padding-right: 0.63333rem;
  color:#111111;
  font-size:1rem;
  display:inline-block;
  top:3px;
}

a[rel="next"]:after,
.comments-previous a:after {
  font-family: 'themify';
  content: '\e628';
  padding-left: 10px;
  padding-left: 0.63333rem;
  color:#111111;
  font-size:1rem;
  display:inline-block;
  top:3px;
}*/

/*---------------------------------------------------------
 Menu (_scaffolding.scss)
-------------------------------------------------------- */

@media screen and (min-width: 900px) {
  #snap-nav {
    float: right;
    width: 60%;
  }
}
#snap-nav ul {
  background-color: #fefefe;
  float: none;
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  #snap-nav ul {
    float: right;
    display: block;
    background-color: transparent;
  }
}
#snap-nav ul a {
  display: block;
  color: #707070;
  border-bottom: 1px solid #efefef;
  padding: 22px 32px;
  padding:  1.22222rem 1.77778rem;
  font-size: 16px;
  font-size: 0.88889rem;
  font-weight:bold;
}
@media screen and (min-width: 900px) {
  #snap-nav ul a {
	padding:16px;
    display: block;
    border-bottom: 2px solid transparent;
    transition: all .2s;
    -webkit-transition: all .2s;
  }
  #snap-nav ul a:hover {
  	color:#222;
	border-bottom: 1px solid transparent;
	text-decoration: none;
  }
}
#snap-nav ul a:hover {
color:#222;
  text-decoration: none;
  transition: all .2s;
    -webkit-transition: all .2s;
}
@media screen and (min-width: 900px) {
  #snap-nav ul .snap-menu-parent-item a:before {
    content: url(images/arrow-menu.svg);
    position: relative;
    opacity: .3;
    top: -3px;
    top: -0.16667rem;
    padding-right: 6px;
    padding-right: 0.33333rem;
  }
  #snap-nav ul .snap-menu-parent-item .sub-menu a:before,
  #snap-nav ul .snap-menu-parent-item .children a:before {
    content: none;
  }
}
@media screen and (min-width: 900px) {
  #snap-nav ul li {
    float: left;
    line-height: 2.2;
    border-bottom: 0;
    padding: 0;
  }
  #snap-nav ul li.current-menu-item a,
  #snap-nav ul li.current_page_item a,
  #snap-nav ul li.current-menu-item a:hover,
  #snap-nav ul li.current_page_item a:hover {
    color: #111111;
	background:transparent;
	border-bottom: 2px solid #111111;
	text-shadow:none;
	-moz-text-shadow:none;
	-webkit-text-shadow:none;
	cursor:text;
	text-decoration: none;
  }
  #snap-nav ul li:last-of-type {
    padding-right: 0;
  }
  #snap-nav ul li:hover {
    background-color: #f9f9f9;
  }
}
@media screen and (min-width: 900px) and (min-width: 900px) {
  #snap-nav ul li:hover {
    background-color: transparent;
  }
}

#snap-nav {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}
@media screen and (min-width: 900px) {
  #snap-nav {
    position: relative;
    max-height: none;
    overflow: visible;
    float: right;
  }
}
#snap-nav.opened {
  max-height: 9999px;
}

#mobile-toggle {
  color: #f9f9f9;
  background-color: #111111;
  cursor: pointer;
  line-height: 1;
  padding: 22px 0;
  padding:  1.22222rem 0;
  text-align:center;
}
@media screen and (min-width: 900px) {
  #mobile-toggle {
    display: none;
  }
}
#mobile-toggle span {
  font-size: 16px;
  font-size: 0.88889rem;
}
#mobile-toggle span:before {
  font-family:"FontAwesome";
  content: "\f0c9";
  color: #fff !important;
  padding-right: 10px;
  padding-right: 0.666rem;
}

/*---------------------------------------------------------
 Header (_scaffolding.scss)
-------------------------------------------------------- */

#main-header {
	background:#fff;
	transition:all .2s;
    -webkit-transition: all .2s;
}
.logged-in #main-header {
	margin-top: 0;
}
@media screen and (min-width: 900px) {
  #main-header {
	position:relative;
	Z-index:99998;
	top:0;
	width:100%;
  }
  .scrolling #main-header {
	background:rgba(255,255,255,.95);
	}
  .scrolling #main-header, 
  .page-template-profile-php #main-header,
  .page-template-portfolio-php #main-header {
	border-bottom:none;
  }
 .scrolling #snap-nav ul a {
  	padding:8px;
       transition: padding .2s;
        -webkit-transition: padding .2s;
  }
.scrolling .snap-custom-logo {
        width:38px;
        height:35px;
        background-size:100%;
	transition: width .2s, height .2s;
        -webkit-transition: width .2s, height .2s;
 }
.scrolling .logo-wrapper {
	padding:3px 0;
       transition: padding .2s;
        -webkit-transition: padding .2s;
}
.scrolling .theme-container {
	margin-top:54px !important;
       transition: margin .2s;
        -webkit-transition: margin .2s;
}
}

/*---------------------------------------------------------
 Logo (_scaffolding.scss)
-------------------------------------------------------- */

.logo-wrapper {
  text-align: center;
  font-size: 28px;
  font-size: 1.55556rem;
  padding: 33px 44px;
  padding:  1.83333rem 2.44444rem;
}

.snap-site-title {
  margin: 20px 0 !important;
  line-height: 1;
  font-size: 23px;
  font-size: 1.2229rem;
  transition: margin .2s;
  -webkit-transition: margin .2s;
}

.snap-site-title a {
	font-size:24px;
	transition: .2s;
    -webkit-transition: .2s;
}

.snap-site-title a:hover,
.scrolling .snap-site-title a:hover,
.page-template-profile-php .snap-site-title a,
.page-template-portfolio-php .snap-site-title a {
	color:#111111;
}
.page-template-profile-php .snap-site-title a,
.page-template-portfolio-php .snap-site-title a {
	cursor:text;
	pointer-events:none;
}
.snap-tagline {
  display: block;
  margin-top: 5.5px;
  margin-top: 0.30556rem;
}

@media screen and (min-width: 900px) {
  .logo-wrapper {
    float: left;
    width: 40%;
    padding: 2px 0;
    text-align: left;
    transition: padding .2s;
    -webkit-transition: padding .2s;
  }
  .snap-custom-logo {
    background-size:100%;
  }
  .scrolling .snap-site-title {
	margin:12px 0;
	transition: margin .2s;
   -webkit-transition: margin .2s;
	}
	.scrolling .snap-site-title a {
	font-size:20px;
	}
}

/*---------------------------------------------------------
 Main Content
-------------------------------------------------------- */
@media screen and (min-width: 900px) {
	.main-content {	}
}

/*---------------------------------------------------------
 Footer (_scaffolding.scss)
-------------------------------------------------------- */
#footer {
  clear: both;
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 2.88889rem;
  padding: 0 0 22px;
  padding:  0 0 1.22222rem;
}
@media screen and (min-width: 900px) {
  #footer {
    text-align: center;
    margin-top: 88px;
    margin-top: 2.88889rem;
  }
}
#footer p {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
}

@media screen and (min-width: 900px) {
  .footer-text-wrapper {
    /*float: left;
    width: 40%;*/
  }
}
.footer-text-wrapper p {
  font-size: 15px;
  margin-bottom: 11px;
  margin-bottom: 0.61111rem;
}

/*---------------------------------------------------------
 Social icons (_scaffolding.scss)
-------------------------------------------------------- */
#social {
  margin-top: 22px;
  margin-top: 1.22222rem;
}
@media screen and (min-width: 900px) {
  #social {
    /*float: right;
    max-width: 50%;*/
    margin-top: 0;
  }
}

.icons li {
  display: inline;
  margin-left: 6px;
  margin-left: 0.33333rem;
}
.icons li a {
  display: inline-block;
  height: 18px;
  background: url(images/social-icons.svg) no-repeat;
  opacity: .3;
}
.icons li a:hover {
  opacity: 1;
  text-decoration: none;
}
.icons li:first-child {
  margin-left: 0;
}
.icons li .twitter {
  background-position: 0;
  width: 18px;
}
.icons li .facebook {
  background-position: -19px;
  width: 8px;
}
.icons li .google {
  background-position: -27px;
  width: 13px;
}
.icons li .flickr {
  background-position: -40px;
  width: 18px;
}
.icons li .pinterest {
  background-position: -58px;
  width: 19px;
}
.icons li .linkedin {
  background-position: -79px;
  width: 16px;
}
.icons li .rss {
  background-position: -96px;
  width: 17px;
}

/*---------------------------------------------------------
 4. Elements (_elements.scss)
-------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin: 33px 0 5.5px 0;
  margin:  1.83333rem 0 0.90556rem 0;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #505050;
  text-decoration: none !important;
}

h1 {
  line-height: 1.34;
  margin: 0 0 22px -2px;
  margin:  1.22222rem 0 1.22222rem -0.11111rem;
  font-size: 38px;
  font-size: 2.11111rem;
}
@media screen and (min-width: 900px) {
  h1 {
    font-size: 28px;
    font-size: 1.77778rem;
  }
}

.single h1 {
  margin:  1.22222rem 0 2.44445rem -0.11111rem;
}

h2 {
	font-weight:400;
    line-height: 1.6;
    font-size: 1.5rem;
    word-spacing: -0.05556rem;
}

h3 {
  font-weight: 700;
  line-height: 1.45;
  font-size: 24px;
  font-size: 1.33333rem;
  word-spacing: -1px;
  word-spacing: -0.05556rem;
  margin: 45px 0 15px 0;
  margin:  2.83333rem 0 0.90556rem 0;
}

h4 {
  line-height: 1.4;
  margin-left: -1px;
  margin-left: -0.05556rem;
  font-size: 22px;
  font-size: 1.22222rem;
}

h5 {
  line-height: 1.95;
  text-transform: uppercase;
  font-size: 18px;
  font-size: 1rem;
  letter-spacing: 2px;
  letter-spacing: 0.11111rem;
}

h6 {
  font-weight: 700;
  line-height: 1.95;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.77778rem;
  letter-spacing: 1px;
  letter-spacing: 0.05556rem;
}

/*---------------------------------------------------------
 Elements (_elements.scss)
-------------------------------------------------------- */
blockquote {
  clear: both;
}
blockquote p {
  /*line-height: 1.6;
  word-spacing: -1px;
  word-spacing: -0.05556rem;
  font-size: 22px;
  font-size: 1.22222rem;*/
}
@media screen and (min-width: 900px) {
  blockquote p {
    /*font-size: 24px;
    font-size: 1.33333rem;*/
	margin:20px 40px;
  }
}
blockquote p:first-of-type:before {
  content: "\201C";
  color: #707070;
  padding-right: 3px;
  padding-right: 0.16667rem;
  margin-left: -11px;
  margin-left: -0.66667rem;
}
blockquote cite {
  color: #707070;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
  font-size: 18px;
  font-size: 1rem;
}
blockquote cite:before {
  content: "\2013";
  padding-right: 3px;
  padding-right: 0.16667rem;
}

q:before {
  content: "\201C";
}
q:after {
  content: "\201D";
}

tt,
kbd,
pre,
code,
samp {
  font-family: Consolas, Monaco, "Courier New", Courier, monospace;
  font-weight: 400;
  padding: 3px;
  padding: 0.16667rem;
  word-spacing: -2px;
  word-spacing: -0.11111rem;
}

mark {
  background: #ffc;
  font-style: italic;
  padding: 3px;
  padding: 0.16667rem;
}

code,
pre {
  background-color: #f9f9f9;
  color: #707070;
}

abbr,
acronym,
dfn {
  cursor: help;
  text-transform: lowercase;
  font-variant: small-caps;
  font-size: 1.4em;
  line-height: 1;
  letter-spacing: 1px;
  letter-spacing: 0.05556rem;
}

pre {
  display: block;
  overflow: auto;
  white-space: pre-wrap;
  padding: 22px;
  padding: 1.22222rem;
}

details summary {
  font-weight: 700;
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}
details :focus {
  outline: none;
}

del {
  color: #707070;
}

ins {
  color: #e31414;
  text-decoration: none;
}
ins:before {
  content: "\005B";
  position: relative;
  right: 1px;
  right: 0.05556rem;
}
ins:after {
  content: "\005D";
  position: relative;
  left: 1px;
  left: 0.05556rem;
}

small {
  font-size: .75em;
}

big {
  font-size: 1.25em;
}

address {
  font-style: normal;
  font-weight: 700;
}

hr {
  display: block;
  height: 1px;
  padding: 0;
  border: 0;
  border-top: 3px solid #efefef;
  width:30%;
  margin: 44px auto;
  margin:  2.44444rem auto;
}

/*---------------------------------------------------------
 Disable web fonts (_elements.scss)
-------------------------------------------------------- */

.disable-web-font h1 {
	font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
}

.disable-web-font h4,
.disable-web-font h5 {
  font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
}

.disable-web-font .intro {
	font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
}

/*---------------------------------------------------------
 Extras (_elements.scss)
-------------------------------------------------------- */
.intro {
  font-weight: bold;
  line-height: 1.6;
  font-size: 23px;
  font-size: 1.27778rem;
}
@media screen and (min-width: 900px) {
  .intro {
    font-size: 26px;
    font-size: 1.44444rem;
  }
}

.intro#switcher span {
	animation: fadein .3s;
	-webkit-animation: fadein .3s;
	opacity:1;
	background: linear-gradient(rgba(218, 236, 230, 0) 40%, rgb(218, 236, 230) 40%);
}
.intro#switcher span.hidden {
	opacity:0;
	display:none;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes fadein
{
from {opacity: 0;}
to {opacity: 1;}
}

/* Standard syntax */
@keyframes fadein
{
from {opacity: 0;}
to {opacity: 1;}
}

.drop-cap {
  float: left;
  color: #007fd0;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 7px 0 -4px;
  margin:  0 0.38889rem 0 -0.22222rem;
  font-size: 58px;
  font-size: 3.22222rem;
}

/*---------------------------------------------------------
 Lists (_elements.scss)
-------------------------------------------------------- */
.main-content > ul,
.respond-body > ul {
  list-style: square outside;
  margin-left:1.5em;
}
.main-content ol,
.respond-body ol {
  list-style: decimal inside;
}
.main-content li,
.respond-body li {
  margin:8px 0;
}
.main-content li > ul,
.main-content li > ol,
.respond-body li > ul,
.respond-body li > ol {
  margin-bottom: 0;
}
.main-content li > ul,
.respond-body li > ul {
  list-style:circle outside;
margin-left:1.5em;
}

/*---------------------------------------------------------
 Definition lists (_elements.scss)
-------------------------------------------------------- */
dl dt {
  margin-bottom: 0;
  font-weight: 700;
}

/*---------------------------------------------------------
 Tables (_elements.scss)
-------------------------------------------------------- */
table {
  width: 100%;
  text-align: center;
  border: 1px solid #efefef;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
}
table caption {
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}
table th,
table td {
  padding: 10px 0;
  padding:  0.55556rem 0;
}
table th {
  color: #181818;
  border-left: 1px solid #efefef;
}
table td {
  border-top: 1px solid #efefef;
  border-left: 1px solid #efefef;
}
table td[valign="top"] {
  vertical-align: top;
}
table td[valign="bottom"] {
  vertical-align: bottom;
}

/*---------------------------------------------------------
 Alerts (_elements.scss)
-------------------------------------------------------- */
.alert {
  clear: both;
  padding: 33px;
  background-color: #f9f9f9;
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}
.alert p {
  margin-bottom: 0;
}

.error {
  background-color: #e14023;
  color: #ffffff;
}

.success {
  background-color: #007fd0;
  color: #ffffff;
}

.note {
  background-color: #ffc300;
  color: #181818;
}

/*---------------------------------------------------------
 Placeholders (_scaffolding.scss)
-------------------------------------------------------- */
.placeholder-text {
  float: left;
  display: table;
  width: 100%;
  text-align: center;
  background-color: #f9f9f9;
  -webkit-font-smoothing: subpixel-antialiased;
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}
.placeholder-text p {
  display: table-cell;
  vertical-align: middle;
  padding: 32px;
  padding: 1.77778rem;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
}

@media screen and (min-width: 900px) {
  .portfolio-placeholder {
    width: 65.59356%;
    height: 488px;
  }
}

@media screen and (min-width: 900px) {
  .featured-placeholder {
    width: 100%;
    height: 650px;
  }
}

/*---------------------------------------------------------
 Galleries (_elements.scss)
-------------------------------------------------------- */
.gallery {
  margin-bottom: 22px !important;
}
.gallery .gallery-icon img {
  border: 0 !important;
}
.gallery .gallery-item {
  width: 30% !important;
  padding-left: 1.5%;
  padding-right: 1.5%;
}
.gallery .gallery-caption {
  margin-bottom: 0;
}
.gallery dl,
.gallery dt {
  margin-bottom: 0;
}

/*---------------------------------------------------------
 Sharedaddy (_elements.scss)
-------------------------------------------------------- */
div.sharedaddy,
div.sd-block {
  clear: both !important;
  padding: 0 22px 0 0;
  padding:  0 1.22222rem 0 0;
  border-top: 0 !important;
}

/*---------------------------------------------------------
 5. Patterns (_patterns.scss)
-------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
img.wp-smiley {
  margin: 0;
  vertical-align: text-top;
}
img.size-full, img.size-large, img.wp-post-image {
  height: auto;
}
img[class*="align"], img[class*="wp-image-"], img[class*="attachment-"] {
  height: auto;
}
img.alignleft, img.alignright, img.aligncenter {
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}

/*---------------------------------------------------------
 Captions (_patterns.scss)
-------------------------------------------------------- */
div.wp-caption {
  max-width: 100%;
}
div.wp-caption img {
  margin-bottom: 5.5px;
  margin-bottom: 0.30556rem;
  border:1px solid #efefef;
}

.wp-caption-text,
dd.wp-caption-dd {
  margin-top: 11px;
  margin-top: 0.61111rem;
}

/*---------------------------------------------------------
 Featured image (_patterns.scss)
-------------------------------------------------------- */
.featured-image figcaption {
  margin-top: 11px;
  margin-top: 0.61111rem;
}

/*---------------------------------------------------------
 Media (_patterns.scss)
-------------------------------------------------------- */
embed,
object,
video,
iframe {
  max-width: 100%;
}

/*---------------------------------------------------------
 Twitter (_patterns.scss)
-------------------------------------------------------- */
.twitter-tweet-rendered {
  display: inline;
  max-width: 100%;
}

/*---------------------------------------------------------
 General classes (_patterns.scss)
-------------------------------------------------------- */
.clear, .frame, .blog-wrapper, .pagination, .portfolio-post, #comments-nav {
  clear: both;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

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

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

.hidden {
  visibility: hidden;
}

.noborder {
  border: none;
}

div .alignleft {
  text-align: left;
  /*margin-right: 22px;
  margin-right: 1.22222rem;*/
}
div .alignright {
  text-align: right;
  /*margin-left: 22px;
  margin-left: 1.22222rem;*/
}
div .aligncenter {
  text-align: center;
}

/*---------------------------------------------------------
 6. Posts (_posts.scss)
-------------------------------------------------------- */
.tile .post {
  float: left;
  width: 100%;
  border-bottom: 1px dotted #efefef;
  padding: 32px 0;
  padding:  1.77778rem 0;
}
@media screen and (min-width: 600px) {
  .tile .post {
    width: 50%;
    height: 472px;
    padding-bottom: 0;
  }
}
.tile .post .post-wrapper {
  word-wrap: break-word;
}
@media screen and (min-width: 600px) {
  .tile .post .post-wrapper {
    height: 360px;
  }
}
.tile .post img {
  max-height: 407px;
  width: auto;
  margin-bottom: 11px;
  margin-bottom: 0.61111rem;
}
@media screen and (min-width: 600px) {
  .tile .post img {
    max-height: 285px;
  }
}
@media screen and (min-width: 900px) {
  .tile .post img {
    max-height: 221px;
  }
}
@media screen and (min-width: 600px) {
  .tile .post.last-of-posts {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    height: 440px;
  }
}
.tile .post:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.tile .post:first-of-type {
  padding-top: 0;
}
@media screen and (min-width: 600px) {
  .tile .post:nth-child(1), .tile .post:nth-child(2) {
    padding-top: 0;
    height: 440px;
  }
}
@media screen and (min-width: 600px) {
  .tile .post:nth-of-type(odd) {
    float: left;
    border-right: 1px dotted #efefef;
  }
  .tile .post:nth-of-type(odd) .set-post {
    padding-right: 9.81595%;
  }
}
@media screen and (min-width: 600px) {
  .tile .post:nth-of-type(even) {
    float: right;
  }
  .tile .post:nth-of-type(even) .set-post {
    padding-left: 9.81595%;
  }
}

@media screen and (min-width: 600px) {
  .without-thumb .grid-content-wrapper {
    height: 360px;
    overflow: hidden;
  }
}

.with-thumb .grid-content-wrapper {
  height: auto;
}
@media screen and (min-width: 600px) {
  .with-thumb .grid-content-wrapper {
    height: 86px;
    overflow: hidden;
  }
}
@media screen and (min-width: 900px) {
  .with-thumb .grid-content-wrapper {
    height: 150px;
    overflow: hidden;
  }
}

.grid-thumb-wrapper p,
.grid-thumb-wrapper .wp-caption-text {
  display: none;
}

.grid-read-more {
  clear: both;
  float: right;
  text-align: center;
  margin-top: 22px;
  margin-top: 1.22222rem;
}
.grid-read-more:before {
  content: url(images/arrow-right.svg);
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #f4f4f4;
  margin-right: 3px;
  margin-right: 0.16667rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .grid-read-more:before {
    width: 20px;
    height: 20px;
  }
}
.grid-read-more:hover:before {
  background-color: #ffc300;
}

.set-post p {
  margin-bottom: 0;
}
.set-post h3 {
  margin-top: 0;
  font-size: 18px;
  /*font-size: 1rem;*/
}
.set-post time {
  display: block;
}

.main-content .video-player {
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}

/*---------------------------------------------------------
 Post details (_posts.scss)
-------------------------------------------------------- */
.post-detail, .post-detail a {
  color: #707070;
}

/*---------------------------------------------------------
 Blog (_pages.scss)
-------------------------------------------------------- */
/*---------------------------------------------------------
 Pagination (_posts.scss)
-------------------------------------------------------- */
.pagination a[rel="prev"],
.pagination .comments-next {
  float: left;
  max-width: 40%;
}
.pagination a[rel="next"],
.pagination .comments-previous {
  float: right;
  max-width: 40%;
}

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

/*---------------------------------------------------------
 Post footer (_posts.scss)
-------------------------------------------------------- */
.post-footer {
  clear: both;
  border-top: 1px solid #efefef;
  padding-top: 22px;
  padding-top: 1.22222rem;
  margin: 44px 0 0;
  margin:  2.44444rem 0 0;
}

/*---------------------------------------------------------
 Sticky posts (_posts.scss)
-------------------------------------------------------- */
.sticky-post-message {
  float: left;
  color: #fefefe;
  background-color: #007fd0;
  line-height: 1;
  padding: 3px 4px;
  padding:  0.16667rem 0.22222rem;
  margin-right: 6px;
  margin-right: 0.33333rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

/*---------------------------------------------------------
 Post byline (_posts.scss)
-------------------------------------------------------- */
.byline {
  color: #707070;
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
  font-size:13px;
}

/*---------------------------------------------------------
 7. Pages (_pages.scss)
-------------------------------------------------------- */
.homepage-button {
  position: absolute;
  z-index: 10;
  margin: 0;
  bottom: 16px;
  bottom: 0.88889rem;
  right: 16px;
  right: 0.88889rem;
  font-size: 16px;
  font-size: 0.88889rem;
  -webkit-font-smoothing: subpixel-antialiased;
}
@media screen and (min-width: 900px) {
  .homepage-button {
    font-size: 14px;
    font-size: 0.77778rem;
  }
}

.homepage-featured-area {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 44px;
  margin-bottom: 2.44444rem;
}
.homepage-featured-area img {
  display: block;
  height: auto;
  float: left;
  border: 0;
}
.homepage-featured-area ul {
  margin-bottom: 0;
}
.homepage-featured-area li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
}
.homepage-featured-area li:first-child {
  position: relative;
  display: block;
  float: left;
}

/*---------------------------------------------------------
 Homepage blurb (_pages.scss)
-------------------------------------------------------- */
#blurb {
  float: left;
  width: 100%;
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}
@media screen and (min-width: 900px) {
  #blurb {
    width: 29.37626%;
  }
}
#blurb h3 {
  margin-top: 0;
}

/*---------------------------------------------------------
 Homepage post area (_pages.scss)
-------------------------------------------------------- */
.page-template-homepage-php .with-sidebar {
  float: right;
}

/*---------------------------------------------------------
 Portfolio template (_pages.scss)
-------------------------------------------------------- */

.portfolio-paging {
  margin:0 1rem;
  display: flex;
  color: #707070;
  font-size: 14px;
}
.portfolio-paging .alignleft {
	width: 50%;
	padding: 20px 0;
	text-align:left;
}
.portfolio-paging .alignright {
	width: 50%;
    padding: 20px 0;
	text-align:right;
}
.portfolio-paging a {
	display: inline-block;
	max-width:50%;
	overflow: clip;
	color: #707070;
	box-sizing: border-box;
	text-overflow: ellipsis;
	text-wrap: nowrap;
	margin: 0 8px;
}
.portfolio-post {
  margin: 64px 16px;
  margin:  4.44444rem 1rem;
  background: #fff;
  border-radius:24px;
}
@media screen and (min-width: 900px) {
  .portfolio-post {
    margin: 66px 0;
    margin:  3.66667rem 0;
	background: #fff;
  }
  .portfolio-single-content {
	padding: 2.4444rem 3.44444rem !important;
	box-sizing: border-box !important;
  }
}
.portfolio-post:first-of-type {
  margin-top: 0;
}
.portfolio-post:last-of-type {
  margin-bottom: 0;
}

.portfolio-single-content {
	background: #fff;
	border-radius: 24px;
	padding: 2rem 1rem;
	box-sizing: border-box;
}

.portfolio-image,
.portfolio-single-content {
  margin-bottom: 0;
}

@media screen and (min-width: 900px) {
  .portfolio-image,
  .portfolio-single-content {
    float: left;
    width: 55%;
  }
}

.portfolio-image img {
	border-radius:16px;
	border:1px solid #fff;
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.portfolio-single-content-without-excerpt {
  width: 100%;
}

.portfolio-description {
  padding: 32px 32px 24px 24px;
  box-sizing:border-box;
}
@media screen and (min-width: 900px) {
  .portfolio-description {
    float: right;
    width: 41%;
    margin-left: 3.21932%;
	padding: 32px 64px 24px 0;
  }
  .portfolio-description h4 {
	  margin-top: 0;
	}
}

.portfolio-details {
  color: #707070;
}

.portfolio-details li {
  display: inline;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom:5px;
}
@media screen and (min-width: 900px) {
  .portfolio-details li {
    display: block;
  }
}
.portfolio-details li i {
  margin-right:8px;
}

.portfolio-excerpt {
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}

.portfolio-button {
  margin-bottom: 0;
  color: #fff;
  background-color: #179d6d;
  border:none;
  font-weight:bold;
}
.portfolio-button:hover {
  color: #fff;
  text-shadow: none;
  -moz-text-shadow: none;
  -webkit-text-shadow: none;
  border:none !important;
}

/*---------------------------------------------------------
 with sidebar (_pages.scss)
-------------------------------------------------------- */
.with-sidebar {
  float: left;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .with-sidebar {
    width: 65.59356%;
  }
}

/*---------------------------------------------------------
 Attachment (_pages.scss)
-------------------------------------------------------- */
.attachment-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 22px;
  margin-top: 1.22222rem;
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}

/*---------------------------------------------------------
 Profile template (_pages.scss)
-------------------------------------------------------- */
.profile-page {
	background: #fff !important;
	padding: 2.4444rem 1rem;
  	box-sizing: border-box;
	border-radius:24px;
	-moz-border-radius:24px;
	-webkit-border-radius:24px;
	margin:0 0 3.66667rem;
}

.profile-page #avatar img {
	border-radius:99px;
	-moz-border-radius:99px;
	-webkit-border-radius:99px;
	border:2px solid #fff;
}

@media screen and (min-width: 900px) {
  .page-template-profile-php .mobile-element,
  .page-template-portfolio-php .mobile-element {
    display: none;
  }
  .profile-page {
	margin:80px 0 3.66667rem;
	padding: 2.4444rem 3rem;  
  }
}
.page-template-profile-php .desktop-element,
.page-template-portfolio-php .desktop-element {
  display: none;
}

@media screen and (min-width: 900px) {
	.page-template-profile-php #profile-image,
	.page-template-portfolio-php #profile-image {
		display:block;
		position:relative;
		top:0;
		left:0;
		z-index:-1;
		background:url(images/bg.jpg) center center no-repeat;
		background-size:cover;
		width:100%;
		height:100%;
		opacity:20%;
	}
}

#camera { display:none; }

@media screen and (min-width: 900px) {
  .page-template-profile-php .desktop-element,
  .page-template-portfolio-php .desktop-element {
    display: block;
  }
  .page-template-profile-php #profile-image,
  .page-template-portfolio-php #profile-image {
	position:fixed;
	text-align:center;
   }
   .page-template-profile-php #profile-image .frame,
   .page-template-portfolio-php #profile-image .frame {
   		height:100%;
   }
   #camera {
	   display:block;
	   position:relative;
	   z-index:999;
	   float:right;
	   width:20px;
	   height:20px;
	   top:20%;
	   margin-top:-20px;
	   margin-right:40px;
	   cursor:pointer;
	   color:#111111;
	   text-align:right;
   }
   #camera:hover {
	   text-decoration:none;
   }
   #camera #camera-content {
		display:inline-block;
   		width:260px;
		position:relative;
		float:right;
		line-height:17px;
		pointer-events:none;
		cursor:default;
   }
   #camera:hover #camera-content {
		display:inline-block;
   }
   #camera span#camera-icon {
	   display:inline-block;
   		position:relative;
		top:0;
		float:right;
		width:20px;
	   height:50px;
	   margin-top:0;
	   -webkit-transition: all .3s;
	   -moz-transition: all .3s;
	   transition: all .3s;
   }
   #camera span#camera-icon:before {
	   font-family:'themify';
   		content: "\e64e";
		font-size:22px;
		color:#707070;
		-webkit-transition: font-size .1s;
	   -moz-transition: font-size .1s;
	   transition: font-size .1s;
   }
   #camera span#camera-text1,
   #camera span#camera-text2 {
		margin-right:40px;
		padding:0 2px;
		opacity:0;
		position:relative;
		top:-1px;
   }
   #camera span#camera-text1 {
	   font-weight:bold;
	   font-size:14px;
		-webkit-transition: all .3s;
		-moz-transition: all .3s;
		transition: all .3s;
   }
   #camera span#camera-text2 {
	   font-size:13px;
	   -webkit-transition:all .3s ease .05s;
	   -moz-transition:all .3s ease .05s;
		transition:all .3s ease .05s;
   }
   #camera:hover span#camera-icon {
   	  margin-right:10px;
	  opacity:.7;
   }
   #camera:hover span#camera-icon:before {
	  font-size:18px;
   }

   #camera:hover span#camera-text1,
   #camera:hover span#camera-text2  {
   	  margin-right:10px;
	  opacity:1;
   }
}

.page-template-profile-php .with-sidebar,
.page-template-portfolio-php .with-sidebar {
  float: right;
}
.page-template-profile-php #sidebar,
.page-template-portfolio-php #sidebar {
  float: left;
  position:relative;
  margin-top: 2.4rem;
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}

.page-template-profile-php #sidebar li,
.page-template-portfolio-php #sidebar li {
	margin-left:0;
}

.page-template-profile-php #sidebar li i,
.page-template-portfolio-php #sidebar li i {
	display:inline-block;
	width:15px;
	text-align:center;
	padding-right:5px;
}
.page-template-profile-php #sidebar img,
.page-template-portfolio-php #sidebar img {
  float: left;
  max-width: 30%;
  margin-right: 32px;
  margin-right: 1.77778rem;
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}
@media screen and (min-width: 900px) {
  .page-template-profile-php #sidebar img,
  .page-template-portfolio-php #sidebar img {
    float: none;
    max-width: 100%;
    margin-right: 0;
  }
}

/*---------------------------------------------------------
 Archive layout (_pages.scss)
-------------------------------------------------------- */
.archive .sub-title,
.search .sub-title {
  margin-top: 0;
  font-weight: 400;
  font-size: 18px;
  font-size: 1rem;
}
.archive .sub-desc,
.search .sub-desc {
  border-bottom: 1px solid #efefef;
  padding-bottom: 22px;
  padding-bottom: 1.22222rem;
  margin-bottom: 44px;
  margin-bottom: 2.44444rem;
}
.archive .sub-desc p,
.search .sub-desc p {
  margin-top: 22px;
  margin-top: 1.22222rem;
}
.archive #s,
.search #s {
  width: 100%;
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}
@media screen and (min-width: 900px) {
  .archive #s,
  .search #s {
    width: 65.59356%;
  }
}
.archive h4,
.search h4 {
  margin: 0;
}
.archive .post,
.search .post {
  width: 100%;
  border-bottom: 1px solid #efefef;
  padding-bottom: 33px;
  padding-bottom: 1.83333rem;
  margin-bottom: 33px;
  margin-bottom: 1.83333rem;
}
.archive .post:last-of-type,
.search .post:last-of-type {
  border-bottom: 0;
}

/*---------------------------------------------------------
 8. Sidebar (_sidebar.scss)
-------------------------------------------------------- */
.no-sidebar {
  width: 100%;
}

#sidebar {
  float: left;
  width: 100%;
  margin-top: 44px;
  margin-top: 2.44444rem;
}
@media screen and (min-width: 900px) {
  #sidebar {
	 position:fixed;
	 right:0;
    float: right;
    width: 29.37626%;
    margin-top: 0;
  }
  .home #sidebar {
	position:relative;
	right:auto;
	margin-top:-110px;
  }
}
#sidebar p {
  margin-bottom: 11px;
}
#sidebar li {
  list-style: none;
  line-height: 1.8;
}
#sidebar ul,
#sidebar p:last-of-type {
  margin-bottom: 0;
}

/*---------------------------------------------------------
 Widgets (_sidebar.scss)
-------------------------------------------------------- */
.widgettitle {
  margin-top: 0;
  font-size: 18px;
  font-size: 1rem;
}

.widget {
  margin-bottom: 44px;
  margin-bottom: 2.44444rem;
}
.widget:last-of-type {
  margin-bottom: 0;
}

.rsswidget img {
  display: none;
}

.widget_rss .rss-date:before {
  content: "\2013  ";
}
.widget_rss cite {
  display: inline-block;
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
}
.widget_rss cite:before {
  content: "\2013  ";
}

.widget_tag_cloud a {
  padding: 2px;
  padding: 0.11111rem;
}

.widget_calendar tfoot {
  background-color: #f9f9f9;
}
.widget_calendar tfoot td {
  border-left: 0;
}

.widget_nav_menu ul.sub-menu {
  margin-bottom: 0;
}
.widget_nav_menu ul.sub-menu li:before {
  content: "\2013  ";
}

/*---------------------------------------------------------
 9. Comments (_comments.scss)
-------------------------------------------------------- */
#respond,
#comments {
  display: block;
  width: 100%;
}

#comments .bypostauthor .comment-name {
  background-color: #007fd0;
  color: #fefefe;
  padding: 5px 6px;
  padding:  0.27778rem 0.33333rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
#comments .bypostauthor .comment-name a {
  color: #fefefe;
}
@media screen and (min-width: 900px) {
  #comments .children {
    padding-left: 114px;
    padding-left: 6.33333rem;
  }
}
#comments .children .comment {
  padding-top: 44px;
  padding-top: 2.44444rem;
}
#comments .avatar {
  display: none;
  float: left;
  width: 82px;
}
@media screen and (min-width: 900px) {
  #comments .avatar {
    display: block;
  }
}

#comment-headline {
  margin: 22px 0;
  margin:  1.22222rem 0;
}
@media screen and (min-width: 900px) {
  #comment-headline {
    margin: 44px 0;
    margin:  2.44444rem 0;
  }
}

#cancel-comment-reply-link {
  font-weight: 400;
  border-left: 1px solid #efefef;
  padding-left: 6px;
  padding-left: 0.33333rem;
}

/*---------------------------------------------------------
 Comment details (_comments.scss)
-------------------------------------------------------- */
.comment {
  padding-top: 44px;
  padding-top: 2.44444rem;
}
.comment:first-of-type {
  padding-top: 0;
}

.fn {
  color: #222222;
}

.required {
  color: #707070;
}

.comment-date {
  float: right;
  color: #707070;
}

.comment-name {
  font-weight: 700;
}

.comment-field {
  display: inline-block;
  margin: 0 0 11px;
  margin:  0 0 0.61111rem;
}
.comment-field:after {
  content: "\003A";
  color: #707070;
}

.protected-comments {
  margin: 22px 0;
  margin:  1.22222rem 0;
}

#comments-nav {
  margin-bottom: 44px;
  margin-bottom: 2.44444rem;
}

/*---------------------------------------------------------
 Respond form (_comments.scss)
-------------------------------------------------------- */
#reply-title {
  margin: 22px 0;
  margin:  1.22222rem 0;
}

.respond-type {
  width: 100%;
}

.respond-note {
  display: block;
  color: #707070;
}

.respond-body {
  margin: 0;
  border-bottom: 1px solid #efefef;
  padding-bottom: 44px;
  padding-bottom: 2.44444rem;
}
@media screen and (min-width: 900px) {
  .respond-body {
    margin: 0 0 0 114px;
    margin:  0 0 0 6.33333rem;
  }
}

#respond {
  margin-top: 44px;
  margin-top: 2.44444rem;
}
#respond fieldset {
  margin-bottom: 11px;
  margin-bottom: 0.61111rem;
}
#respond .form-submit {
  margin-bottom: 0;
}
#respond input[type="submit"] {
  margin-bottom: 0;
}

/*---------------------------------------------------------
 10. Forms (_forms.scss)
-------------------------------------------------------- */
textarea,
select,
input {
  max-width: 100%;
  border: 0;
  background-color: #f9f9f9;
  padding: 11px;
  padding: 0.61111rem;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
  line-height: 1;
}
textarea:focus,
select:focus,
input:focus {
  /*outline-color: #bfbfbf !important;*/
}

textarea {
  line-height: 1.55;
  resize: vertical;
}

select {
  outline: none;
  border: 1px solid #efefef;
  background-color: #fefefe;
}

/*---------------------------------------------------------
 Buttons (_forms.scss)
-------------------------------------------------------- */
button,
input[type="reset"],
input[type="submit"],
input[type="button"],
#infinite-handle span {
  color: #222222;
	color: #fff;
	background-color: #000 !important;
	font-weight: bold;
  line-height: 1;
  border:none !important;
  border-top:none !important;
  border-bottom:none !important;
  text-align: center;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  font-size: 14px;
  font-size: 0.77778rem;
  margin-bottom: 22px;
  margin-bottom: 1.22222rem;
  padding: 14px;
  padding: 0.77778rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
@media screen and (min-width: 900px) {
  button,
  input[type="reset"],
  input[type="submit"],
  input[type="button"],
  #infinite-handle span {
    font-size: 14px;
    font-size: 0.77778rem;
  }
}
button:active, button:hover,
input[type="reset"]:active,
input[type="reset"]:hover,
input[type="submit"]:active,
input[type="submit"]:hover,
input[type="button"]:active,
input[type="button"]:hover,
#infinite-handle span:active,
#infinite-handle span:hover {
  color: #fff !important;
  background-color:#0e8b5e !important;
  border:none;
  border-top:none;
  border-bottom:none;
}

#infinite-handle {
  clear: both;
  float: left;
}
#infinite-handle span {
  display: inline-block;
}

.infinite-loader {
  clear: both;
  display: inline-block;
  float: left;
}

/*---------------------------------------------------------
 Contact form 7 (_forms.scss)
-------------------------------------------------------- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  margin-top: 11px;
  margin-top: 0.61111rem;
}
.wpcf7 input[type="submit"] {
  margin-bottom: 0;
}

/*
     FILE ARCHIVED ON 03:39:46 Dec 31, 2021 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 13:22:09 Nov 26, 2023.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 247.346
  exclusion.robots: 0.241
  exclusion.robots.policy: 0.232
  cdx.remote: 0.095
  esindex: 0.01
  LoadShardBlock: 195.835 (3)
  PetaboxLoader3.datanode: 335.973 (4)
  load_resource: 370.134
  PetaboxLoader3.resolve: 70.419
*/