/* Imports 
--------------------------------------*/
/* Imports 
--------------------------------------*/
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,
tt,
var,
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;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  list-style: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html {
  -webkit-font-smoothing: antialiased;
}
/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.clearfix {
  display: inline-block;
}
html[xmlns] .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}
/* Rounded Corners */
/* Drop shadow */
/* font sizing */
.bttn {
  color: #68686b;
  font-size: 15px;
  font-size: 0.9375rem;
  text-decoration: none;
  background: #ccc;
  padding: 8px 12px 10px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.bttn span {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: 'Open Sans Condensed', sans-serif;
  padding-left: 5px;
  position: relative;
  top: 2px;
}
.bttn:hover {
  background: #68686b;
  color: #fff;
}
/* animations ----------------------------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Variables 
--------------------------------------*/
body {
  font-family: Geneva, sans-serif;
  color: #333333;
  font-size: 14px;
  font-size: 0.875rem;
  background: #1e1e1e url(../images/bg2.gif);
  min-width: 320px;
}
/* header --------------------*/
header.main {
  background: #333;
  padding: 1px 0 0;
}
header.main .hldr {
  max-width: 1300px;
  margin: 10px auto 10px;
  padding: 20px 1% 0;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.navigation {
  font-size: 24px;
  font-size: 1.5rem;
  float: right;
  padding: 0 0 10px;
  font-family: 'Open Sans Condensed', sans-serif;
}
.navigation li {
  display: inline;
  padding: 0 0 0 15px;
}
.navigation li:first-child {
  padding-left: 0;
}
.navigation li:after {
  content: '/';
  padding-left: 10px;
  color: #aaa;
}
.navigation a {
  color: #68686b;
  text-decoration: none;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navigation li.current-menu-item a,
.navigation li.current-post-parent a,
.navigation li a:hover {
  color: #fff;
}
.logo {
  width: 218px;
  height: 50px;
  background: url(../images/logo.png) 5% top no-repeat;
  float: left;
  margin: -10px 5px 10px 0;
  opacity: 0.4;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.logo:hover {
  opacity: 1;
}
.logo.noLnk {
  text-indent: -999em;
  overflow: hidden;
  display: block;
}
.logo a {
  text-indent: -999em;
  overflow: hidden;
  display: block;
  height: 50px;
}
/* footer --------------------*/
footer.main {
  clear: both;
  position: relative;
  width: 98%;
  max-width: 1300px;
  margin: 10px auto 0;
  padding: 15px 0 30px;
  color: #555;
  font-size: 13px;
  font-size: 0.8125rem;
  border-top: 1px solid #999;
  line-height: 1.5;
}
footer.main a {
  color: #555;
}
footer.main a:hover {
  text-decoration: none;
}
footer.main .copyr {
  margin-right: 250px;
}
footer.main .follow {
  position: absolute;
  right: 0;
  top: 15px;
  text-align: right;
}
footer.main .follow img {
  opacity: 0.5;
  -moz-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
footer.main .follow a {
  text-decoration: none;
}
footer.main .follow a:hover img {
  opacity: 0.9;
}
h2 {
  font-family: 'La Belle Aurore', cursive;
  position: absolute;
  bottom: 0%;
  right: 4%;
  font-size: 20px;
  font-size: 1.25rem;
}
h2 span {
  padding-left: 0.3em;
  color: #999;
}
/* .body --------------------*/
.body {
  overflow: hidden;
  width: 98%;
  margin: 0 auto;
  padding: 30px 1% 0;
  max-width: 1300px;
}
.body h1 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: normal;
  text-transform: uppercase;
  margin: -15px 0 25px;
  text-align: right;
}
.body .post {
  position: relative;
  margin-bottom: 40px;
}
.body .post .entry p {
  margin: 0;
}
.body .post img {
  display: block;
}
.body .prev-next {
  position: relative;
  height: 60px;
  clear: both;
  margin: 0;
}
.body .prev-next a {
  color: #68686b;
  font-size: 15px;
  font-size: 0.9375rem;
  text-decoration: none;
  background: #ccc;
  padding: 8px 12px 10px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  left: 0;
}
.body .prev-next a span {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: 'Open Sans Condensed', sans-serif;
  padding-left: 5px;
  position: relative;
  top: 2px;
}
.body .prev-next a:hover {
  background: #68686b;
  color: #fff;
}
.body .prev-next .next a {
  left: auto;
  right: 0;
}
/* homepage --------------------*/
.home header.main {
  background: transparent;
}
.home header.main .hldr {
  padding-bottom: 10px;
  margin-top: 20px;
}
.home header.main .navigation a:hover {
  color: #222;
}
.home .logo {
  background-image: url(../images/logo-home.png);
  opacity: 1 ;
  -moz-transition: none;
  -webkit-transition: none;
  -ms-transition: none;
  transition: none;
}
.home footer.main {
  margin-top: 30px;
}
.home .body {
  padding-top: 0;
}
.home .body .featured {
  margin: 0 0 2.5% 0;
  position: relative;
}
.home .body .featured img {
  padding: 5%;
  width: 90%;
  height: auto;
  background: #f9f9f9;
  border: none;
  -webkit-animation: fadeIn 1.5s;
  -moz-animation: fadeIn 1.5s;
  -ms-animation: fadeIn 1.5s;
  animation: fadeIn 1.5s;
}
.home .body .featured h2 {
  bottom: 1%;
}
.home .body .insta-preview {
  position: relative;
  overflow: hidden;
}
.home .body .insta-preview article.post {
  float: left;
  width: 29%;
  margin: 0 0.5% 1.5% 0;
  background: #fff;
  padding: 2%;
  position: relative;
  z-index: 1;
}
.home .body .insta-preview article.post:last-child {
  margin-right: 0;
}
.home .body .insta-preview img {
  width: 100%;
  height: auto;
  -webkit-animation: fadeIn 2s;
  -moz-animation: fadeIn 2s;
  -ms-animation: fadeIn 2s;
  animation: fadeIn 2s;
}
.home .body a.lnk-insta {
  color: #68686b;
  font-size: 15px;
  font-size: 0.9375rem;
  text-decoration: none;
  background: #ccc;
  padding: 8px 12px 10px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  clear: both;
  float: right;
}
.home .body a.lnk-insta span {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: 'Open Sans Condensed', sans-serif;
  padding-left: 5px;
  position: relative;
  top: 2px;
}
.home .body a.lnk-insta:hover {
  background: #68686b;
  color: #fff;
}
/* .home */
/* category --------------------*/
body.category .body article.post {
  margin-bottom: 4%;
}
body.category .body article.post img {
  padding: 5%;
  width: 90%;
  height: auto;
  background: #f9f9f9;
  border: none;
  -webkit-animation: fadeIn 1.5s;
  -moz-animation: fadeIn 1.5s;
  -ms-animation: fadeIn 1.5s;
  animation: fadeIn 1.5s;
}
body.category .body article.post img.passe-20 {
  padding: 10% 30%;
  width: 40%;
}
body.category .prev-next {
  margin-top: 40px;
}
/* body.category */
/* instagram feed --------------------*/
body.category-instagram .body {
  max-width: 10000px;
  padding-left: 0.75%;
  width: 98.25%;
}
body.category-instagram .body h1 {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
body.category-instagram .body article.post {
  margin: 0.25% 0 0 0.25% ;
  padding: 0;
  width: 49.2%;
  display: inline-block;
  background: #fff;
}
body.category-instagram .body article.post img {
  padding: 0;
  margin-bottom: 0;
  width: 100%;
  height: auto;
  -webkit-animation: fadeIn 1.5s;
  -moz-animation: fadeIn 1.5s;
  -ms-animation: fadeIn 1.5s;
  animation: fadeIn 1.5s;
}
body.category-instagram .body .prev-next {
  margin-top: 30px;
}
/* body.category-instagram */
/* portfolio --------------------*/
.portfolio h1 {
  position: static;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: normal;
  text-transform: uppercase;
  margin: -10px 0;
  text-align: right;
  border-bottom: 0;
}
.portfolio h2 {
  font-family: Geneva, sans-serif;
  position: static;
  margin: 10px 0 4%;
  font-size: 18px;
  font-size: 1.125rem;
  padding-bottom: 8px;
  border-bottom: 1px solid #777;
}
.portfolio h3 {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #333333;
  font-weight: bold;
  margin: 3px 0 8px;
}
.portfolio .lst_works li {
  overflow: hidden;
  line-height: 1.6;
  padding-bottom: 2%;
}
.portfolio .lst_works p {
  margin-bottom: .5em;
}
.portfolio .lst_works .sshot {
  border: 1px solid #777;
  background: #fff;
  padding: 2%;
  width: 60%;
  max-width: 721px;
  height: auto;
  float: left;
  margin: 0 3% 3% 0;
}
.portfolio .cta {
  color: #68686b;
  font-size: 15px;
  font-size: 0.9375rem;
  text-decoration: none;
  background: #ccc;
  padding: 8px 12px 10px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  top: 10px;
}
.portfolio .cta span {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: 'Open Sans Condensed', sans-serif;
  padding-left: 5px;
  position: relative;
  top: 2px;
}
.portfolio .cta:hover {
  background: #68686b;
  color: #fff;
}
.portfolio .lst_logos {
  overflow: hidden;
}
.portfolio .lst_logos img {
  border: 1px solid #777;
  background: #fff;
  padding: 1%;
  width: 42%;
  max-width: 340px;
  height: auto;
  float: left;
  margin: 0 2% 2% 0;
}
/* stories --------------------*/
.single .post,
html body.category-stories .post {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.single h2,
html body.category-stories h2 {
  position: static;
  font-family: Geneva, sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
  margin-bottom: 0.5em;
}
.single .body .post p,
html body.category-stories .body .post p {
  margin: 2em 0;
  line-height: 1.6;
}
.single .body .post img,
html body.category-stories .body .post img {
  margin: 20px 0;
  width: 100%;
  background: #fff;
  height: auto;
  padding: 0;
}
.single .body .post img.w50,
html body.category-stories .body .post img.w50 {
  max-width: 450px;
}
.single .body .post img.w60,
html body.category-stories .body .post img.w60 {
  max-width: 540px;
}
.single .body .post img.w70,
html body.category-stories .body .post img.w70 {
  max-width: 630px;
}
.single .prev-next,
html body.category-stories .prev-next {
  max-width: 900px;
  margin: 0 auto;
}
.single .body h1 {
  position: absolute;
  left: -999em;
  overflow: hidden;
}
html body.category-stories .body .posts-hldr {
  overflow: hidden;
  position: relative;
  margin-bottom: -40px;
}
html body.category-stories .body .post {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #cacdd0;
  position: relative;
  top: -41px;
}
html body.category-stories .body .post p {
  margin: 1em 0;
}
a.lnk-more {
  color: #68686b;
  font-size: 15px;
  font-size: 0.9375rem;
  text-decoration: none;
  background: #ccc;
  padding: 8px 12px 10px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  clear: both;
}
a.lnk-more span {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: 'Open Sans Condensed', sans-serif;
  padding-left: 5px;
  position: relative;
  top: 2px;
}
a.lnk-more:hover {
  background: #68686b;
  color: #fff;
}
h2 a {
  color: #333333;
  text-decoration: none;
}
h2 a:hover {
  text-decoration: underline;
}
.error404 h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 130px;
  padding: 0 1%;
}
/* admin --------------------*/
.post-edit-link {
  position: absolute;
  z-index: 200;
  bottom: 20px;
  left: 45%;
  color: #000;
  text-decoration: none;
  background: #fff;
  padding: 5px;
}
/* media queries --------------------*/
@media only screen and (min-width: 600px) {
  
}
@media only screen and (min-width: 1200px) {
  body.category-instagram .body article.post {
    width: 32.8%;
  }
}
@media only screen and (min-width: 1800px) {
  body.category-instagram .body article.post {
    width: 24.53%;
  }
}
/* mobiles/small screens ----------------------------------------------------------------*/
@media only screen and (max-width: 600px) {
  header.main .hldr,
  .home header.main .hldr {
    margin: 0 0 5px;
    padding-bottom: 0;
  }
  .logo {
    height: 35px;
    background-size: auto 30px;
    margin-left: 1%;
    margin-bottom: 5px;
  }
  .navigation {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 0 2% 10px;
    float: none;
    clear: both;
  }
  .navigation li {
    padding: 0 15px 0 0;
  }
  .body {
    padding-top: 10px;
  }
  .body h1 {
    font-size: 32px;
    font-size: 2rem;
    text-align: left;
    color: #999;
    margin: -5px 0 10px;
  }
  body.category .prev-next {
    margin: 20px 3% 0;
  }
  footer.main {
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
    padding-bottom: 10px;
  }
  footer.main br {
    display: block;
  }
  footer.main p.copyr {
    margin-right: 0;
    margin-bottom: 10px;
  }
  footer.main p.follow {
    position: static;
    text-align: center;
  }
  .home .navigation {
    padding-bottom: 0;
  }
  .home .body .insta-preview article.post {
    margin-right: 0;
    margin-bottom: 2%;
    padding: 3%;
    width: 94%;
    height: auto;
  }
  .home .body .featured {
    margin-bottom: 8%;
  }
  .home .body .featured h2 {
    margin-bottom: -8%;
  }
  .home .body .featured img {
    padding: 3%;
    width: 94%;
    height: auto;
    min-height: 0;
  }
  .home .body a.lnk-insta {
    display: block;
    float: none;
    text-align: center;
    padding-left: 3%;
    padding-right: 3%;
    margin-right: 0;
    margin: 10px 2% 0;
  }
  .home footer.main {
    margin-top: 15px;
  }
  body.category .body article.post {
    margin-bottom: 8%;
  }
  body.category .body article.post h2 {
    bottom: -12%;
  }
  body.category .body article.post img {
    padding: 3%;
    width: 94%;
    height: auto;
    min-height: 0;
  }
  body.category .body .prev-next {
    margin-top: 55px;
  }
  body.category-instagram .body article.post {
    width: 99.75%;
    margin-bottom: 0.5%;
  }
  body.category-instagram .body .prev-next {
    margin-top: 20px;
  }
  .portfolio h2 {
    margin-bottom: 3%;
  }
  .portfolio h3 {
    margin-bottom: 2px;
  }
  .portfolio .lst_works li {
    padding-bottom: 7%;
  }
  .portfolio .lst_works p {
    line-height: 1.3;
  }
  .portfolio .lst_works .sshot {
    width: 95.5%;
    float: none;
    margin: 0;
  }
  .portfolio .lst_works .cta {
    top: 5px;
  }
  .portfolio .lst_logos img {
    padding: 2%;
    width: 95.5%;
    max-width: 400px;
    margin: 0 0 4% 0;
  }
  html body.category-stories .body .posts-hldr {
    margin-bottom: -80px;
  }
  html body.category-stories .body article.post h2 {
    margin-bottom: -10px;
  }
  html body.category-stories .body article.post img {
    width: 100%;
    padding: 0;
  }
  .single .body .post img {
    margin: 2px 0;
  }
  .single .body .post p {
    margin-top: 0;
  }
}
/* max-width: 600px */
@media only screen and (orientation: landscape) and (max-device-width: 1000px) {
  .portfolio .lst_works p {
    font-size: 10px;
    font-size: 0.625rem;
    margin-bottom: 15px;
  }
}
/*  for high density displays  */
@media (-webkit-min-device-pixel-ratio: 2) {
  .logo {
    background-image: url(../images/logo2x.png);
    background-size: 201px 35px;
  }
  .home .logo {
    background-image: url(../images/logo-home2x.png);
    background-size: 201px 35px;
  }
}
