/*
Theme Name: Payge
Theme URI: playnethemes.com
Description: A beautiful, simple way to share your stories with the world.
Author: Playne Themes
Author URI: playnethemes.com
Version: 1.0
Tags: White, Black, white, one-column, flexible-width, custom-background, custom-menu, theme-options, translation-ready
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

/* Index of this css file
-------------------------

	1. Resets
	2. Basics
	3. Text styles
	4. Header
	5. Navigation
	6. Wrapper & main
	7. Posts 
	8. Sidebar & Portfolio
	9. Post formats
	10. Post navigation
	11. Comments section
	12. Footer
	13. Standard Wordpress
	14. Contact form 7
	15. Footer bottom
	16. Custom archive
	17. Media queries

For an index of the playneshortcodes look for the elements.css file located inside the plugin.

------------------------*/


/* 1. RESETS
----------------------------------- */

html, body {
	overflow-x: hidden;
}

html {
	position: relative;
	-webkit-font-smoothing: anti-antialiased;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, a, abbr, acronym, address, big, cite, del, dfn, em, font, 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 {
    	margin: 0;
    	padding: 0;
    	border: 0;
    	outline: 0;
    	font-size: 100%;
    	vertical-align: baseline;
    	background: transparent;
}

i, cite, var, address, dfn {
	font-style: normal;
}

em {
	font-style:italic;
}

.clearfix:after {
    	content: "";
    	display: block;
    	clear: both;
    	visibility: hidden;
    	font-size: 0;
    	height: 0;
}

.clearfix {
    	*display: inline-block;
    	height: 1%;
}

ol, ol li {
	list-style-type: decimal;
}

blockquote, q { 
	quotes: none;
	border-left:none;
}

blockquote p {
	padding-left:30px;
	padding-right:30px;
}

blockquote {
	border-left:2px solid #C6CED2;
	padding-top:0px;
	color:#C6CED2;
	font-size:17px;
	padding-bottom:0px;
}

blockquote:before, blockquote:after, q:before, q:after {
    	content: '';
    	content: none;
}

:focus { outline: 0 }

ins { 	text-decoration: none; 
}

del { 	text-decoration: line-through; 
}

table {
    	border-collapse: collapse;
    	border-spacing: 0;
}

ul {
	display: block;
	list-style-type: disc;
	padding-left:20px;
}

ol {
	padding-left:22px;
}

ul ul, ul ol, ol ul, ol ol {
	padding: 0 0 0 25px;
	margin: 1.5% 0 0 0;
}

/* 2. BASICS
----------------------------------- */

.zilla-dribbble-shots li {
	margin:0px;
}

/* Animations */

@-webkit-keyframes fadeincontent {
  0% {
   opacity: 0;
  }
  50% {
   opacity: 0.5;
  }
  100% {
   opacity: 1;
  }
}

@-moz-keyframes fadeincontent {
  0% {
   opacity: 0;
  }
  50% {
   opacity: 0.5;
  }
  100% {
   opacity: 1;
  }
}

a {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

iframe {
	width:100%;
}

.animated{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:2s;-moz-animation-duration:2s;-ms-animation-duration:2s;-o-animation-duration:2s;animation-duration:2s;}.animated.hinge{-webkit-animation-duration:2s;-moz-animation-duration:2s;-ms-animation-duration:2s;-o-animation-duration:2s;animation-duration:2s;}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@-moz-keyframes flipInY {
    0% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -moz-transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -moz-transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@-o-keyframes flipInY {
    0% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -o-transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -o-transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	-moz-backface-visibility: visible !important;
	-moz-animation-name: flipInY;
	-o-backface-visibility: visible !important;
	-o-animation-name: flipInY;
	backface-visibility: visible !important;
	animation-name: flipInY;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    } 40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
    }
    
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
    }
    
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@-moz-keyframes flipInX {
    0% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    
    40% {
        -moz-transform: perspective(400px) rotateX(-10deg);
    }
    
    70% {
        -moz-transform: perspective(400px) rotateX(10deg);
    }
    
    100% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@-o-keyframes flipInX {
    0% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    
    40% {
        -o-transform: perspective(400px) rotateX(-10deg);
    }
    
    70% {
        -o-transform: perspective(400px) rotateX(10deg);
    }
    
    100% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	-moz-backface-visibility: visible !important;
	-moz-animation-name: flipInX;
	-o-backface-visibility: visible !important;
	-o-animation-name: flipInX;
	backface-visibility: visible !important;
	animation-name: flipInX;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
	}
	
	80% {
		-webkit-transform: translateY(10px);
	}
	
	100% {
		-webkit-transform: translateY(0);
	}
}
@-moz-keyframes bounceInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		-moz-transform: translateY(-30px);
	}
	
	80% {
		-moz-transform: translateY(10px);
	}
	
	100% {
		-moz-transform: translateY(0);
	}
}

@-o-keyframes bounceInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		-o-transform: translateY(-30px);
	}
	
	80% {
		-o-transform: translateY(10px);
	}
	
	100% {
		-o-transform: translateY(0);
	}
}

@keyframes bounceInUp {
	0% {
		opacity: 0;
		transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		transform: translateY(-30px);
	}
	
	80% {
		transform: translateY(10px);
	}
	
	100% {
		transform: translateY(0);
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	-moz-animation-name: bounceInUp;
	-o-animation-name: bounceInUp;
	animation-name: bounceInUp;
}
@-webkit-keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
	}
	
	80% {
		-webkit-transform: translateY(-10px);
	}
	
	100% {
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes bounceInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-moz-transform: translateY(30px);
	}
	
	80% {
		-moz-transform: translateY(-10px);
	}
	
	100% {
		-moz-transform: translateY(0);
	}
}

@-o-keyframes bounceInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-o-transform: translateY(30px);
	}
	
	80% {
		-o-transform: translateY(-10px);
	}
	
	100% {
		-o-transform: translateY(0);
	}
}

@keyframes bounceInDown {
	0% {
		opacity: 0;
		transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		transform: translateY(30px);
	}
	
	80% {
		transform: translateY(-10px);
	}
	
	100% {
		transform: translateY(0);
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	-moz-animation-name: bounceInDown;
	-o-animation-name: bounceInDown;
	animation-name: bounceInDown;
}

.fitvid, .flexslider-container, .post .featured-image {
	margin-bottom: 45px;
}

.header-inner {
	margin: 0 auto;
	padding: 45px 0;
	width: 80%;
	text-align:center;
}

.posts-content {
	margin: 0 auto;
	width: 80%;
	text-align: justify;
}

.page .info {
	display:none;
}

.info {
	text-transform:none;
	font-size:12px;
	color:#C6CED2;
	font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight:400;
}

.info a {
	color:#C6CED2;
}

.info a:hover {
	color:#555;
}

.extra {	
	background:#FAFAFA;
}

.extra-inner {
	margin:0 auto;
	width:80%;
	max-width:750px;
	padding:50px 0;
}

ul.breadcrumbs {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size:14px;
}
ul.breadcrumbs li {
	float: left;
	list-style: none;
	margin: 0 5px 0 0;
	padding: 0;
}

.written {
	font-family: 'Great Vibes', sans-serif;
	font-size: 18px;
	color:#86888A;
}

.left-float { 
	float:left; 
}

.right-float { 
	float:right; 
}

.right-float i { 
	font-size:13px; 
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

body {
    	margin: 0;
    	font: 400 15px/28px "Lato", Helvetica, Arial, sans-serif;
	color: #697273;
	position:relative;
    	background: #FAFAFA;
    	overflow-x: hidden;
	line-height: 30px;
	height:100%;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
	word-wrap: break-word;
}

img { 	
	border-style: none; 
}

body a { 
	color:#f44238;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

a:hover { 
	color: #555;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

input, textarea, select {
    	font: 100% arial,sans-serif;
    	vertical-align: middle;
    	color: #000;
}

form, fieldset {
    	margin: 0;
    	padding: 0;
    	border-style: none;
}

hr {
    	margin: 20px 0 30px;
    	border: 0;
    	border-bottom: 1px dotted #ddd;
    	height: 1px;
}

.whitespace {
	padding-left:0px;
	margin:0 auto;
	padding-right:0px;
	background:none;
	text-align: left;
	float:left;
	display: inline-block;
	font-weight: 500;
	font-size: 15px;
	text-transform: none;
	font-family: 'Montserrat', Helvetica, sans-serif;
}

.line {
	content: "";
	width: 100%;
	margin:0 auto;
	height: 15px;;
	border-bottom: 1px solid #F2F2F2;
	left: 0;
}

.alignleft { float: left }

.alignright { float: right }

.alignnone { text-align:center; }

.aligncenter { 
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/* 3. TEXT STYLES
----------------------------------- */

::selection { background:#eaeaea;}

::-moz-selection { background:#eaeaea;}

::-webkit-selection { background:#eaeaea;}


h1, h2, h3, h4, h5, h6 {
    	margin: 25px 0 25px 0;
    	line-height: 1.4em;
	font-family: 'Montserrat', Helvetica, Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	color:#515e6c;
	letter-spacing:3px;
}

h1 { 
	font-size: 28px;
	line-height: 40px;
}

h2 { 
	font-size: 24px;
	line-height: 32px;
 }

h3 { 
	font-size: 20px;
	line-height: 30px;
}

h4 { 
	font-size: 16px;
	line-height: 22px;
}

h5 { 
	font-size: 14px;
	line-height: 18px;
}

h6 { 
	font-size: 12px;
}

/* 4. HEADER
----------------------------------- */

#intro-box {
	background:#e26c6d;
	margin:0 auto;
	position:relative;
	z-index:999;
}

.intro-box-inner {
	width:80%;
	max-width:750px;
	width:80%;
	padding:65px 0px;
	margin:0 auto;
	color:#FFF;
	text-align:center;
	-webkit-animation: fadeintextright 2s;
	-moz-animation: fadeintextright 2s;
}

.extras, .extras li {
	list-style:none;
	font-size:12px;
	color:#FFF;
	display:inline-block;
}

.nav {
	display:block;
	float:left;
}

.extras li a {
	color:#FFF;
}

.extra-row-inner {
	width:80%;
	max-width:750px;
	margin:0 auto;
	padding:40px 0 40px 0;
	font-size:12px;
	color:#FFF;
	position: relative;
}

.pageslide-inner {
	max-width:750px;
	width:80%;
	margin:0 auto;
	padding:60px 0;
}

.extra-row-inner i {
	font-size:18px;
	vertical-align:middle;
}

.socials {
	font-family: 'Noto Sans', sans-serif;
    	color: #9fa5a6;
    	padding: 0px;
    	display: block;
	text-align:left;
    	font-size: 18px;
    	font-weight: 600;
    	line-height: 20px;
    	text-transform: none;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
    	vertical-align:middle;
}

.socials li {
	padding-bottom: 25px;
}

.socials .google i {
	color:#d34836 !important;
}

.socials .twitter i {
	color:#4099FF !important;
	padding-right:12px;
}

.socials .tumblr i {
	padding-right:20px;
	color:#34526f !important;
}

.socials .rss i {
	padding-right:14px;
	color:#fa9b39 !important;
}

.socials .linkedin i {
	color:#4875B4 !important;
	padding-right:14px;
}

.socials .facebook i {
	color:#3b5998 !important;
	padding-right:21px;
}

.socials .vimeo i {
	color:#3b5998 !important;
	padding-right:14px;
}

.socials .skype i {
	color:#44bbff !important;
}

.socials .youtube i {
	color:#c4302b !important;
	padding-right:20px;
}

.socials .mail i {
	color:#e26c6d !important;
}

.socials .dribbble i {
	color:#ea4c89 !important;
	padding-right:14px;
}

.socials .instagram i {
	color:#517fa4 !important;
	padding-right:14px;
}

.socials .flickr i {
	color:#ff0084 !important;
	padding-right:14px;
}

.socials li {
	list-style:none;
	text-align:left;
	display:block;
	float:left;
	width:100%;
}

.socials i {
	padding-right:10px;
}

.socials a, .extra-search a {
	color:#FFF;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
	vertical-align:middle;
}

.extra-search .active {
	color:#f56559;
}

.extra-search a:hover i {
	color:#fff;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.socials li:hover i {
	color:#f56559;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.extra-search {
	position:relative;
	float:right;
	font-size:12px;
	vertical-align:middle;
}

.extra-info {
	position:relative;
	float:right;
	font-size:12px;
	padding-left:15px;
	z-index:100;
}

.white {
	color:#FFF !important;
	margin-bottom:20px !important;
}

.table {
	display:table;
	height:100%;
	width:100%;
}

.sidebar-toggle {
	position:relative;
	padding-left:10px;
}

#info-box {
	display:none;
	position:fixed !important;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	background:url(images/bg8.png);
	backgroundrgba(0,0,0,0.8);
	z-index:99;
}

.info-box-inner {
	display:table-cell;
	vertical-align:middle;
	height:100px;
	text-align:center;
	position:relative;
	margin:0 auto;
	width:80%;
	max-width:700px;
}


header {
	margin-bottom:0px;
}

.main-header, #footer-bottom {
	position:relative;
}

#main-header {
	position: relative;
	z-index: 9999;
	width:100%;
	display: block;
	background: #2a2f35;
	-webkit-transform:translate3d(0,0,0);
}

.header {
	position: relative;
	width: 100%;
	display: block;	
	padding-top:0px;
	background:#000;
}

.navtoggle {
	text-align:left;
}

.intro {
	color: #C6CED2;
	font-size: 17px;
}

.header-top {
	width: 100%;
	display: block;	
	padding-top:0px;
}

.header-top-inner {
	width: 80%;
	text-align:center;
	max-width:750px;
	display:block;
	margin:0 auto;
	padding:10px 0 110px 0;
	font-size:14px;
}

.error404 .post .search-form {
	margin-top: 30px;
	margin: 0 auto;
	position: relative;
}

.error404 .post .search-form-input {
	padding: 10px 86px 10px 20px;
	font-size: 20px;
	padding-right:20px;
	width: 100%;
	border:none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #EEE;
}

.error404 .post .search-form .submit {
	position: absolute;
	display:none;
}

.error404 p {	
	text-align:center;
}

.logo {
    display: inline-block;
    text-indent: -9999px;
    margin: 0;
    text-align:center;
}

.logo-image {
	text-align:left;
	float:left;
	line-height:10px;
	height:auto;
	max-width:300px;
	display:block;
	margin:0 auto;
	padding-bottom:0px;
}

.logo-image img {
	max-width: 100%;
	height: auto;
	position:relative;
}

.logo-text {
    	font-family: 'Montserrat', sans-serif;
    	font-size: 20px;
	font-weight: 700;
	letter-spacing: 5px;
    	line-height: 31px;
	float:left;
	text-transform:uppercase;
    	padding: 0;
	display:block;
    	text-align:left;
    	color: rgba(255,255,255,0.6);
	margin:0;
}

.logo-text a { 
	 color: #FFF;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.logo-text a:hover {
	color: transparent !important;
	text-shadow: 0px 0px 5px white;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease; 
}

.toggle-box {
	float:right;
	padding-right:0;
}

/* 5. NAVIGATION
----------------------------------- */

#collapse {
	display:none;
}

.one {
	width:35%;
	margin-right:30%;
	display:inline-block;
	float:left;
}

.one-last {
	width:35%;
	display:inline-block;
	float:left;
}

.lefty {
	float:left;
}

.righty {
	float:right;
}

.default {
	cursor:pointer;
}

.sf-menu .default, .sf-menu .default:hover, .sf-menu ul .default {
	background:none !important;
	color:#C6CED2 !important;
}

.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none !important;
}
.sf-menu li {
	list-style:none !important;
	position: relative;
	margin-bottom:0px !important;
}
.sf-menu ul {
	list-style:none;
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99999999;
}
.sf-menu > li {
	float: left;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
	left: 100%;
}

.sf-menu li i {
	padding-right:5px;
}

.sf-menu {
	float: left;
}
.sf-menu ul {
	box-shadow: 0px 0px 1px rgba(0,0,0,.05);
	background:#FFF;
	min-width: 12em; /* allow long menu items to determine submenu width */
	*width: 12em; /* no auto sub width for IE7, see white-space comment below */
}
.sf-menu a {
	padding: .75em 1em;
	text-decoration: none;
	zoom: 1; /* IE7 */
}
.sf-menu a {
	color: #13a;
}
.sf-menu li {
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	-webkit-transition: background .2s;
	transition: background .2s;
}

.sf-menu li:hover,
.sf-menu li.sfHover {
	color:#FFF;
	background: #152126;
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}

#pageslide .extra-row {
	background:rgba(0,0,0,0.1);
}

.close {
	color:#FFF;
	text-align:right;
	font-weight:normal;
	position: relative;
	float:right;
	display: inline-block;
}

.close:hover {
	color:#FFF;
}

.select-menu, .select {
	display: none;
}

.main-header p {
	padding-top:20px;
	width:50%;
	margin:0 auto;
	color:#FFF;
}

.header-nav {
	display:inline-block;
	text-align:center;
	margin:0 auto;
	width:100%;
}

.header-nav-right {
	padding-top:3px;
	display:inline-block;
	float:right;
}

.nav li {
    	padding: 0px 15px;
}

.nav a {
	font-family: 'Noto Sans', sans-serif;
    	color: #9fa5a6;
    	padding: 0px;
    	display: block;
	text-align:left;
    	font-size: 18px;
    	font-weight: 600;
    	line-height: 20px;
    	text-transform: none;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
    	vertical-align:middle;
	
}

.nav a:hover {
    	cursor: pointer;
    	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
	color:#FFF;
}

.nav .current-menu-item > a, .nav a:hover {
	color: #FFF;
}

.nav > li {
    	float: left;
    	padding: 0;
    	margin: 0px;
    	display: inline;
}

.nav, .nav ul {
    	margin: 0 0 0 0;
    	padding: 0;
    	list-style-type: none;
    	list-style-position: outside;
    	position: relative;
}

.nav li {
    	float: left;
	width:100%;
    	position: relative;
	padding-bottom:25px;
}

.nav li:last-child {
	margin-right: 0;
}

.nav ul {
    	position: relative;
    	display: block;
	padding-bottom:0px;
	overflow:hidden;
    	left: 0px;
    	padding-top: 10px;
   	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.nav .sub-menu li:last-child a {
	margin-bottom:0px;
	padding-bottom:0px;
}

.nav .sub-menu {
	margin: 0 0 0 0;
	z-index:1000;
}

.nav li ul { 
	z-index:1000;
}

.nav li ul li { 
	padding: 0 0px 0 10px;
	z-index:1000;
	text-align:left;
}

.nav li ul a, .nav li ul li a {
    	width: 110px;
    	height: auto;
    	float: left;
	font-family: 'Noto Sans', sans-serif;
    	color: #fff;
    	padding: 0px;
    	display: block;
	text-align:left;
    	font-size: 18px;
    	font-weight: 600;
    	padding:10px 0 10px 0;
    	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.nav li ul li:first-child a {
	padding-top:10px;
	border-top: none;
}

.nav li ul a:hover {
    	height: auto;
    	float: left;
    	background: none;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.nav li ul li:last-child {
    	border-bottom: none;
}

.nav li ul li ul {
    	padding: 0;
}

.nav ul ul { 
	top: auto; 
}

.nav li ul ul {
    	left: 150px;
    	margin: 0 0 0 10px;
}

.nav li:hover ul ul, .nav li:hover ul ul ul, .nav li:hover ul ul ul ul { 
	display: none; 
}

.nav li:hover ul, .nav li li:hover ul, .nav li li li:hover ul, .nav li li li li:hover ul { 
	display: block; 
}

/* 6. WRAPPER & MAIN
----------------------------------- */

#wrapper {
    	position: relative;
    	height: 100%;
    	margin: 0 auto;
    	padding-top:0px;
   	padding-bottom:0px;
	background:#FAFAFA;
}

#main-wrap {
    	width: 100%;
    	margin: 0 auto;
}

#wrap {
	width:100%;
	z-index:100;
	display:block;
	position:relative;
}

#content {
    	width: 1300px;
    	margin: 0 auto;
	padding:80px 0;
	background: #fafafa;
}

.content-posts {
	padding-bottom:0px;
	
}

/* 7. POSTS 
----------------------------------- */

.header-post {
	position:relative;
}

.format-quote .header-inner {
	padding:45px 0 0px 0;
}

.sticked {
	position:absolute;
	right:15px;
	top:10px;
	color:#C6CED2;
	font-size: 12px;
	opacity:0.7;
}

.post .more-link, .post .more-linkd {
	letter-spacing:0px;
	line-height:20px;
	cursor: pointer;
	width: auto;
	font-size:12px;
	font-family: 'Montserrat', 'sans serif';
	font-weight: bold;
}

.post .more-link:hover {	
	color:#666;
}

.post {
    	padding: 0px 0 60px 0;
    	margin: 0 0 0px 0;
	margin-bottom:0px;
	position:relative;
}

.post:last-child {
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom:0px;
}

.post li {
	list-style-type: disc;
	margin-bottom: 5px;
}

.post ol li {
	list-style-type:decimal;
}

.post .entry-content-wrap {
	display: inline-block;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow:hidden;
}

.last {
	margin-right:0px;
}

.single .entry-wrap {
	border-bottom:0px;
}

.entry-wrap {
	padding: 0px;
	margin:0 auto;
	width:80%;
	max-width:750px;
	background:#FFF;
	padding-bottom:45px;
	border-bottom:1px solid rgba(0,0,0,0.04);
}

.post:last-child {
	margin-bottom:0px;
}

.page .entry-wrap:last-child {
	margin-bottom:0px;
}

.format-quote .entry-content {
	padding: 40px 0 40px 0;
}

.post .entry-content { 
	position: relative;
	margin: 0 auto;
}

.post .post-content ul, .post .post-content ol {
	margin: 0 0 30px 18px;
	padding-left:0px;
}

.error404 .post .post-content ul li {
	margin: 0 0 0px 0px;
	list-style:none;
}

.error404 .post .post-content ul {
	margin: 0 0 0px 0px;
	list-style:none;
}

.post .post-content ol li {
	list-style-type: decimal;
}

.post .excerpt-more .more-link {
	margin-top: 20px;
}

.entry-content header {
	margin-bottom:0px;	
	text-align:center;
	word-wrap: break-word;
	overflow:auto;
}

.date-title {
	font-family: 'Montserrat', sans-serif;
	color:#86888A;
	font-size: 14px;
	line-height:28px;
	font-weight:normal;
	text-transform: normal;
	text-align: center;
	margin-bottom: 0px;
	margin-top: 0px;
	letter-spacing:0px;
	padding-left:0px;
	padding-right:0px;
	background:none;

}

.date-title span {
	font-family: 'Great Vibes', sans-serif;
	font-size: 18px;

}

.date-title a {
	font-family: 'Montserrat', sans-serif;
	color: #aaa;
}

.date-title a:hover {
	font-family: 'Montserrat', sans-serif;
	color: #666;
}

.archive-title-wrapper {
	width:80%;
	max-width:750px;
	margin: 0px auto;
	padding-bottom:30px;
	margin-bottom:20px;
	
}

.archive-title {
	font-family: 'Montserrat', sans-serif;
	color: #555;
	font-size: 12px;
	text-transform:uppercase;
 	padding: 20px 0;
 	margin: 0px auto;
	width:80%;
	max-width:750px;
 	text-align: left;	
 	letter-spacing: 0px;
}

.entry-title {
	font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #555;
	letter-spacing:3px;
	text-transform: uppercase;
	margin: 0px 0 0px 0;
}

.entry-title a {
    	color: #515e6c;
    	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease; 
}

.entry-title a:hover {
	color:#f44238;
    	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease; 
}

.centered {
	padding-top:10px;
	text-align:left;
	font-size: 12px;
	line-height: 30px;
	color: #C6CED2;
	font-family: 'Montserrat', 'sans serif';
}

.social-share {
	float:right;
	font-size: 12px;
	line-height:30px;
	color: #C6CED2;
	font-family: 'Montserrat', 'sans serif';
}

.social-share a {
	color: #C6CED2;
}

.social-share a:hover {
	color:#FFF;
}

.page .centered {
	display:none;
}

.tags {
	font-size:12px;
	float:left;
	font-family: 'Montserrat', 'sans serif';
}

.tags a {
	color:#C6CED2;
}

.tags a:hover {
	color:#666;
}

.tags a:after {
	content:",";
}

.tags a:last-child:after {
	content:"";
}

.more-link {
	margin-top:20px;
	margin:0 auto;
	text-align:center;
}

#content p { 
	margin: 0 0 30px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
}

#content img {
	max-width: 100%;
	height: auto;
}

#content .meta {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	text-transform:none;
	color: #999;
	margin: 0px 0 40px 0 !important;
	width: 100%;
	display: inline-block;
	margin-left:0px;
	padding-left:0px;
}

#content .meta li {
	display:block;
	text-align:right;
}

#content .meta li.author {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	text-transform:none;
	color: #86888A;
	margin: 10px 0 20px 0 !important;
	width: 100%;
	text-align:left;
	display: inline-block;
	float:left;
}

#content .meta a {
	color: #999;
}

#content .meta a:hover {
	color: #555;
}

#content .meta li {
	list-style-type: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

#content .meta li i {
	margin-right: 8px;
}

#content .pagelink {
	font-weight: bold;
}

/* 8. SIDEBAR & PORTFOLIO
--------------------------------- */


#sidebar { clear: left; }

#sidebar-side {
	width: 20%;
	margin-left: 0;
	padding-left: 2%;
	float: right;
	background: #fff;
	padding-top: 1px;
margin-right: 40px;
height: auto;
display: none;
}


article.post-box[id*="post-"] {
	padding-left: 1.3%;
	padding-right: 1.3%;
}
	
	
}
#sidebar-side .widget {
	margin: 2em 0;
	padding-right: 2em;
	color: #000;
	
}
#sidebar-side .widget a {
	color: #000;
	text-decoration: none;
}
#sidebar-side .widget a:hover {
	color: #f44238;
}
#sidebar-side .widget li,
#meta.widget aside a {
	border-top: 1px solid #5b5b5b;
	margin-bottom: 0;
	padding: 7px 0;
}
#sidebar-side .widget li:last-child {
	border-bottom: 1px solid #5b5b5b;
}
#sidebar-side .widget ul.sub-menu li:last-child,
#sidebar-side .widget ul.children li:last-child {
	border-bottom: 0;
}
#sidebar-side .widget-title {
	font-family: "Fjalla One", "Arial Narrow", Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	color: #f44238;
}

#pageslide .widgettitle {
	margin:0px;
}

.closepageslide {
	position:absolute;
	color:#FFF;
	font-size:12px;
	right:40px;
	line-height:17px;
}

#pageslide {
    	display: none;
    	position: absolute;
    	position: fixed;
    	top: 0;
    	height: 100%;
    	z-index: 999999;
    	width: 100%;
    	background-color: #152126;
    	color: #666666;
}

.table {
	display:table;
	height:100%;
	width:100%;
}

.table-inner {
	display:table-cell;
	vertical-align:middle;
}

#pageslide-inner {
	position:relative;
	margin:0 auto;
	width:100%;
}

#pageslide-inner h3 {
	color:#fff;
	opacity:0.7;
	font-size:12px;
	margin-bottom:40px;
	margin-top:0px;
}

#footer-inside .widget img {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	transition: all 0.2s linear;
	max-width:100%;
}

#footer-inside .widget img:hover {
	opacity:0.8;
}

#pageslide select {
	max-width:100%;
	background:rgba(0,0,0,0.1);
	color: #666666;
	-webkit-appearance:none;
	border:none;
	padding-top:10px;
	padding-bottom:10px;
	padding:10px;
	-webkit-border-radius: 2px; 
	-moz-border-radius: 2px; 
	border-radius: 2px;
}

#footer-inside .widget_meta ul li:before {	
	font-family:"Fontawesome";
	content:"\f105";
	padding-right:5px;
	color:#fff;
}

#footer-inside .widget_links ul li:before {	
	font-family:"Fontawesome";
	content:"\f105";
	padding-right:5px;
	color:#fff;
}

#footer-inside .widget_archive ul li:before {	
	font-family:"Fontawesome";
	content:"\f105";
	padding-right:5px;
	color:#fff;
}

#footer-inside .widget_pages ul li:before {	
	font-family:"Fontawesome";
	content:"\f105";
	padding-right:5px;
	color:#fff;
}

#footer-inside .widget_categories ul li:before {	
	font-family:"Fontawesome";
	content:"\f105";
	padding-right:5px;
	color:#fff;
}

#footer-inside #recentcomments li:before {	
	font-family:"Fontawesome";
	content:"\f0e5";
	padding-right:5px;
	color:#fff;
}

#footer-inside .widget_recent_entries ul li:before {	
	font-family:"Fontawesome";
	content:"\f0f6";
	padding-right:5px;
	color:#fff;
}

#footer-inside .widget input.search-form-input {
	background:rgba(0, 0, 0, 0.3);
	color: #fff;
	-webkit-appearance:none;
	border:none;
	padding-top:10px;
	padding-bottom:10px;
	padding:10px;
	-webkit-border-radius: 2px; 
	-moz-border-radius: 2px; 
	border-radius: 2px;
}

#footer-inside .widget input.submit.search-button {
	display:none;
}

#footer-inside .widget_meta {}

#footer-inside .widget_meta ul {
	list-style:none;
}

#footer-inside .widget_meta ul li {	
	margin-bottom: 8px;
	padding-bottom: 8px;
	padding-left:0px;
	border-bottom: none;
}

#footer-inside .widget_meta ul li a {}

#footer-inside .widget_meta ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

#footer-inside .widget_links {}

#footer-inside .widget_links ul {
	list-style:none;
}

#footer-inside .widget_links ul li {	
	margin-bottom: 8px;
	padding-bottom: 8px;
	padding-left:0px;
	border-bottom: none;
}

#footer-inside .widget_links ul li a {}

#footer-inside .widget_links ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

#footer-inside .widget_twitter ul {
	list-style:none;
}

#footer-inside .widget_twitter ul li {
	background:none;
	padding-left:0px;
}

#footer-inside .widget_archive {}

#footer-inside .widget_archive ul {
	list-style:none;
}

#footer-inside .widget_archive ul li {	
	margin-bottom: 8px;
	padding-bottom: 8px;
	padding-left:0px;
	border-bottom: none;
} 
 
#footer-inside .widget_archive ul li a {}

#footer-inside .widget_archive ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

#footer-inside .widget_archive select {
	appearance:none;
	moz-appearance: none;
	-webkit-appearance: none;
	background:rgba(0,0,0,0.1);
	color:#666666;
	border:none;
	padding:15px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;width:100%;
}

#footer .widget_archive option {}

#footer-inside .widget_pages {}

#footer-inside .widget_pages ul {
	list-style:none;
}

#footer-inside .widget_pages ul .children {
	padding-top:20px;
	padding-bottom:20px;
}

#footer-inside .widget_pages ul li {	
	margin-bottom: 8px;
	padding-bottom: 8px;
	padding-left:0px;
	border-bottom: none;
}

#footer-inside .widget_pages ul li a {}

#footer-inside .widget_pages ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

#footer-inside .widget_links {}

#footer-inside .widget_links li:after {}

#footer-inside .widget_links li:before {}

#footer-inside .widget_tag_cloud {}

#footer-inside .widget_tag_cloud a {}

#footer-inside .widget_tag_cloud a:after {}

#footer-inside .widget_tag_cloud a:before {}

#footer-inside .widget_calendar {}

#pageslide #calendar_wrap {
	width:100%;
	overflow:auto;
}

#wp-calendar {
	max-width:80%;
	position:relative;
}

#pageslide #calendar_wrap th {}

#pageslide #calendar_wrap td {}

#pageslide #wp-calendar tr td {}

#pageslide #wp-calendar caption {
	text-align:left;
}

#pageslide #wp-calendar a {}

#pageslide #wp-calendar #today {}

#pageslide #wp-calendar #prev {}

#pageslide #wp-calendar #next {}

#pageslide #wp-calendar #next a {}

#pageslide #wp-calendar #prev a {}

#footer-inside .widget_categories {}

#footer-inside .widget_categories ul {
	list-style:none;
}

#footer-inside .widget_categories ul li {	
	margin-bottom: 8px;
	padding-bottom: 8px;
	padding-left:0px;
	border-bottom: none;
}
 
#footer-inside .widget_categories ul ul.children {}

#footer-inside .widget_categories ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

#footer-inside .widget_categories a {}

#footer-inside .widget_categories select{}

#footer-inside .widget_categories select#cat {
	appearance:none;
	moz-appearance: none;
	-webkit-appearance: 
	none;
	background:rgba(0,0,0,0.1);
	color:#666666;
	border:none;
	padding:14px 15px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	width:100%;
}

#footer-inside .widget_categories select.postform {}

#footer-inside .widget_categories option {}

#footer-inside .widget_categories .level-0 {}

#footer-inside .widget_categories .level-1 {}

#footer-inside .widget_categories .level-2 {}

#footer-inside .widget_categories .level-3 {}

#pageslide .recentcomments {}

#pageslide #recentcomments {}

#pageslide #recentcomments li {	
	margin-bottom: 8px;
	padding-bottom: 8px;
	padding-left:0px;
	border-bottom: none;
}

#pageslide #recentcomments li a {}

#pageslide #recentcomments ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

#pageslide #recentcomments li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

#footer-inside .widget_recent_comments {}

#footer-inside .widget_recent_entries {}
#footer-inside .widget_recent_entries ul {
	list-style:none;
}

#footer-inside .widget_recent_entries ul li {	
	margin-bottom: 8px;
	padding-bottom: 8px;
	padding-left:0px;
	border-bottom:none;
}

#footer-inside .widget_recent_entries ul li a {}
#footer-inside .widget_recent_entries ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

#pageslide .textwidget {
	font-weight: normal;
	text-align: left;
	color: #666666;
	text-transform: none;
	font-size: 14px;
}

#footer-inside .widget_text {
	font-weight: normal;
	text-align: left;
	color: #666;
	text-transform: none;
	font-size: 14px;
}

#pageslide .textwidget p {
	font-weight: normal;
	text-align: left;
	color: #666666;
	text-transform: none;
	font-size: 14px;
}

#pageslide input, textarea, select {
    	background:rgba(0, 0, 0, 0.3);
	color: #666666;
	-webkit-appearance: none;
	border: none;
	padding-top: 10px;
	padding-bottom: 10px;
	padding: 10px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}


#pageslide ul {
	list-style:none;
	padding-left:0px;
}

.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property:    -moz-transform, opacity;
    transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    transition-duration: 0s;
}

#portfolio-filter {
	float:left;
	padding:0px 0;
	text-align:center;
}

#portfolio-filter-wrapper {
	padding-bottom:30px;	
}

#portfolio-wrapper img {
	vertical-align: bottom;
}

#portfolio-wrapper img {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin-top: 0px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
	vertical-align: bottom;
}

#portfolio-wrapper img:hover {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
	opacity:0.8;
}

#portfolio-list {
	margin:0;
	padding:0;
	-webkit-margin-after: 0em;
}

#portfolio-filter {
	list-style-type: none;
	background:none;
	float:right;
	line-height:24px;
	text-align:right;
	margin:0 auto;
}

#portfolio-filter li {
	display: inline;
	padding-left: 25px;
	padding-right:0px;
}

#portfolio-filter li a {
	font-family: 'Noto Sans', sans-serif;
	color: #666;
	padding: 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 20px;
	text-transform: none;
	text-decoration: none;
}

#portfolio-filter li a.selected {
	color:#fff;
}

#portfolio-filter li a:hover {
	color: #FFF;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease; 
}

#portfolio-filter li .current,
#portfolio-filter li:hover {
	color: #595959;
}

#portfolio-wrapper {
	margin-bottom: 0px;
	overflow:hidden;
	background:none;
	margin: 0 auto;
	width: 80%;
	max-width: 750px;
}

#portfolio-list {
	text-align:center;
	list-style-type: none;
	padding:0px;
	background:#FFF;
	width:100%;
	margin: 0px auto;
}

.single-project #load {
	display:none;
}

.portfolio-item .featured-image {
	display: inline-block;
	max-width: 100%;
	width: 100%;
	margin-bottom: 0px;
	background: #000;
	position: relative;
	overflow:hidden;
}

.portfolio-item a .overlay {
	width: 100%;
	height: 100%;
	background: #000;
	text-align:center;
	position: absolute;
	top: 0;
	left: 0;
	opacity:0;
	cursor: pointer;
}

.portfolio-item a .overlay-text {
	color:#FFF;
	width:80%;
	text-align:center;
	padding:5px 10%;
	word-wrap:break-word;
	font-size: 12px;
	font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: absolute;
	top: 50%;
	margin-top:-33px;
	left: 0;
	cursor: pointer;
}

.portfolio-item a .cat {
	color:#999;
	font-weight:normal;
	text-transform:none;
	width:100%;
	display:block;
}

.portfolio-item a .title {
	padding-bottom:20px;
	width:100%;
	font-size: 22px;
	display:block;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.portfolio-item:hover a .title {
	padding-bottom:0px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.one-column {
	width: 100% !important;
	max-width:800px !important;
	margin:0px;
	margin-right:0% !important;
	margin-bottom:3% !important;
	padding:0px;
	vertical-align: bottom;
	overflow:hidden;
}

.two-column {
	width: 48% !important;
	max-width:300px !important;
	margin:0px;
	margin-right:4% !important;
	margin-bottom:3% !important;
	padding:0px;
	vertical-align: bottom;
	overflow:hidden;
}

#portfolio-list .columned {
	width:100% !important;
	max-height:250px;
}

#open-filter {
	vertical-align:middle;
	paddding-right:5px;
}

.filter-area {
	background:#2a2f35;
	display:none;
}

.filter-area-bg {
	padding:40px 0;
	background: rgba(0,0,0,0.1);
	background: url(images/1bg.png);
}

.filter-area-inner {
	width:80%;
	max-width:750px;
	margin:0 auto;
}

#portfolio-list .portfolio-item {
	margin:0px auto;
	float:left;
	display:inline-block;
	margin-bottom:0px;
	padding:0px;
	vertical-align: bottom;
	overflow:hidden;
}

#portfolio-list .portfolio-item h3 a {
	color: #084a9a;
	text-transform: uppercase;
	font-weight: bold;
}

#portfolio-list .portfolio-item .excerpt
{
	text-align: justify;
	font-size: 14px;
	line-height: 18px;
	padding-right: 15px;
	margin-bottom: 5px;
}

#portfolio-list .portfolio-item .excerpt a {
	color: #555;
}

#portfolio-list .portfolio-item .excerpt a:hover {
	text-decoration: none;
}


/* 9. POST FORMATS
--------------------------------------- */

/* chat */

.chat-row { 
	margin-bottom:30px;
}


.chat-text p { 
	padding:0px;
}

.chat-text {
	padding:5px 10px;
	background:#F7F7F7;
}

.chat-text p {
	margin-bottom:0px !important;
}

/* image */

.post .featured-image {
	display: inline-block;
	max-width: 100%;
	width: 100%;
	position:relative;
	overflow:hidden;
}


.feature_post_redone{
   
    margin: 0 auto;
    overflow:hidden;
    position: relative;
    height: 500px;
margin-bottom: 30px;
}
.post .featured-image img {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin-top: 0px;
	float: left;
	display: inline-block;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.post .featured-image img {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	transition: all 0.2s linear;
	filter: none;
}

.post .featured-image:hover img {
	opacity:0.8;
	
}

.featured-image img {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.featured-image:hover img {

}


/* gallery */

.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
	outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
} 

/* FlexSlider Necessary Styles */ 
.flexslider {
	margin: 0;
	padding: 0;
}

.flexslider .slides > li {
	display: none;
	list-style:none !important;
	-webkit-backface-visibility: hidden;

} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
	width: 100%;
	display: block;
	position:relative;
	z-index:999;
}

.flex-pauseplay span {
	text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

html[xmlns] .slides {
	display: block;
}

* html .slides {
	height: 1%;
}

/* No JavaScript Fallback */
.no-js .slides > li:first-child {
	display: block;
}

/*main*/
.flexslider-container {
	position: relative;	
	z-index:999;
}

.flexslider {
	zoom: 1;
	position: relative;
}

.flexslider ul {
	margin: 0 !important;
	list-style:none !important;
}

.flex-viewport {
	max-height: 2000px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

/*main*/
.flexslider-container {
	position: relative;	
	z-index:999;
}

.flexslider {
	zoom: 1;
	position: relative;
}

.flexslider ul {
	margin: 0 !important;
	list-style:none !important;
}

.flex-viewport {
	max-height: 2000px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.flex-direction-nav li {list-style:none;}


.flexslider .flex-control-nav {margin: 0px !important; padding:0px; padding-top:10px;padding-bottom:10px; position: absolute; bottom: 20px; padding-right:0px;left: 75px; text-align: left;}
.flexslider .flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.flexslider .flex-control-paging li a {width: 10px; height: 10px; display: block; background: transparent; background: rgba(255,255,255,0.3) !important; cursor: pointer; cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px;}
.flexslider .flex-control-paging li a:hover { background: rgba(255,255,255,0.7) !important; }
.flexslider .flex-control-paging li a.flex-active { background: rgba(255,255,255,0.7) !important; }

.content-posts {
	padding-bottom:0px;
	width: 100%;
}

/* 10. POST NAVIGATION
--------------------------------------- */

.next-prev-mobile {
	display: none;
}

.navigation-posts {
	width:80%;
	max-width:750px;
	margin:0 auto;
	position:relative;	
	height:50px;
	margin-bottom:20px;
}

.prevnav {
	float:left;
}

.nextnav {
	float:right;
}

.nextnav a, .prevnav a {
	padding: 5px;
	color: #666;
	font-size: 12px;
	font-family: 'Montserrat', sans-serif;
}

.nextnav a {
	position: relative;
	z-index: 20;
	text-align:right;
	margin-right: 0px;
	padding-right:0px;
}

.prevnav a {
	position: relative;
	z-index: 20;
	text-align:left;
	margin-left: 0px;
	padding-left:0px;
}

/* 11. COMMENTS
--------------------------------------- */

.comments-wrap .accent {
	border-bottom:1px solid #fe544a; 
	width:50px; 
	height:1px;
	margin-bottom:80px;
	margin-top:-2px;
}

.comments-wrap .accent2 {
	border-bottom:1px solid #fe544a; 
	width:50px; 
	height:1px;
	margin-bottom:70px;
	margin-top:-2px;
}

#comments {
	background:none;
}

.comments {
	width: 100%;
	padding-top:0px;
}

.comments-inner {
	background:#FFF;
}

.comments-wrap {
	margin-top:60px;
	width: 80%;	
	background:#FFF;
	max-width:750px;
	margin: 0 auto;
	padding-bottom:45px;
}

#comments-title {
	font-family: 'Montserrat', sans-serif;
	background: #f1f1f1;
 	padding: 60px 0;
 	margin: 0 0 0 0;
 	text-align: center;
 	 -webkit-transition: .07s ease-in;  
	-moz-transition: .07s ease-in;  
	-o-transition: .07s ease-in;  
	transition: .07s ease-in;
}

#comments-title:hover {
	background: #ebebeb;
	cursor: pointer;
	 -webkit-transition: .07s ease-in;  
	-moz-transition: .07s ease-in;  
	-o-transition: .07s ease-in;  
	transition: .07s ease-in; 
}

.comments-open {
	border-bottom: solid 1px #e7e7e7; 
	margin-bottom: 60px !important;
}

#respond {
    	padding: 45px 0 0px 0;
	width:80%;
	margin: 0 auto;
}

.comment #respond { 
	margin-top: 0px;
	padding-bottom: 10px;
}

#respond h3 {
	font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #555;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 0px 0 0px 0;
	text-align:center;
}

.commentlist #respond h3 {
	margin-top: 15px;
}

#respond label {
	text-transform: uppercase;
    	font-size: 11px;
    	font-weight: bold;
    	margin: 5px 0 0 15px;
    	color: #aaa;
    	position: absolute;
    	left: -999px;
}

#respond p {
	position: relative;
	text-align:center;
}

#respond .required {
	color: #E75353;
	display: none;
}

#respond p { 
	margin-top:0px !important;
	margin-bottom: 40px; 
}

.form-submit { 
	text-align:left;
	margin-bottom:0px !important;
}

#commentform  {
	width: 100%;
}

#respond input[type="text"], #respond textarea {
  	color: #666;
    	border: none;
    	background: #F7F7F7;
    	font: 13px/22px 'Montserrat', sans serif;
    	width: 100%;
    	padding: 10px;
    	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance:none;
}

#respond .comment-form-comment {
	width: 100%;
	display: inline-block;
}

#respond input:focus, #respond textarea:focus {
    	outline: none;
}

#respond textarea {
    	line-height: 22px;
    	width: 100%;
    	-webkit-box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	box-sizing: border-box;
}

#commentform #submit {
	background:none;
	color: #C6CED2;
	background:none;
	border: none;
	padding:0px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	line-height:20px;
	text-align: center;
	font-size: 12px;
	font-family: "Montserrat", sans serif;
	cursor:pointer;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

#commentform #submit:hover {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
	color:#666;
}

.form-allowed-tags {
	display:none;
}

.commentlist {
	padding-top:45px;
	border-top:1px solid rgba(0,0,0,0.02);
	border-bottom:1px solid rgba(0,0,0,0.02);
	width:80%;
	margin:0 auto;
	list-style-type: none !important;
	list-style:none;
}

.commentlist li {
	position: relative;
   	padding: 0 0 0px 0;
    	margin: 0 0 0px 0;
    	position: relative;
    	list-style:none;
}

.commentlist li:last-child {
	position: relative;
    	padding: 0 0 0px 0;
    	margin: 0 0 0px 0;
    	position: relative;
	max-width:100%;
    	list-style:none;
}

.children li { 
	padding-left: 20px !important;
}

.children li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.comment-block {
    	padding: 0;
	padding-bottom:45px;
	display:block;
}

.comment-text {
	position: relative;
}

.comment-text p {
	margin-bottom: 20px !important;
}

.comment-text blockquote {
	background: #eee;
	color: #555;
	padding-bottom: 7px;
}

.comment-text blockquote:after {
	display: none;
}

.comment-text blockquote p { 
	padding-left: 0;
}

.reply a {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	text-transform: none;
	font-size: 12px;
	color: #aaa;
	padding: 5px 0px;
	-webkit-border-radius: 2px; 
	-moz-border-radius: 2px; 
	border-radius: 2px;
	-webkit-transition: .1s ease-in;  
	-moz-transition: .1s ease-in;  
	-o-transition: .1s ease-in;  
	transition: .1s ease-in;
}

.reply a:hover {
	color:#666;
	-webkit-transition: .1s ease-in;  
	-moz-transition: .1s ease-in;  
	-o-transition: .1s ease-in;  
	transition: .1s ease-in; 
}

.comments .children .reply { 
	text-align: left;
}

#cancel-comment-reply-link {
	position: relative;
	color: #999;
    	margin: 0 0 0 0;
    	font-size: 9px;
    	text-transform: uppercase;
    	font-weight: bold;
    	display: inline-block;
    	-webkit-transition: .1s ease-in;  
	-moz-transition: .1s ease-in;  
	-o-transition: .1s ease-in;  
	transition: .1s ease-in; 
}

#cancel-comment-reply-link:hover {
	color: #555;
	-webkit-transition: .1s ease-in;  
	-moz-transition: .1s ease-in;  
	-o-transition: .1s ease-in;  
	transition: .1s ease-in; 
}

#cancel-comment-reply-link i {
	font-size: 18px;
	color: #5bad8a;
}

#cancel-comment-reply-link i:hover {
	color: #555;
	cursor: pointer;
}

.comments .logged-in-as {
	text-transform: none;
	text-align: center;
	margin-top: 10px !important;
	font-size: 12px;
	color: #C6CED2;
	font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
}

.comments .logged-in-as a {
	color: #C6CED2;
}

.comments .logged-in-as a:hover {
	color: #666;
}

.comment-notes {
	width:100%;
	text-transform:none;
	font-size:12px;
	color:#C6CED2;
	font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight:400;
}

.comment-notes .required {
	position: relative !important;
	top: auto !important;
	right: auto !important;
}

.comment-awaiting-moderation {
    	color: #555;
    	font-weight: bold;
    	font-size: 11px;
}

.vcard {
    	float: left;
}

.vcard img {
    	float: left;
	height: 45px;
	width: 45px;
}

.comment-meta .fn {
	line-height:28px;
	font-size:16px;
}

.fn {
    	float: left;
    	font-style: normal;
    	font-size: 15px;
    	font-weight: 500;
    	margin-top: 0;
}

.fn a { 
	color: #555;
}

.fn a:hover {
	background: none;
	color: #777;
}

.comment-info {
	margin-bottom: 20px;
	position: relative;
}

.comment-meta {
    	float: left;
    	margin: 0 0 0 12px;
    	line-height: 11px;
}

.comment-time {
	text-transform: none;
    	font-size: 10px;
    	color: #bbb;
	font-weight:bold;
    	display: inline-block;
    	margin-top: 4px;
}

.comment-time:hover {
	color: #999;
}

.comment-edit-link {
	font-size: 11px;
}

#comment-nav-below {
	display: inline-block;
	width: 100%;
	padding: 10px 10px 20px 10px;
	margin: -44px 0 20px 0;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: solid 1px #e7e7e7;
}

#comment-nav-below .nav-previous {
	float: left;
}

#comment-nav-below .nav-next {
	float: right;
}

/* 12. FOOTER
---------------------------------------- */

#footer-bottom-inside .socials a:hover {
	color:#FFF;
}

#footer {
	margin-top:0px;
	width: 100%;
	background: #121314;
	display:block;	
	text-align:left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#footer-inside {
	margin:0 auto;
	width: 80%;
	max-width:750px;
	background: none;
	display:block;	
	padding:40px 0px;
	text-align:left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#footer-inside ul {
	list-style:none;
	padding-left:0px;
}

.bottoms {
	margin-bottom:30px;
	font-size:30px;
}

#footer-bottom {
	width: 100%;
	position:relative;
	display:block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
}

#footer-bottom-inside a:hover {
	color:#FFF;
}

#footer-spacer {
	background-color: rgba(0, 0, 0, 0) !important;
	display: block;
	min-height: 200px;
}

#main {
	-webkit-transform: translate3d(0,0,0);
}

#footer-bottom-wrapper {
	position:relative;
	z-index:98;
	display:block;
	-webkit-transform: translate3d(0,0,0);
}

#footer-top {
	background: rgba(0,0,0,0.1);
	background: url(images/1bg.png);
	z-index:1;
	position:fixed;
	color:#666;
	left:0;
	bottom:0;
	-webkit-transform-style: preserve-3d;
	width:100%;
}

#footer-inside {
	width:80%;
	max-width:750px;
	margin:0 auto;
	padding:70px 0;	
	font-size:14px;
	position:relative;
}

#footer-bottom-inside {
	padding:40px 0;
	color: #666;
	font-family:'Montserrat', sans serif;
	font-weight:300;
	margin:0 auto;
	line-height: 22px;
	width: 80%;	
	max-width:750px;
        font-size: 15px;
	overflow:auto;
	z-index:999;
	position:relative;
}


a.totop {
	font-size:12px;
	color:#FFF;
	float:right;
}

a.totop:hover {
	color:#ccc;
}

#footer-bottom-inside a.totop:hover{
	color:#FFF;
}

.navtoggle {
	margin-bottom:40px;
}

#hidden-footer {
	padding: 30px 0;
	position: relative;
	width: 100%;
	font-size: 14px;
	z-index: 1;
}

.hidden-footer-inner {
	width:80%;
	max-width:750px;
	margin:0 auto;
	text-align:center;
}

#footer-inside .widget {
	width: 30%;
	text-align:left;
	margin-right:5%;
	float:left;
	display:inline-block;
	font-size: 14px;
	padding-bottom:0px;
	margin-bottom:0px;
}

#footer-inside .widget a, #footer-inside .widget li a {
	color:#666;
}

#footer-inside .widget a:hover, #footer-inside .widget li a:hover {
	color:#FFF;
}


#footer-inside .widget_recent_entries {
}

#footer-inside .widget ul li {
	padding-bottom:10px;
}

#footer-inside .widget:last-child {
	margin-right: 0;
	padding-right:0;
	border-bottom:0px;
}

#footer-inside .widget:first-child {
	margin-left: 0;
	padding-left:0;
}

#footer-inside .widgettitle {
	text-align: left;
	display: block;
	font-family: 'Montserrat', sans-serif;	
	color: #fff;
	font-weight:700;
	margin-bottom:15px;
	font-size: 12px;
	text-transform:uppercase;
	line-height: 24px;
	margin-top:0px;
	letter-spacing: 3px;
}

.filter-area .widgettitle {
	text-align: left;
	display: block;
	font-family: 'Montserrat', sans-serif;	
	color: #fff;
	float:left;
	font-weight:700;
	margin-bottom:0px;
	font-size: 12px;
	text-transform:uppercase;
	line-height: 24px;
	margin-top:0px;
	letter-spacing: 3px;
}

#footer-bottom-inside .widget {
	width:30%;
	margin-right:5%;
	display:block;
	float:left;
}

#footer-bottom-inside .widget img {
	float:left;
	padding-right:15px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

/* 13. STANDARD WORDPRESS
--------------------------------------- */

input[type="password"] {
	color: #777;
    	border: none;
    	background: #EEE;
    	font: 13px/22px 'Montserrat', sans serif;
    	width: 100%;
    	padding: 10px;
    	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance:none;
}

sup{
	font-size:xx-small; 
	vertical-align:top;
} 

sub{
	font-size:xx-small; 
	vertical-align:bottom;
} 

tbody {
	background: rgba(0,0,0,0.1);
}

tr {
}

th {
	padding:0px;
}

td {
	padding:3px;
	padding-right:10px;
}

.search-form {
	position: relative;
}

.bypostauthor { }

.archive .gallery-wrap, .search .gallery-wrap {
	display: none;
}
.gallery-wrap {
	margin-bottom: 25px;
}

.sticky {
}

.wp-caption {
	color: #999;
    	max-width: 100%; /* Image does not overflow the content area */
    	text-align: center;
    	text-transform: uppercase;
	overflow:hidden;
}

.wp-caption.alignnone { 
	margin: 5px 20px 20px 0; 
}

.wp-caption.alignleft { 
	margin: 5px 40px 10px 0; 
}

.wp-caption.alignright { 
	margin: 5px 0 10px 40px; 
}

img.alignleft, img.alignright {
	padding: 5px;
}

img.alignleft {
	margin: 5px 40px 10px 0;
}

img.alignright {
	margin: 5px 0 10px 40px;
}

.wp-caption img {
    	border: 0 none;
    	height: auto;
    	margin: 0;
    	max-width: 98.5%;
    	padding: 0;
    	width: auto;
}

.wp-caption img {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	transition: all 0.2s linear;
	overflow:hidden;
}

.wp-caption:hover img {
	-webkit-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
}

.wp-caption p.wp-caption-text {
	position:relative;
    	font-size: 10px !important;
    	margin: 0 !important;
   	padding: 3px 0 0 0!important;
	z-index:999;	
}


.even .wp-caption p.wp-caption-text {
	position:relative;
    	font-size: 10px !important;
    	margin: 0 !important;
   	padding: 3px 0 0 0!important;
	z-index:999;	
	background:#FFF;
}


.odd .wp-caption p.wp-caption-text {
	position:relative;
    	font-size: 10px !important;
    	margin: 0 !important;
   	padding: 3px 0 0 0!important;
	z-index:999;	
	background:rgb(244, 244, 246);
}


#widget {
	width:100%;
}

.gallery {
	margin-bottom: 30px !important;
	text-align: center;
}

.gallery-caption { 
	text-align: center; 
}

.gallery-item {
	display: inline-block !important;
	float:left !important;
    	margin-right: 2px;
    	margin-bottom: 2px;
	width:33% !important;
}

.gallery-icon { 
}

.gallery-item img {
    	height: auto;
    	padding: 5px;
    	border: solid 1px #e6e6e6 !important;
}

.widgetContainer {
	position: absolute;
	max-width: 720px;
	min-width: 288px;
	height: 100%;
}

.gallery dl {}
.gallery dt {}
.gallery dd {}
.gallery dl a {}
.gallery dl img {}
.gallery-caption {}

.size-full {}
.size-large {}
.size-medium {}
.size-thumbnail {}

.wp-smiley {
	margin: 0 !important;
	max-height: 1em;
}

blockquote.left {
	margin-right: 20px;
	text-align: right;
	margin-left: 0;
	width: 33%;
	float: left;
}

blockquote.right {
	margin-left: 20px;
	text-align: left;
	margin-right: 0;
	width: 33%;
	float: right;
}

 li.categories {}  
 li.cat-item {}
 li.cat-item-{id} {}
 li.current-cat {}
 li.current-cat-parent {}
 ul.children {}

.linkcat {}
.blogroll {}


/* 14. CONTACT FORM 7
------------------------------------- */

.wpcf7 p {
	font-size: 13px;
	font-weight: 300;
	font-family:'Montserrat', sans serif;
}

.wpcf7 input[type="text"], .wpcf7 textarea {
    	color: #777;
    	border: none;
	background:#F7F7F7;
    	font: 13px/22px 'Montserrat', sans serif;
    	width: 100%;
    	padding: 10px;
    	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.wpcf7-text {
	color: #777;
	border: none;
	background:#F7F7F7;
	font: 13px/22px 'Montserrat', sans serif;
	width: 100%;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.wpcf7-submit {
	font-size: 12px;
	color: #C6CED2;
	font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	border:none;
	background: none;
	-webkit-transition: .1s ease-in;
	-moz-transition: .1s ease-in;
	-o-transition: .1s ease-in;
	transition: .1s ease-in;
	-webkit-appearance: none;
}

.wpcf7-submit:hover {	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background:none;
	cursor:pointer;
	color:#666;
}


div.wpcf7-validation-errors {
	background-color: #ffcccc;
	color: #c31b00;
	padding:30px;
	border:none;
}

div.wpcf7-mail-sent-ok {
	border:none;
	padding:30px;
	background-color: #d1f7b6;
	color: #5e9537;
}


/* 15. FOOTER BOTTOM SECTION
--------------------------------------- */

.main-footer {
	background:#2a2f35;
}

#load {
	text-align:center;
	margin-top:0px;
	margin-bottom:0px !important;
	width:100%;	
}

.inside {
	margin:0 auto;
	text-align:center;
	width:80%;
	max-width:750px;
	padding:35px 0 0 0;
}

.post-nav-left, .post-nav-left-inactive {
	text-align:right;
	line-height:24px;
	display:inline-block;
	float:right;
}

.post-nav-right, .post-nav-right-inactive {
	text-align:right;
	overflow:hidden;
	margin-left:10px;
	line-height:24px;
	display:inline-block;
	float:right;
}

.post-nav-right a, .post-nav-left a {
	color: #FFF;
}

.inside a:hover {
	color: #666;
	font-size: 12px;
	font-family: "Montserrat", sans serif;
}


/* 16. CUSTOM ARCHIVE
---------------------------------- */

#archive {
	display: inline-block;
	width: 100%;
	padding-top: 40px;
	font-size: 14px;
	line-height: 20px;
	text-align: left;
}

#archive ul, #archive ul li {
	list-style:none;
}


/* 17. MEDIA QUERIES
-------------------------------- */

/* Tablet and Mobile */

@media only screen and (max-width:1280px) {
	#content{
		width: 100%;
	}

}
@media only screen and (max-width:755px) {
.feature_post_redone {height: auto;}
}

@media only screen and (max-width:755px) {

#sidebar-side {
display: none;
width: 0;
height: 0;}
.content-posts {
	width: 100%;
}


.filter-area .widgettitle {
	float:none;
	text-align:left;
}

#portfolio-filter {
	text-align:left;
	float:left;
	margin-top:20px;
}

#portfolio-filter li {
	display: block;
	padding-left: 0px;
	padding-right: 0px;
}

.flexslider .flex-control-nav {display:none !important;}

#portfolio-list .columned {
	width:100% !important;
}

#pageslide {
	overflow-y:scroll;
}

#footer-spacer {
	display: none;
}

#footer-top {
	position:relative;
}

.one, .one-last {
	width: 80%;
	margin-right: 0%;
	display: block;
	float: left;
}

.one-last {
	margin-top:30px;
}

.sf-menu ul {
	right: 0 !important;
}

.entry-title {
	font-size:18px;
}

.entry-wrap {
	width:80%;
}

.commentlist, #respond {
	width:95%;
}

#content {
	padding:40px 0;
}

.logo-text {
    	font-size: 16px;
}

#footer-inside .widget {
	width: 100%;
	margin-right: 0%;
	margin-bottom: 30px;
}

}
 
/* Mobile (Landscape) */
@media only screen and (min-width: 480px) and (max-width: 767px) {



.flexslider .flex-control-nav {display:none !important;}

#pageslide {
	overflow-y:scroll;
}

#portfolio-list .columned {
	width:100% !important;
}

#footer-spacer {
	display: none;
}

#footer-top {
	position:relative;
}

.one, .one-last {
	width: 80%;
	margin-right: 0%;
	display: block;
	float: left;
}

.one-last {
	margin-top:30px;
}

.sf-menu ul {
	right: 0 !important;
}

.entry-wrap {
	width:80%;
}

#footer-inside .widget {
	width: 100%;
	margin-right: 0%;
	margin-bottom: 30px;
}

#footer-bottom p {
	width:80%;
}

#content {
	padding:40px 0;
}
 
}
 
/* Tablet Portrait */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
	
.entry-wrap {
	width:80%;
}

#portfolio-list .columned {
	width:50% !important;
}

#pageslide {
	overflow:hidden;
}

#footer-spacer {
	display: block;
}

.one {
	width:100%;
	margin-right:0%;
	display:block;
	float:left;
}

#footer-top {
	position:fixed;
}

.one-last {
	width:100%;
	display:block;
	float:left;
	margin-top:30px;
}

#footer-inside .widget {
	width: 100%;
	margin-right: 0%;
	margin-bottom: 30px;
}

}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) {

#footer-inside .widget {
	width: 30%;
	text-align: left;
	margin-right: 5%;
	float: left;
	display: inline-block;
	font-size: 14px;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.one {
	width:35%;
	margin-right:30%;
	display:inline-block;
	float:left;
}

.one-last {
	margin-top:0px;
}

#footer-top {
	position:fixed;
}

#portfolio-list .columned {
	width:33.333% !important;
}

.one-last {
	width:35%;
	display:inline-block;
	float:left;
}

}