/*
* Dew Templates (Personal Portofolio)
* Created by : vavelo
* Version : 1.1
*/

/* INDEX OF CONTENTS CSS
=================================================
  XX. GOOGLE FONTS & FONTS FAMILY
  01. TYPOGRAPHY
  02. GENERAL
  03. PRELOADER
  04. NAVIGATION
  05. HOME
  06. ABOUT
  07. SKILLS
  08. PORTFOLIO
  09. SERVICES
  10. HIRE
  11. TESTIMONIALS
  12. BLOG
  13. CONTACT
  14. BLOG POST
  15. POST
*/

/* XX. GOOGLE FONTS & FONTS FAMILY
=================================================*/

/*
font-family: 'Hind', sans-serif;
font-family: 'Lato', sans-serif;
*/

/* 01. TYPOGRAPHY
=================================================*/

h1,
h2 {
	font-family: 'Hind', sans-serif;
	margin: 0;
	padding: 0;
}

.dark-theme h3,
.dark-theme h4,
.dark-theme h5,
.dark-theme h6,
.dark-theme p,
.dark-theme a {
	color: rgba(255, 255, 255, 0.71);
}

h3,
h4,
h5,
h6,
p,
a {
	font-family: 'Lato', sans-serif;
	margin: 0;
	padding: 0;
}

.dark-theme h2, .dark-theme h4, .dark-theme p {
	color: rgba(255, 255, 255, 0.71);
}
h2 {
	font-size: 2.7em;
	margin-bottom: 20px;
	color: #131313;
}

h4 {
	font-weight: 600;
	margin-bottom: 15px;
	color: #131313;
}

p {
	color: #181a1b;
	font-size: 16px;
}

.row .no-float {
	display: table-cell;
	float: none;
}

/* 02. GENERAL
=================================================*/

body {
	font-family: 'Lato', sans-serif;
	line-height: 26px;
	margin: 0;
	padding: 0;
}

.dark-theme body {
	background-color: #131313;
}

.btn {
	padding: 8px 25px;
	text-transform: capitalize;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
	margin-right: 4px;
	margin-bottom: 4px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	font-size: 16px;
}

.btn:hover,
.btn:active,
.btn:focus {
	box-shadow: none !important;
	outline: none !important;
}

.btn-lg {
	padding: 20px 50px;
	font-size: 18px;
}

.btn-light {
	background: #48b14d;
	color: #fff;
	border: none;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
	background: #616161 !important;
	color: #fff;
	visibility: visible;
	opacity: 1;
}

.btn-dark {
	background: #1e1e1e;
	color: #fff;
	border: none;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
	background: #48b14d !important;
	visibility: visible;
	color: #fff;
}

.btn.with-arrow {
	position: relative;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.btn.with-arrow:hover {
	padding-right: 50px;
}

.btn.with-arrow i {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	right: 0px;
	top: 50%;
	margin-top: -8px;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.btn.with-arrow:hover i {
	color: #fff;
	right: 18px;
	visibility: visible;
	opacity: 1;
}

/* 03. PRELOADER
=================================================*/

#preloader {
	position: fixed;
	background: #131313;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;
	z-index: 10000;
}

#status {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity .5s ease-in-out;
}

.loader-revolve {
	height: 32px;
	width: 32px;
}

.loader-revolve::after {
	position: absolute;
	display: block;
	background: #fff;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 12px;
	height: 12px;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	border-radius: 50%;
	-webkit-animation: loader-revolve-1 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	animation: loader-revolve-1 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}

@-webkit-keyframes loader-revolve-1 {
	0% {
		-webkit-transform: scale(0);
		opacity: 0;
	}
	50% {
		-webkit-transform: scale(1);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(0);
		opacity: 0;
	}
}

@keyframes loader-revolve-1 {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(0);
		opacity: 0;
	}
}

.loader-revolve span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	height: 32px;
	width: 32px;
	-webkit-animation: loader-revolve-2 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	animation: loader-revolve-2 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}

@-webkit-keyframes loader-revolve-2 {
	0% {
		-webkit-transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes loader-revolve-2 {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.loader-revolve span::before,
.loader-revolve span::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	height: 12px;
	width: 12px;
	background: #fff;
	border-radius: 50%;
	-webkit-animation: loader-revolve-3 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	animation: loader-revolve-3 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}

@-webkit-keyframes loader-revolve-3 {
	0% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		-webkit-transform: translate3d(-16px, 0, 0) scale(.5);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes loader-revolve-3 {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(-16px, 0, 0) scale(.5);
	}
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
}

.loader-revolve span::after {
	-webkit-animation: loader-revolve-4 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	animation: loader-revolve-4 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}

@-webkit-keyframes loader-revolve-4 {
	0% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		-webkit-transform: translate3d(16px, 0, 0) scale(.5);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes loader-revolve-4 {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(16px, 0, 0) scale(.5);
	}
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
}

/* 04. NAVIGATION
=================================================*/

#navigation {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.logo {
	padding-top: 28px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.logo a {
	color: #fff;
	font-size: 1em;
	font-weight: 600;
	letter-spacing: 2px;
	display: block;
	text-decoration: none;
	text-transform: uppercase;
}

.navigation-menu .navbar-nav li a {
	color: rgba(255, 255, 255, 0.71);
	font-size: 0.9em;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 18.15px;
	padding: 30px 13px;
	-webkit-transition: .3s;
	transition: .3s;
}

.navigation-menu .navbar-nav .active {
	color: #fff;
}

.navigation-menu .navbar-nav li a:hover {
	color: #fff;
	background: none;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.nav li a:focus,
.nav li a:hover {
	color: rgba(255, 255, 255, 0.8);
	background: none;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.navbar {
	margin: 0;
}

.nav-bg {
	background: #ffffff;
	border-bottom: 1px solid #f0f0f0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.dark-theme .nav-bg {
	background: #1b1e24f0 !important ;
	border-bottom: 1px solid #3a3232;
}

.nav-bg .logo {
	padding-top: 18px; 
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.nav-bg .logo a {
	color: #131313;
}

.nav-bg .navigation-menu .navbar-nav li a {
	color: #131313;
	padding: 20px 13px;
    -webkit-transition: .3s;
    transition: .3s;
}

.dark-theme .nav-bg .logo a {
	color: #FFF;
}

.dark-theme .nav-bg .navigation-menu .navbar-nav li a {
	color: #fff;
}

.nav-bg .navigation-menu .navbar-nav li a:hover {
	color: #48b14d;
}

.nav-bg .navbar-nav>.active>a,
.nav-bg .navbar-nav>.active>a:hover,
.nav-bg .navbar-nav>.active>a:focus {
	color: #48b14d !important;
	background-color: transparent;
}

.dark-theme .navbar-toggle {
	color: #fff;
}

/* 05. HOME
=================================================*/

#home {
	height: 100vh;
}

.home-bg {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	z-index: 1;
	background-repeat: no-repeat;
}

.overlay:after {
	position: absolute;
	background: rgba(0, 0, 0, 0.4);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	content: "";
	z-index: 1;
}

.home-text {
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	z-index: 100;
}

.profile-pic img {
	width: 170px;
	height: 170px;
	border-radius: 50%;
	border: 3px solid #fff;
	margin: 0 auto;
}

.home-text h1 {
	color: #fff;
	font-size: 4em;
	line-height: 80px;
	margin-top: 30px;
}

.home-text h3 {
	color: rgba(255, 255, 255, 0.66);
	letter-spacing: 2px;
}

.arrow {
	color: #fff;
	font-size: 3em;
	white-space: nowrap;
	position: absolute;
	right: 0;
	bottom: 50px;
	left: 0;
	margin: auto;
	width: 40px;
	height: 40px;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 750ms ease-in-out;
	-ms-transition: all 750ms ease-in-out;
	-o-transition: all 750ms ease-in-out;
	transition: all 750ms ease-in-out;
	z-index: 100;
}

.lift {
	bottom: 64px;
}

.display-table {
	display: table;
	width: 100%;
	height: 100%;
}

.display-table-cell {
	display: table-cell;
	vertical-align: middle;
}

/* 06. ABOUT
=================================================*/

#about {
	padding: 90px 0 75px;
	background: #fff;
}

.dark-theme #about {
	background: #1b1e24;
}

#about h2 {
	margin-top: 0;
}

.description {
	max-width: 100%;
	/* width: 50em; */
}

.description p {
	margin-bottom: 20px;
}

.social-icons {
	padding-left: 0px;
}

.social-icons li {
	display: inline-block;
	display: -moz-inline-stack;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dark-theme .social-icons li a {
	color: #fff;
}
.social-icons li a {
	color: #131313;
	background: rgba(42, 41, 41, 0);
	display: inline-block;
	display: -moz-inline-stack;
	width: 50px;
	height: 40px;
	box-sizing: border-box;
	-webkit-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}

.social-icons li a:hover {
	color: #48b14d;
}

.social-icons li a i {
	font-size: 1.3em;
}

.facts {
	float: right;
	margin-top: 30px;
}

.count-item {
	margin-right: 0;
	margin-bottom: 20px;
}

.numscroller {
	color: #48b14d;
	font-size: 2em;
	font-weight: 600;
	/* margin-bottom: 15px; */
	margin-top: 20px;
	font-family: 'Lato', sans-serif;
	display: inline-block;
}

.numscroller-text {
	color: #555;
	font-size: 1.4em;
	font-weight: 600;
	/* margin-bottom: 15px; */
	margin-top: 20px;
	margin-left: 5px;
	font-family: 'Lato', sans-serif;
	display: inline-block;
}

.dark-theme .count-name-intro {
	color: #bababa;
}
.count-name-intro {
	color: #131313;
	font-size: 1.3em;
	font-weight: 600;
	font-family: 'Lato', sans-serif;
}

/* 07. SKILLS
=================================================*/

#skills {
	padding: 95px 0 50px;
	background: #f2f2f2;
}

.dark-theme #skills {
	background: #131313;
}

#skills h2 {
	margin-bottom: 50px;
}

.skills-right {
	float: right;
}

.progress-box {
	margin-bottom: 50px;
}

.progress-box p {
	font-weight: 600;
	margin-bottom: 10px;
}

.progress {
	background-color: rgba(26, 26, 26, 0.31);
	height: 20px;
	border-radius: 4px;
	overflow: hidden;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.progress-box .progress {
	box-shadow: none;
	height: 3px;
}

.progress-box .progress-bar {
	transition-duration: 2000ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.bg-color-base {
	background: #48b14d !important;
}

.color-heading {
	color: #131313 !important;
}

/* 08. PORTFOLIO
=================================================*/

#portfolio {
	padding: 90px 0 80px;
	background: url(/assets/img/pattern-light.png) #fff;
	
}

.dark-theme #portfolio {
	background: url(/assets/img/pattern-dark.png) #181819;
}

#port-image .mix {
	display: none;
}

.dark-theme .filter {
	color: #bebebe;
}

.filter {
	position: relative;
	display: inline-block;
	color: #131313;
	font-size: 1em;
	font-weight: 600;
	padding: 6px 17px;
	margin: 0 3px;
	font-family: 'Lato', sans-serif;
}

.filter-btn {
	padding: 6px 10px;
	margin-top: 30px;
	margin-bottom: 35px;
	cursor: pointer;
}

.filter-btn .active {
	background-color: transparent;
	color: #48b14d;
	border-radius: 7px;
	border: none;
	margin-left: 0;
	-webkit-transition: all .2s ease-in-out .2s;
	transition: all .2s ease-in-out .2s;
}

.filter-btn .active:hover {
	background-color: #48b14d;
	color: #fff;
}

.grid {
	position: relative;
	margin: 0 auto;
	padding: 1em 0 1em;
	max-width: 1000px;
	list-style: none;
	text-align: center;
}

.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 2px 0;
	min-width: 358px;
	max-width: 358px;
	max-height: 290px;
	width: 48%;
	text-align: center;
	/* cursor: pointer; */
}

.port-desc {
	position: relative;
	display: inline-block;
	overflow: hidden;
	color: #131313;
	margin: 8px 5px;
	min-width: 230px;
	max-width: 315px;
	width: 100%;
	line-height: 1.2em;
	text-align: center;
}

.port-desc *,
.port-desc *:before,
.port-desc *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.port-desc:before {
	position: absolute;
	background-color: #ffffff;
	top: 10px;
	bottom: 10px;
	left: 10px;
	right: 10px;
	content: '';
	opacity: 0;
	-webkit-transform: scale(0.1);
	transform: scale(0.1);
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.port-desc img {
	max-width: 100%;
	vertical-align: top;
}

.port-desc figcaption {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	padding: 0 30px;
}

.dark-theme figcaption > h4, .dark-theme  figcaption > h5 {
	color: #131313;
}
.dark-theme  figcaption > h5.text-success {
	color: #3c763d;
}

figcaption > h4, figcaption > h5 {
	color: #131313;
	line-height: 20px; 
}

.port-desc h3 {
	text-transform: uppercase;
	margin: 0 0 6px;
	letter-spacing: 2px;
}

.port-desc p {
	margin: 0 0 10px;
	opacity: 0.6;
}

.port-desc .icons {
	width: 100%;
}

.dark-theme .port-desc a > h5 {
	color: #3c763d;
}

.port-desc a {
	margin: 2px;
	display: inline-block;
}

.port-desc a i {
	background-color: #333333;
	color: #131313;
	text-align: center;
	border-radius: 3px;
	display: block;
	line-height: 34px;
	width: 34px;
}

.port-desc a i:before {
	color: #fff;
}

.port-desc:hover:before,
.port-desc.hover:before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.port-desc:hover figcaption,
.port-desc.hover figcaption {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
	opacity: 1;
}

/* 09. SERVICES
=================================================*/


.dark-theme #services {
	background: url(/assets/img/pattern-dark.png) #181819;
}

#services {
	padding: 95px 0 65px;
	background: url(/assets/img/pattern-light.png) #fff;
}

#services h2 {
	margin-bottom: 30px;
}

.services-item {
	padding: 30px 50px 30px 0;
}

.services-item i {
	margin-bottom: 20px;
	display: inline-block;
	color: #3c763d;
}

.services-item h3 {
	display: inline-block;
	margin-left: 10px;
	color: #131313;
	font-weight: bold;
}

.dark-theme .services-item h3 {
	color: #bebebe;
}

.services-item span {
	color: #1e8c20;
}

#4CAF50

/* 10. HIRE
=================================================*/

#hire {
	padding: 95px 0 90px;
	background: #1e1e1e;
}

#hire p {
	width: 30em;
	max-width: 100%;
}

#hire .btn {
	margin-top: 60px;
	float: right;
}

/* 11. TESTIMONIAL
=================================================*/

#testimonial {
	padding: 90px 0 120px;
	position: relative;
	background-size: cover;
	width: 100%;
	height: 100%;
	background-attachment: fixed;
}

#testimonial .overlay {
	position: absolute;
	background: rgba(153, 195, 230, 0.1);
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 1;
}

#testimonial .flexslider {
	position: relative;
	width: 60%;
	z-index: 2;
	margin: 0 auto;
}

.testimonial-slider .avatar {
	width: 82px;
	height: 82px;
	background-color: #fff;
	border-radius: 50%;
	border: none;
	border: 3px solid #fff;
	margin: 0 auto;
	vertical-align: middle;
	overflow: hidden;
}

.testimonial-slider .avatar img {
	width: 82px;
	height: auto;
}

.testimonial-slider h2 {
	color: #fff;
	font-family: 'Lato', sans-serif;
	font-style: italic;
	font-size: 1.7em;
	line-height: 45px;
	margin: 30px 0;
}

.testimonial-slider p {
	color: #fff;
	font-weight: 600;
}

/* 12. BLOG
=================================================*/

.dark-theme #blog {
	background: #1b1e24;
}

#blog {
	padding: 90px 0 95px;
	background: #fff;
}

.blog-item {
	width: 100%;
	float: left;
}

.blog-item .blog-img {
	width: 100%;
	float: left;
	overflow: hidden;
	position: relative;
	z-index: 1;
	margin-top: 40px;
	margin-bottom: 20px;
}

.blog-item .blog-img img {
	position: relative;
	max-width: 100%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.9s;
	-o-transition: 0.9s;
	transition: 0.9s;
}

.blog-item .blog-desc h4 {
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.blog-item .blog-desc h4 a {
	color: #ffffff;
	text-decoration: none;
}

.blog-item .blog-desc p {
	margin-bottom: 15px;
}

.blog-item:hover .blog-img img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

/* 13. CONTACT
=================================================*/

#contact {
	padding: 95px 0 95px;
	background: #131313;
}

#contact h2 {
	margin-bottom: 45px;
}

#contact .address-icons p {
	color: #fff;
	margin-bottom: 30px;
}

#contact-form button {
	margin-top: 15px;
}

#contact i.fa {
	color: #fff;
	font-size: 2em;
	line-height: 45px;
	margin-bottom: 10px;
}

#contact .text-danger {
	color: #636363;
	text-align: left;
}

label {
	float: left;
}

label.error {
	color: #515769;
	font-size: 13px;
	font-weight: 300;
	margin: 0 0 15px 0;
}

#contact .form-control {
	display: block;
	background-color: #20232a;
	color: #7a7c7e;
	width: 100%;
	padding: 6px 12px;
	line-height: 1.42857143;
	background-image: none;
	border: 0;
	border-radius: 2px;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

#contact .form-control:focus {
	border-color: inherit;
	outline: 0;
	-webkit-box-shadow: transparent;
	box-shadow: transparent;
}

.form-control::-webkit-input-placeholder {
	color: #595959;
	font-size: 0.9em;
}

.form-control:-moz-placeholder {
	color: #595959;
	font-size: 0.9em;
}

.form-control::-moz-placeholder {
	color: #595959;
	font-size: 0.9em;
}

.form-control:-ms-input-placeholder {
	color: #595959;
	font-size: 0.9em;
}

textarea {
	resize: none;
}

fieldset {
	border: 0px;
	margin: 0;
	padding: 0
}

.success {
	padding: 1em;
	color: #fff;
	background-color: #48b14d;
	border: 1px solid #d6e9c6;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin-top: 30px;
}

.error {
	padding: 1em;
	color: #fff;
	background-color: #616161;
	border: 1px solid #d6e9c6;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin-top: 30px;
}

/* 14. BLOG POST
=================================================*/

#header {
	background-color: #777777;
	background: no-repeat center center;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	background-position: center center;
	margin-bottom: 50px;
}

#header .overlay-blog:after {
	position: absolute;
	background: rgba(0, 0, 0, 0.7);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
}

#header .site-heading,
#header .post-heading,
#header .page-heading {
	color: #fff;
	padding: 100px 0 50px;
}

#header .site-heading,
#header .page-heading {
	text-align: center;
}

#header .site-heading h1,
#header .page-heading h1 {
	font-size: 50px;
	margin-top: 0;
}

#header .site-heading .subheading,
#header .page-heading .subheading {
	display: block;
	font-size: 24px;
	font-weight: 300;
	line-height: 1.1;
	margin: 10px 0 0;
}

#header .post-heading h1 {
	font-size: 35px;
}

#header .post-heading .subheading,
#header .post-heading .meta {
	display: block;
	line-height: 1.1;
}

#header .post-heading .subheading {
	font-size: 24px;
	font-weight: 600;
	margin: 10px 0 30px;
}

#header .post-heading .meta {
	font-style: italic;
	font-weight: 300;
	font-size: 20px;
}

#header .post-heading .meta a {
	color: #fff;
}

.post-container {
	margin: 0 auto;
	width: 45em;
	padding: 60px 0;
}

.post-container img {
	max-width: 100%;
	padding: 40px 0;
}

.dark-theme #footer {
	background: #1e1e1e;
	border-top: 1px solid #3a3232;
}

#footer {
	padding: 20px 0 7px;
	background: #fff;
	border-top: 1px solid #f0f0f0;
}

.dark-theme #footer-post {
	padding: 20px 0 0;
	background: #1e1e1e;
	border-top: 1px solid #3a3232;
	margin-top: 100px;
}

#footer-post {
	padding: 20px 0 0;
	background: #fff;
	border-top: 1px solid #f0f0f0;
	margin-top: 100px;
}

.dark-theme #footer p {
	color: #fff;
}

#footer p {
	color: #131313;
}

.social-icons-footer {
	margin: 0 auto;
	padding: 0;
}

.social-icons-footer li {
	margin: 0;
	padding: 0;
	list-style: none;
	display: -moz-inline-stack;
	display: inline-block;
}

.social-icons-footer li a {
	color: #131313;
	background: rgba(42, 41, 41, 0);
	font-size: 1.3em;
	display: -moz-inline-stack;
	display: inline-block;
	width: 50px;
	height: 40px;
	padding: 10px 10px 8px 10px;
	box-sizing: border-box;
	-webkit-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	margin-bottom: 0;
}

.social-icons-footer li a:hover {
	color: #131313;
}

/* 15. FOOTER
=================================================*/

.dark-theme #footer {
	background: #1b1e24;
}

#footer {
	padding: 20px 0 10px;
	background: #fff;
}

.dark-theme #footer-post {
	background: #1e1e1e;
}

#footer-post {
	background: #f3f3f3;
	padding: 30px 0;
	margin-top: 100px;
}

#footer p {
	color: #48b14d54;
}

.social-icons-footer {
	margin: 0 auto;
	padding: 0;
}

.social-icons-footer li {
	display: -moz-inline-stack;
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dark-theme .social-icons-footer li a {
	color: #fff;
}
.social-icons-footer li a {
	color: #131313;
	background: rgba(42, 41, 41, 0);
	font-size: 1.3em;
	display: -moz-inline-stack;
	display: inline-block;
	padding: 10px 10px 8px 10px;
	width: 50px;
	height: 40px;
	box-sizing: border-box;
	-webkit-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	margin-bottom: 0;
}

.social-icons-footer li a:hover {
	color: #48b14d;
}

.widget-item .controller.right {
    right: 20px;
    top: 20px;
}
.widget-item .controller {
    position: absolute;
    display: block;
    z-index: 100;
}


.tiles.full-height {

height: 214px;
background-color: #1b1e24;
}
.tiles.overflow-hidden {
overflow: hidden;
}
.tiles {
background-color: #bcbcbc;
color: #ffffff;
position: relative;
}

.overlayer.fullwidth {
    width: 100%;
}
.bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
}
.overlayer {
    position: absolute;
    display: block;
    z-index: 80;
}

.hover-effect-img {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.tiles:hover .hover-effect-img {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    filter: contrast(130%);
    -webkit-filter: contrast(130%);
}

.tiles:hover figcaption, .tiles.hover figcaption {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    opacity: 1;
}

.copyright {
	color: #929292;
}