/*
Theme Name: Lami
Theme URI: http://demo.deothemes.com/lami/
Author: DeoThemes
Author URI: https://deothemes.com
Description: Lami is a clean food blogging WordPress Theme, it has live customizer options, custom widgets and much more. Make your perfect blog today.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lami
Tags: blog, news, theme-options, custom-logo, grid-layout

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/*-------------------------------------------------------*/
/* Table of Content

1.General
  1.1.Typography
2.Common Elements
3.Blog
4.About me
5.Contact
6.Navigation
7.Footer

/*-------------------------------------------------------*/
/*-------------------------------------------------------*/
/* General
/*-------------------------------------------------------*/
.clearfix {
	*zoom: 1;
}

.clearfix:before, .clearfix:after {
	display: table;
	line-height: 0;
	content: "";
}

.clearfix:after {
	clear: both;
}

.clear {
	clear: both;
}

.oh {
	overflow: hidden;
}

.relative {
	position: relative;
}

.white {
	color: #fff;
}

.left {
	float: left;
}

.right {
	float: right;
}

.bg-light {
	background-color: #f6f7f2;
}

.bg-dark {
	background-color: #4e3b32;
}

.last {
	margin-bottom: 0 !important;
}

.img-fullwidth {
	width: 100%;
}

.nocaps {
	text-transform: none;
	letter-spacing: 0;
}

::-moz-selection {
	background: #fdf0b2;
}

::-webkit-selection {
	background: #fdf0b2;
}

::selection {
	background: #fdf0b2;
}

a {
	text-decoration: none;
	color: #4eb56b;
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	color: #353535;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	line-height: 1.5;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	background: #fff;
	outline: 0;
	overflow-x: hidden;
	overflow-y: auto;
	color: #474747;
	width: 100%;
	height: 100%;
}

body img {
	border: none;
	max-width: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	    user-select: none;
}

video {
	height: 100%;
	width: 100%;
}

/*-------------------------------------------------------*/
/* Preloader
/*-------------------------------------------------------*/
.loader-mask {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 99999;
}

.loader {
	display: block;
	position: absolute;
	font-size: 0;
	color: #4eb56b;
	left: 50%;
	top: 50%;
	width: 42px;
	height: 42px;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}

.loader > div {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 100%;
	display: inline-block;
	float: none;
	width: 38px;
	height: 38px;
	background: transparent;
	border-style: solid;
	border-width: 2px;
	border-right-color: transparent;
	border-left-color: transparent;
	-webkit-animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
	animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

@-webkit-keyframes ball-clip-rotate-pulse-rotate {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0);
		transform: translate(-50%, -50%) rotate(0);
	}
	50% {
		-webkit-transform: translate(-50%, -50%) rotate(180deg);
		transform: translate(-50%, -50%) rotate(180deg);
	}
	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes ball-clip-rotate-pulse-rotate {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0);
		transform: translate(-50%, -50%) rotate(0);
	}
	50% {
		-webkit-transform: translate(-50%, -50%) rotate(180deg);
		transform: translate(-50%, -50%) rotate(180deg);
	}
	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@-webkit-keyframes ball-clip-rotate-pulse-scale {
	0%, 100% {
		opacity: 1;
		-webkit-transform: translate(-50%, -50%) scale(1);
		transform: translate(-50%, -50%) scale(1);
	}
	30% {
		opacity: .3;
		-webkit-transform: translate(-50%, -50%) scale(0.15);
		transform: translate(-50%, -50%) scale(0.15);
	}
}

@keyframes ball-clip-rotate-pulse-scale {
	0%, 100% {
		opacity: 1;
		-webkit-transform: translate(-50%, -50%) scale(1);
		transform: translate(-50%, -50%) scale(1);
	}
	30% {
		opacity: .3;
		-webkit-transform: translate(-50%, -50%) scale(0.15);
		transform: translate(-50%, -50%) scale(0.15);
	}
}

/*-------------------------------------------------------*/
/* Typography
/*-------------------------------------------------------*/
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Cantata One", serif;
	margin-top: 0;
	margin-bottom: 10px;
	color: #353535;
	font-weight: 400;
	line-height: 1.3;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 26px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 22px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 15px;
}

@media only screen and (max-width: 575px) {
	h1 {
		font-size: 26px;
	}
	h2 {
		font-size: 22px;
	}
	h3 {
		font-size: 19px;
	}
}

@media (max-width: 640px) {
	h1 {
		font-size: 24px;
	}
	h2 {
		font-size: 20px;
	}
	h3 {
		font-size: 19px;
	}
	h4 {
		font-size: 18px;
	}
}

h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
	color: inherit;
}

p {
	font-size: 15px;
	color: #474747;
	font-weight: normal;
	line-height: 26px;
	margin: 0 0 10px;
}

address {
	font-style: normal;
}

.lead {
	font-size: 18px;
	line-height: 30px;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

@media only screen and (max-width: 991px) {
	.text-lg-center {
		text-align: center;
	}
}

@media only screen and (max-width: 767px) {
	.text-md-center {
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.text-sm-center {
		text-align: center;
	}
}

blockquote {
	padding: 30px 0;
	margin: 0;
	text-align: center;
	border-top: 3px solid #f1f1f0;
	border-bottom: 3px solid #f1f1f0;
}

blockquote p {
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 0px !important;
	position: relative;
	color: #353535;
}

hr {
	margin: 50px 0;
}

/*-------------------------------------------------------*/
/* Grid
/*-------------------------------------------------------*/
.section-wrap {
	padding: 100px 0;
	overflow: hidden;
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.mobile .section-wrap {
	background-position: 50% 50% !important;
	background-attachment: scroll !important;
}

@media only screen and (max-width: 991px) {
	.section-wrap {
		padding: 90px 0;
	}
}

@media only screen and (max-width: 767px) {
	.section-wrap {
		padding: 80px 0;
	}
}

.container-semi-fluid {
	padding: 0 50px;
}

@media only screen and (max-width: 991px) {
	.container-semi-fluid {
		padding: 0 15px;
	}
}

@media (min-width: 1340px) {
	.container {
		max-width: 1280px;
	}
}

/* 5 columns
-------------------------------------------------------*/
.col-xs-5ths,
.col-sm-5ths,
.col-lg-5ths,
.col-lg-5ths {
	position: relative;
	min-height: 1px;
	padding-right: 10px;
	padding-left: 10px;
}

.col-xs-5ths {
	width: 20%;
	float: left;
}

@media (min-width: 768px) {
	.col-sm-5ths {
		width: 20%;
		float: left;
	}
}

@media (min-width: 992px) {
	.col-lg-5ths {
		width: 20%;
		float: left;
	}
}

@media (min-width: 1400px) {
	.col-lg-5ths {
		width: 20%;
		float: left;
	}
}

/* Flexbox
-------------------------------------------------------*/
.flex-parent {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row nowrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	        flex-flow: row nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.flex-child {
	-webkit-box-flex: 1 0 0;
	-ms-flex: 1 0 0;
	flex: 1 0 0;
}

/* Columns With No Gutters
-------------------------------------------------------*/
.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

/*-------------------------------------------------------*/
/* WordPress Styles
/*-------------------------------------------------------*/
body.admin-bar .nav--sticky {
	top: 46px;
}

@media only screen and (min-width: 768px) {
	body.admin-bar .nav--sticky {
		top: 32px;
	}
}

.site-title {
	font-size: 30px;
}

.gallery-caption {
	display: block;
}

img {
	height: auto;
}

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 30px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 30px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #fff;
	border: 1px solid #f0f0f0;
	max-width: 96%;
	/* Image does not overflow the content area */
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text,
.says {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

.bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
	border: 1px solid #e5e5e3;
	padding: 2px;
}

/* Post Formats */
.single-post.custom-background {
	background-color: #fff;
}

.deo-post-audio iframe {
	width: 100%;
	height: 165px;
}

.widget li {
	padding: 9px 0;
}

.widget ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.widget a {
	color: #474747;
}

.widget a:hover {
	color: #4eb56b;
}

.widget ul li:first-child {
	padding-top: 0;
}

.widget .sub-menu {
	padding-left: 15px;
	padding-top: 5px;
}

.widget .sub-menu li {
	padding: 5px 0 !important;
}

.widget .children {
	padding-top: 10px;
	padding-left: 15px;
	margin-top: 10px;
}

.footer-links ul > li {
	border: none;
}

/* Calendar */
#wp-calendar {
	width: 100%;
}

#wp-calendar th,
#wp-calendar td {
	text-align: center;
}

#wp-calendar tbody td {
	line-height: 1;
}

#wp-calendar > tfoot > tr {
	border: 1px solid #e5e5e3;
}

#wp-calendar > tfoot > tr > td {
	border: 0;
}

/* Search */
.search-field {
	margin-bottom: 10px !important;
}

.post-password-form label > input {
	margin-bottom: 24px;
}

.post-password-form label + input,
.search-submit {
	line-height: 41px;
	font-size: 11px;
	padding: 0 24px;
	font-family: "Cantata One", serif;
	border: none;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	background-color: #000;
	color: #fff;
	position: relative;
	top: -2px;
	width: auto;
}

/* Sticky Post */
.post.sticky .entry__title:before {
	content: '\e832';
	font-family: "ui-icons";
	display: inline-block;
	margin-right: 12px;
	position: relative;
	top: -2px;
	font-size: 18px;
	color: #bbbbbb;
	max-height: 20px;
}

/*-------------------------------------------------------*/
/* Article styles
/*-------------------------------------------------------*/
dt,
dd {
	padding: 10px 0;
	border-bottom: 1px solid #e5e5e3;
}

.entry__article ul {
	list-style: disc;
	padding-left: 20px;
}

.entry__article ol {
	padding-left: 20px;
}

.entry__article ul li,
.entry__article ol li {
	padding: 5px 0;
}

/* Pagination */
.entry-pages {
	margin-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e5e5e3;
}

.entry-pages a {
	min-width: 12px;
	display: inline-block;
	text-align: center;
}

.entry-pages:before {
	content: '';
	display: table;
	clear: both;
}

.comment-navigation {
	margin: 20px 0;
}

.comment-navigation .nav-previous {
	float: left;
}

.comment-navigation .nav-next {
	float: right;
}

.comment-respond {
	margin-top: 60px;
}

/*-------------------------------------------------------*/
/* Tables
/*-------------------------------------------------------*/
table th {
	font-weight: normal;
}

table caption {
	margin-bottom: 10px;
}

table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
	border: 1px solid #e5e5e3;
	padding: 5px;
}

table > thead > tr > th {
	border-bottom: none;
}

table thead tr th {
	font-size: 12px;
	color: #353535;
	font-family: "Cantata One", serif;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 0.05em;
}

/*-------------------------------------------------------*/
/* Buttons
/*-------------------------------------------------------*/
.btn {
	font-weight: 400;
	overflow: hidden;
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	letter-spacing: 0.05em;
	border: 1px solid transparent;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: #fff;
	background-color: #353535;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: relative;
	z-index: 1;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.btn:hover {
	color: #fff;
	opacity: .90;
	border-color: transparent;
}

.btn:focus {
	outline: none;
	color: #fff;
}

.btn-lg, .btn-lg.btn-button {
	font-size: 13px;
	padding: 0 30px;
}

.btn-lg span, .btn-lg.btn-button span {
	line-height: 45px;
}

.btn-lg i, .btn-lg.btn-button i {
	font-size: 10px;
	position: relative;
	top: -1px;
	margin-left: 5px;
}

.btn-lg.btn-button {
	height: 45px;
}

.btn-md, .btn-md.btn-button {
	font-size: 11px;
	padding: 0 17px;
}

.btn-md span, .btn-md.btn-button span {
	line-height: 39px;
}

.btn-md.btn-button {
	height: 40px;
}

.btn-sm, .btn-sm.btn-button {
	font-size: 11px;
	padding: 0 20px;
	line-height: 30px;
}

.btn-sm.btn-button {
	height: 30px;
}

.btn-color {
	background-color: #4eb56b;
}

.btn-transparent {
	background-color: transparent;
	border: 1px solid #fff;
}

.btn-stroke {
	color: #353535;
	border: 1px solid #e5e5e3;
	background-color: transparent;
}

.btn-dark {
	background-color: #353535;
}

.btn-white {
	background-color: #fff;
	color: #353535;
}

.btn-light {
	background-color: #f6f7f2;
	color: #353535;
}

.btn-white:focus, .btn-stroke:focus, .btn-transparent:focus {
	color: #353535;
}

.rounded,
.rounded:before {
	border-radius: 70px;
}

/* Input Buttons
-------------------------------------------------------*/
.btn-button {
	border: none;
	margin-bottom: 0;
	width: auto;
}

.btn-button.btn-color, .btn-button.btn-dark {
	color: #fff;
}

.btn-button.btn-wide {
	width: 100%;
}

.btn-button:hover, .btn-button:focus {
	opacity: .9;
	color: #fff;
	background-color: #4eb56b;
}

/*-------------------------------------------------------*/
/* Form Elements
/*-------------------------------------------------------*/
input,
select,
textarea {
	height: 45px;
	border: 1px solid #e5e5e3;
	border-radius: 0;
	background-color: #f6f7f2;
	width: 100%;
	margin-bottom: 30px;
	padding: 0 16px;
	-webkit-transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
	transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
	color: #868686;
	font-size: 15px;
}

textarea {
	height: auto;
	display: block;
	padding: 8px 16px;
	margin-bottom: 40px;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

input[type=search] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

input:focus,
textarea:focus {
	border-color: #4eb56b;
	outline: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
	background-color: transparent;
}

/* Change Color of Placeholders */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #868686;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #868686;
	opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #868686;
	opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #868686;
}

label {
	color: #353535;
	font-size: 15px;
	display: inline-block;
	vertical-align: middle;
	font-weight: 400;
	margin-bottom: 4px;
}

#contact-form .message {
	height: 50px;
	width: 100%;
	font-size: 13px;
	line-height: 50px;
	text-align: center;
	float: none;
	margin-top: 20px;
	display: none;
	color: #fff;
}

#contact-form .message.error {
	background-color: #f44336;
}

#contact-form .message.success {
	background-color: #4CAF50;
}

/* Checkboxes & Radio Buttons
-------------------------------------------------------*/
input[type="checkbox"],
input[type="radio"] {
	width: auto;
	height: auto;
	margin-bottom: 0;
	vertical-align: middle;
	margin-right: 8px;
	line-height: 18px;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
	cursor: pointer;
	margin-bottom: 0;
	position: relative;
	line-height: 22px;
}

.comment-form .comment-form-cookies-consent {
	margin-bottom: 18px;
}

/*-------------------------------------------------------*/
/* Sliders
/*-------------------------------------------------------*/
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel, .owl-carousel .owl-item {
	-webkit-tap-highlight-color: transparent;
	position: relative;
}

.owl-carousel {
	display: none;
	width: 100%;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	-moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
	display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.owl-carousel .animated {
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	        animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.owl-height {
	-webkit-transition: height .5s ease-in-out;
	transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
	-webkit-transform-style: preserve-3d;
	        transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url(owl.video.play.png) no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transition: -webkit-transform .1s ease;
	transition: -webkit-transform .1s ease;
	transition: transform .1s ease;
	transition: transform .1s ease, -webkit-transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transform: scale(1.3, 1.3);
	        transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.owl-pagination {
	position: relative;
	left: 0;
	margin-top: 50px;
	display: block;
	text-align: center;
	width: 100%;
}

.owl-buttons {
	position: static;
}

.owl-prev, .owl-next {
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -17px;
	text-align: center;
	line-height: 34px;
	z-index: 10;
	width: 34px;
	height: 34px;
	font-size: 34px;
	color: #fff;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.owl-prev {
	left: -34px;
}

.owl-next {
	right: -34px;
}

.owl-carousel:hover .owl-prev {
	opacity: 1;
	left: 10px;
}

.owl-carousel:hover .owl-next {
	opacity: 1;
	right: 10px;
}

.owl-page {
	display: inline-block;
	padding: 6px 6px;
	position: relative;
}

.owl-page span {
	display: block;
	position: relative;
	width: 6px;
	height: 6px;
	opacity: 0.8;
	border-radius: 50px;
	background-color: #fff;
	z-index: 100;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.owl-page span:hover {
	opacity: 1;
}

.owl-page.active span {
	display: block;
	margin: 0;
	opacity: 1;
	background-color: #4eb56b;
	-webkit-transform: scale(1.7);
	transform: scale(1.7);
}

.owl-next:hover i,
.owl-prev:hover i {
	color: #4eb56b;
}

.owl-carousel.dots-inside .owl-pagination {
	position: absolute;
	bottom: 20px;
	margin-top: 0;
}

.owl-carousel.dark-dots .owl-page span {
	background-color: #cacdce;
}

.owl-carousel.dark-dots .owl-page.active span {
	background-color: #4eb56b;
}

/*-------------------------------------------------------*/
/* Social Icons
/*-------------------------------------------------------*/
.socials a {
	display: inline-block;
	width: 14px;
	line-height: 32px;
	color: #868686;
	text-align: center;
	margin-left: 15px;
	font-size: 16px;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

.socials a:hover {
	color: #4eb56b;
}

.socials a:first-child {
	margin-left: 0;
}

.socials .facebook {
	color: #3b5998;
}

.socials .twitter {
	color: #00acee;
}

.socials .google-plus {
	color: #dd4b39;
}

.socials .envelope {
	color: #009688;
}

.socials .linkedin {
	color: #0e76a8;
}

.socials .pinterest {
	color: #c8232c;
}

.socials .instagram {
	color: #3f729b;
}

/*-------------------------------------------------------*/
/* Hero
/*-------------------------------------------------------*/
.hero__slide {
	height: 65vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.hero__slide--short {
	height: 60vh;
}

.hero__slide .entry,
.hero__slide .entry__img-holder,
.hero__slide .container {
	height: 100%;
}

.hero__slide__entry__title {
	font-size: 28px;
}

.hero__slide__entry__title a:hover {
	color: #4eb56b;
}

@media only screen and (max-width: 575px) {
	.hero__slide__entry__title {
		font-size: 24px;
	}
}

/*-------------------------------------------------------*/
/* Blog
/*-------------------------------------------------------*/
.entry {
	overflow: hidden;
	margin-bottom: 40px;
}

.entry__img-holder, .entry__slider, .entry__video {
	position: relative;
	overflow: hidden;
}

.entry__img {
	width: 100%;
}

.entry__header {
	padding: 30px 45px;
}

.entry__header--pb-small {
	padding-bottom: 22px;
}

@media only screen and (max-width: 991px) {
	.entry__header {
		padding: 20px;
	}
}

.entry__img-holder {
	display: block;
}

.entry__img-holder .entry__header {
	position: absolute;
	bottom: 80px;
	left: 20px;
	margin-right: 20px;
	margin-bottom: 0;
	background-color: #fff;
	max-width: 400px;
	padding: 40px 50px;
}

.entry__img-holder .entry__header--push-left {
	left: 80px;
}

@media only screen and (max-width: 575px) {
	.entry__img-holder .entry__header {
		left: 20px;
		bottom: 20px;
	}
}

.entry__img-holder .entry__meta__category {
	display: inline-block;
	background-color: #f87219;
	color: #fff;
	padding: 0 10px;
	height: 33px;
	line-height: 33px;
	margin-bottom: 30px;
	margin-right: 5px;
}

.entry__img-holder .entry__meta__category:last-of-type {
	margin-right: 0;
}

.entry__img-holder .entry__meta__category:hover {
	background-color: #4eb56b;
	color: #fff;
}

@media only screen and (max-width: 575px) {
	.entry__img-holder .entry__title {
		font-size: 18px;
	}
}

@media only screen and (max-width: 575px) {
	.entry__img-holder .entry__header {
		padding: 30px;
	}
}

.entry__body {
	position: relative;
	background-color: #fff;
	word-wrap: break-word;
}

.entry__title {
	font-size: 22px;
	margin-top: 10px;
}

@media only screen and (max-width: 575px) {
	.entry__title {
		font-size: 18px;
	}
}

.entry__title:hover a {
	color: #4eb56b;
}

.entry__title--sm {
	font-size: 18px;
}

.entry__footer {
	border-top: 1px solid #e5e5e3;
	padding: 22px 45px 30px;
}

@media only screen and (max-width: 991px) {
	.entry__footer {
		padding: 22px 20px 30px;
	}
}

.entry__footer a {
	color: #868686;
}

.entry__footer a:hover {
	color: #4eb56b;
}

.entry__meta li {
	display: inline-block;
	color: #868686;
	font-size: 13px;
}

.entry__meta--right {
	float: right;
}

.entry__meta__category {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #f87219;
}

.entry__meta__category:hover {
	color: #4eb56b;
}

.entry__meta__date, .entry__meta__likes, .entry__meta__comments {
	color: #868686;
	font-size: 13px;
}

.entry__meta__likes:hover, .entry__meta__comments:hover {
	color: #4eb56b;
}

.entry__meta__date {
	margin-right: 20px;
}

.entry__meta__likes {
	margin-right: 17px;
}

.entry__meta__icon {
	margin-right: 7px;
}

.entry__excerpt {
	padding: 0 45px 60px;
}

@media only screen and (max-width: 991px) {
	.entry__excerpt {
		padding: 0 20px 40px;
	}
}

.entry__read-more {
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.10em;
	color: #4eb56b;
}

.entry__read-more:hover {
	color: #000;
}

/* Clearfix for grid posts
-------------------------------------------------------*/
.blog__content > .row .col-md-6:nth-child(2n + 1) {
	clear: left;
}

/* List Post
-------------------------------------------------------*/
.post-list {
	position: relative;
}

.post-list__img-holder, .post-list__body {
	width: 50%;
}

.post-list__img-holder {
	position: absolute;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.post-list__img-holder a {
	display: block;
	height: 100%;
}

.post-list__img-holder img {
	display: none;
}

.post-list__body {
	float: right;
}

@media only screen and (max-width: 575px) {
	.post-list__img-holder, .post-list__body {
		width: 100%;
	}
	.post-list__img-holder {
		position: relative;
		background-image: none !important;
	}
	.post-list__img-holder img {
		display: block;
	}
}

/* Instagram
-------------------------------------------------------*/
.instagram-pics li {
	display: inline-block;
	list-style-type: none;
}

@media only screen and (max-width: 575px) {
	.instagram-pics li {
		width: 25% !important;
	}
}

.instagram-pics img {
	height: auto;
}

.instagram-feed__title {
	display: inline-block;
	margin-bottom: 32px;
	color: #474747;
	font-size: 20px;
}

.instagram-feed__title:before {
	content: '\f16d';
	font-family: "ui-icons";
	margin-right: 12px;
}

.instagram-feed {
	background-color: #fff;
	padding-top: 70px;
	font-size: 20px;
	font-family: "Cantata One", serif;
}

/* Pagination (Buttons)
-------------------------------------------------------*/
.pagination__link a {
	color: #fff;
	line-height: 45px;
	font-size: 13px;
	display: inline-block;
	padding: 0 30px;
	font-weight: 400;
	overflow: hidden;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	letter-spacing: 0.05em;
	border: 1px solid transparent;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #4eb56b;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: relative;
	z-index: 1;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Pagination (Numbers)
-------------------------------------------------------*/
.page-numbers {
	font-size: 0.75rem;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-right: 2px;
	text-align: center;
	color: #353535;
	background-color: #fff;
	vertical-align: middle;
}

.page-numbers:not(span):hover {
	background-color: #4eb56b;
	color: #fff;
}

.page-numbers.current {
	background-color: #4eb56b;
	color: #fff;
	border-color: transparent;
}

/*-------------------------------------------------------*/
/* Blog Single Post
/*-------------------------------------------------------*/
.entry-box {
	background-color: #fff;
	padding: 40px;
	overflow: hidden;
}

@media only screen and (max-width: 575px) {
	.entry-box {
		padding: 15px;
	}
}

.single-post__img-holder {
	height: 65vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 575px) {
	.single-post__img-holder {
		height: 300px;
	}
}

.single-post__entry {
	margin-bottom: 0;
}

.single-post__entry blockquote {
	margin: 30px 0;
}

.single-post__entry__header {
	margin-bottom: 26px;
}

.single-post__entry__title {
	margin-top: 10px;
}

.entry__article h1, .entry__article h2, .entry__article h3, .entry__article h4, .entry__article h5, .entry__article h6 {
	margin-top: 40px;
}

.entry__article p {
	margin-bottom: 36px;
}

.entry__article ol, .entry__article ul {
	padding-left: 16px;
	line-height: 26px;
}

.entry__article ul {
	list-style: disc;
}

/* Recipe
/*-------------------------------------------------------*/
.wpurp-container {
	padding: 40px 30px;
	background-color: #fff;
	border: 1px solid #e5e5e3;
}

@media only screen and (max-width: 575px) {
	.wpurp-container {
		padding: 15px;
	}
}

.wpurp-icon {
	display: none;
}

.wpurp-recipe-title {
	display: inline-block;
	font-size: 22px;
	font-family: "Cantata One", serif;
	color: #353535;
	margin-bottom: 15px;
}

.wpurp-recipe-print-button {
	float: right;
	background-color: #4eb56b;
	color: #fff;
	height: 34px;
	line-height: 34px;
	padding: 0 15px;
	font-size: 13px;
	margin-bottom: 10px;
}

.wpurp-recipe-print-button:hover {
	color: #fff;
	opacity: .95;
}

.wpurp-recipe-print-button:after {
	content: "Print";
	text-transform: uppercase;
}

.wpurp-recipe-stars {
	float: right;
	margin-top: 10px;
}

.wpurp-recipe-stars i {
	color: #fbc64a;
	margin: 0 1px;
}

table.wpurp-columns,
.wpurp-recipe-image {
	width: 100%;
}

table.wpurp-columns > tbody > tr > td {
	border: none;
	padding: 0;
}

table.wpurp-columns > tbody > tr {
	height: 36px;
}

table.wpurp-columns > tbody > tr > td {
	width: 50%;
	vertical-align: top;
}

.wpurp-responsive-mobile table.wpurp-columns > tbody > tr > td:first-child {
	width: 30%;
}

@media (max-width: 360px) {
	.wpurp-responsive-mobile table.wpurp-columns > tbody > tr > td:first-child {
		width: 50%;
	}
}

.wpurp-responsive-desktop,
.wpurp-responsive-mobile {
	margin-top: 20px;
}

table.wpurp-columns table.wpurp-columns > tbody > tr > td:first-child {
	width: 20%;
}

@media (max-width: 700px) and (min-width: 608px) {
	table.wpurp-columns table.wpurp-columns > tbody > tr > td:first-child {
		width: 40%;
	}
}

.adjust-recipe-servings[type=number] {
	width: 62px;
	margin-bottom: 0;
	margin-right: 5px;
	height: 32px;
	padding: 0 10px;
}

.wpurp-box .wpurp-title {
	display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #f87219;
	margin-top: 30px;
	margin-bottom: 15px;
}

.wpurp-icon + .wpurp-title {
	color: #474747;
	font-weight: bold;
}

.wpurp-recipe-ingredient-name a {
	color: #474747;
}

.wpurp-recipe-ingredient-group {
	display: inline-block;
	margin: 10px 0 5px;
	font-weight: bold;
}

.wpurp-recipe-ingredient-container {
	padding-right: 10px;
}

.wpurp-recipe-instruction-container {
	margin: 0;
}

.wpurp-recipe-instruction-container li {
	margin-bottom: 10px;
}

.wpurp-recipe-print-button:focus {
	color: #fff;
}

/* Share / tags
/*-------------------------------------------------------*/
.entry__share-tags {
	margin-top: 40px;
	margin-bottom: 40px;
}

.entry-tags {
	display: inline-block;
	vertical-align: middle;
	line-height: 32px;
}

.entry-tags span {
	margin-right: 5px;
}

.entry-tags a {
	color: #868686;
	font-family: "Roboto", sans-serif;
}

.entry-tags a:hover {
	color: #4eb56b;
}

.entry-share {
	text-align: right;
}

@media only screen and (max-width: 767px) {
	.entry-share {
		text-align: left;
		margin-top: 10px;
	}
}

.entry-share span {
	margin-right: 15px;
}

.entry-share .socials {
	display: inline-block;
}

/* Author
-------------------------------------------------------*/
.entry-author {
	padding-top: 40px;
	margin-bottom: 58px;
	border-top: 1px solid #e5e5e3;
	position: relative;
}

.entry-author__img {
	display: block;
	float: left;
	margin-right: 40px;
	border-radius: 50%;
}

@media only screen and (max-width: 575px) {
	.entry-author__img {
		width: 40px;
		margin-right: 20px;
	}
}

.entry-author__info {
	overflow: hidden;
	margin-top: 5px;
}

@media only screen and (max-width: 575px) {
	.entry-author__info {
		margin-top: 0;
	}
}

.entry-author__name {
	font-size: 18px;
}

/* Related Posts
-------------------------------------------------------*/
.related-posts__title {
	font-size: 26px;
	margin-bottom: 30px;
}

.related-posts .entry {
	margin-bottom: 10px;
}

.related-posts .entry__body {
	border: 1px solid #e5e5e3;
	border-top: 0;
}

/* Comments
/*-------------------------------------------------------*/
.entry-comments__title {
	font-size: 20px;
}

@media only screen and (min-width: 576px) {
	.comment .children {
		padding-left: 8%;
	}
}

.comment-body {
	margin-top: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e5e5e3;
}

.comment-text {
	overflow: hidden;
}

.comment-text p {
	margin-bottom: 10px;
}

.comment-avatar {
	float: left;
	margin-right: 24px;
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

@media only screen and (max-width: 575px) {
	.comment-avatar {
		width: 40px;
	}
}

.comment-author {
	color: #353535;
	font-size: 15px;
	display: block;
	margin-bottom: 5px;
}

.comment-date, .comment-edit-link {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 12px;
	color: #868686;
}

.comment-edit-link {
	margin-left: 5px;
	margin-bottom: 0;
	color: #4eb56b;
}

/* Comment Form
/*-------------------------------------------------------*/
.comment-form p {
	margin: 0;
}

.comment-form__title {
	font-size: 20px;
}

.comment-respond {
	margin-top: 70px;
	margin-bottom: 40px;
}

p.comment-form-submit {
	margin-top: 10px;
}

/*-------------------------------------------------------*/
/* Sidebar
/*-------------------------------------------------------*/
.sidebar .widget {
	margin-bottom: 40px;
	padding: 35px;
	background-color: #fff;
}

@media only screen and (max-width: 575px) {
	.sidebar .widget {
		padding: 30px 20px;
	}
}

.sidebar .widget-title {
	margin-bottom: 28px;
	font-size: 20px;
}

.sidebar .widget ul li {
	position: relative;
	border-bottom: 1px solid #e5e5e3;
}

.sidebar .widget ul li:last-child {
	border-bottom: none;
}

@media (min-width: 1340px) {
	.sidebar--right {
		padding-left: 50px;
	}
	.sidebar--left {
		padding-right: 50px;
	}
}

@media only screen and (min-width: 768px) {
	.blog__content--right {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
	.sidebar--left {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
}

/* Widget Search
-------------------------------------------------------*/
.search-input {
	margin-bottom: 0 !important;
}

.search-button {
	position: absolute;
	top: 0;
	height: 100%;
	right: 0;
	padding: 0;
	width: 45px;
	background-color: transparent;
	border: none;
}

.entry__article .search-input {
	background-color: #fff;
}

/* Widget About Me
-------------------------------------------------------*/
.widget-about-img {
	margin-bottom: 31px;
	border-radius: 50%;
}

.widget-about-text {
	margin-bottom: 23px;
}

/* Wide Newsletter 
-------------------------------------------------------*/
.newsletter-wide {
	padding: 70px 8% 0;
	overflow: hidden;
}

.newsletter-wide__text {
	width: 50%;
	float: left;
}

.newsletter-wide__text p {
	color: #868686;
}

.newsletter-wide__title {
	margin-bottom: 5px;
}

.newsletter-wide__form {
	width: 50%;
	float: right;
}

.newsletter-wide__form input {
	margin-left: 10%;
	margin-top: 5px;
}

.newsletter-wide__form input[type=submit] {
	width: auto;
	margin-left: 10px;
	vertical-align: top;
}

.newsletter-wide .mc4wp-form {
	padding: 0;
}

.newsletter-wide .mc4wp-form-fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media only screen and (max-width: 991px) {
	.newsletter-wide__text, .newsletter-wide__form {
		width: 100%;
	}
	.newsletter-wide__form input {
		margin-left: 0;
	}
}

@media only screen and (max-width: 575px) {
	.newsletter-wide {
		padding: 70px 0 0;
	}
	.newsletter-wide .mc4wp-form-fields {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.newsletter-wide__form input {
		width: 100%;
	}
	.newsletter-wide__form input[type=submit] {
		margin-left: 0;
		margin-top: 0;
	}
}

/* Widget Newsletter 
-------------------------------------------------------*/
.sidebar .widget_mc4wp_form_widget {
	background-color: #4e3b32;
	border: none;
}

.sidebar .widget_mc4wp_form_widget .widget-title {
	color: #fff;
}

.mc4wp-form-fields input[type=email],
.mc4wp-form-fields input[type=text] {
	background-color: #fff;
	margin-bottom: 10px;
}

.mc4wp-form-fields input[type=submit] {
	background-color: #4eb56b;
	width: auto;
	height: 45px;
	border: none;
	color: #fff;
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0;
	font-size: 13px;
	padding: 0 24px;
}

.mc4wp-form-fields input[type=submit]:hover {
	opacity: .95;
}

/* Categories
-------------------------------------------------------*/
.widget_categories li {
	padding: 9px 0;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #868686;
}

.widget_categories li:first-child {
	padding-top: 0;
}

.widget_categories li:last-child {
	padding-bottom: 0;
}

.widget_categories li a {
	margin-right: 4px;
}

/* Popular Posts
-------------------------------------------------------*/
.widget-popular-posts__list > li {
	padding: 10px 0;
	border: none !important;
}

.widget-popular-posts__list > li:first-child {
	padding-top: 0;
}

.widget-popular-posts__list > li:last-child {
	padding-bottom: 0;
}

.widget-popular-posts__img-holder {
	width: 92px;
	float: left;
	margin-right: 20px;
}

@media only screen and (max-width: 575px) {
	.widget-popular-posts__img-holder {
		width: 60px;
	}
}

.widget-popular-posts__entry {
	overflow: hidden;
}

.widget-popular-posts__entry-title {
	font-size: 15px;
	line-height: 26px;
	margin-bottom: 0;
}

.widget-popular-posts__entry-date {
	color: #868686;
	display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 13px;
	white-space: nowrap;
	font-style: italic;
}

/* Tags
-------------------------------------------------------*/
.widget_tags a {
	background-color: #fff;
	padding: 11px 17px;
	line-height: 1;
	border-radius: 3px;
	margin: 0 6px 6px 0;
	font-size: 13px;
	color: #474747;
	display: inline-block;
	float: left;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.widget_tags a:hover {
	background-color: #4eb56b;
	color: #fff;
}

/*-------------------------------------------------------*/
/* Page title
/*-------------------------------------------------------*/
.page-title {
	margin-bottom: 30px;
	padding-top: 38px;
	border-top: 1px solid #dededb;
}

/*-------------------------------------------------------*/
/* Contact Page
/*-------------------------------------------------------*/
.contact-name,
.contact-email,
.contact-subject {
	max-width: 226px;
}

/*-------------------------------------------------------*/
/* Navigation
/*-------------------------------------------------------*/
.nav {
	min-height: 50px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 120;
	position: relative;
	-webkit-transition: height 0.3s ease-in-out;
	transition: height 0.3s ease-in-out;
	background-color: #fff;
	/* Dropdowns (large screen) */
}

.nav__wrap {
	text-align: center;
}

@media only screen and (min-width: 992px) {
	.nav {
		height: 72px;
	}
}

.nav__menu, .nav__dropdown-menu {
	list-style: none;
}

.nav__menu {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.nav__menu > li {
	position: relative;
}

.nav__menu > li > a {
	font-family: "Cantata One", serif;
	color: #474747;
	font-size: 15px;
	padding: 0 13px;
	line-height: 72px !important;
	display: block;
	position: relative;
}

.nav__menu > li > a:hover {
	color: #4eb56b;
}

@media only screen and (max-width: 991px) {
	.nav__menu > li > a {
		font-size: 14px;
	}
}

.nav__menu > .active > a {
	color: #4eb56b;
}

.nav__menu > li:last-child > a {
	padding-right: 0;
}

.nav__menu > li:first-child > a {
	padding-left: 0;
}

.nav__dropdown-menu > li > a,
.nav__dropdown-submenu > .nav__dropdown-menu > li > a {
	font-family: "Cantata One", serif;
}

@media only screen and (min-width: 992px) {
	.nav__wrap {
		display: block !important;
		height: auto !important;
	}
	.nav__wrap--text-center {
		text-align: center;
	}
	.nav__menu > li {
		display: inline-block;
		text-align: center;
	}
	.nav__dropdown-menu,
	.nav__dropdown-submenu > .nav__dropdown-menu {
		position: absolute;
		top: 100%;
		z-index: 1000;
		min-width: 220px;
		width: 100%;
		text-align: left;
		list-style: none;
		border-left: 1px solid #e5e5e3;
		border-right: 1px solid #e5e5e3;
		-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
		        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
		background-color: #fff;
		background-clip: padding-box;
		display: block;
		visibility: hidden;
		opacity: 0;
		-webkit-transition: all 0.1s ease-in-out;
		transition: all 0.1s ease-in-out;
	}
	.nav__dropdown-menu > li > a,
	.nav__dropdown-submenu > .nav__dropdown-menu > li > a {
		color: #474747;
		padding: 10px 18px;
		font-size: 14px;
		line-height: 1.3;
		display: block;
		border-top: 1px solid #ececeb;
	}
	.nav__dropdown-menu > li > a:hover,
	.nav__dropdown-submenu > .nav__dropdown-menu > li > a:hover {
		color: #4eb56b;
	}
	.nav__dropdown-menu.hide-dropdown {
		visibility: hidden !important;
		opacity: 0 !important;
	}
	.nav__dropdown-menu--right {
		right: 0;
	}
	.nav__dropdown:hover > .nav__dropdown-menu,
	.nav__dropdown-submenu:hover > .nav__dropdown-menu {
		opacity: 1;
		visibility: visible;
	}
	.nav__dropdown-submenu {
		position: relative;
	}
	.nav__dropdown-submenu .nav__dropdown-menu {
		left: 100%;
		top: 0;
	}
	.nav__dropdown-submenu > a:after {
		font-family: "ui-icons";
		position: absolute;
		content: "\e876";
		font-size: 8px;
		right: 20px;
		line-height: 21px;
		color: #474747;
	}
	.nav__dropdown-trigger {
		display: none;
	}
}

.mobile body {
	cursor: pointer;
}

/* Logo
-------------------------------------------------------*/
.logo {
	max-height: 52px;
}

.logo-wrap {
	padding: 49px 0;
	text-align: center;
}

/* Nav Flexbox
-------------------------------------------------------*/
header .flex-parent {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

@media only screen and (max-width: 991px) {
	header .flex-parent {
		display: block;
	}
}

.nav__wrap {
	-webkit-box-flex: 4;
	    -ms-flex: 4 0 0px;
	        flex: 4 0 0;
}

header .flex-child.flex-right {
	text-align: right;
}

.nav--align-right {
	margin-left: auto;
}

.nav--align-left {
	margin-right: auto;
}

@media only screen and (min-width: 992px) {
	.nav--align-left {
		margin-left: 60px;
	}
}

/* Nav Search
-------------------------------------------------------*/
.nav__search {
	text-align: right;
}

.nav__search .search-form {
	line-height: 72px;
}

.nav__search .search-input {
	border: none;
	margin-bottom: 0;
	max-width: 180px;
	background-color: transparent;
}

.nav__search .search-button {
	position: absolute;
	right: 0;
	top: 0;
	background: none;
	border: 0;
	height: auto;
	width: auto;
	font-size: 20px;
	vertical-align: middle;
	color: #474747 !important;
}

/* Mobile Search */
.nav__search-mobile .search-input {
	height: 46px;
	padding: 0;
	border: none;
	background-color: transparent;
	margin-bottom: 0;
	font-family: "Roboto", sans-serif;
	font-size: 13px;
	color: #474747;
}

.nav__search-mobile .search-input:focus {
	background-color: transparent;
}

.nav__search-mobile .search-button {
	width: 46px;
	height: 46px;
	padding-left: 26px;
	font-size: 14px;
}

/* Nav Socials
-------------------------------------------------------*/
.nav__socials {
	line-height: 72px;
}

/* Nav Icon Toggle (mobile nav)
-------------------------------------------------------*/
.nav__icon-toggle {
	position: relative;
	cursor: pointer;
	top: 50%;
	float: right;
	margin-top: -16px;
	padding: 9px 0 9px 10px;
	background-color: transparent;
	border: none;
	z-index: 50;
}

@media only screen and (min-width: 992px) {
	.nav__icon-toggle {
		display: none;
	}
}

.nav__icon-toggle:focus {
	outline: none;
}

.nav__icon-toggle-bar {
	background-color: #4e3b32;
	width: 18px;
	display: block;
	height: 2px;
	border-radius: 1px;
	margin-bottom: 4px;
}

.nav__icon-toggle-bar:last-child {
	margin-bottom: 0;
}

.nav__icon-toggle:focus .nav__icon-toggle-bar,
.nav__icon-toggle:hover .nav__icon-toggle-bar {
	background-color: #4eb56b;
}

/* Sticky Nav
-------------------------------------------------------*/
@media only screen and (min-width: 992px) {
	.nav--sticky {
		position: fixed;
		height: 72px;
		left: 0;
		right: 0;
		top: 0;
		background-color: inherit;
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
}

.nav--always-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

/* Go to Top
-------------------------------------------------------*/
#back-to-top {
	display: block;
	z-index: 100;
	width: 34px;
	height: 34px;
	text-align: center;
	font-size: 12px;
	position: fixed;
	bottom: -34px;
	right: 20px;
	line-height: 32px;
	background-color: #fff;
	border: 1px solid #e5e5e3;
	-webkit-box-shadow: 1px 1.732px 12px 0px rgba(0, 0, 0, 0.03);
	        box-shadow: 1px 1.732px 12px 0px rgba(0, 0, 0, 0.03);
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

#back-to-top i {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#back-to-top a {
	display: block;
	color: #474747;
}

#back-to-top.show {
	bottom: 20px;
}

#back-to-top:hover {
	background-color: #4eb56b;
}

#back-to-top:hover i {
	color: #fff;
}

/*-------------------------------------------------------*/
/* Nav Mobile Styles
/*-------------------------------------------------------*/
@media only screen and (max-width: 991px) {
	.nav__header {
		height: 50px;
	}
	.nav__wrap {
		text-align: left;
	}
	.nav__menu {
		display: block;
	}
	.nav__menu li a {
		padding: 0;
		line-height: 46px !important;
		height: 46px;
		display: block;
		font-size: 14px;
		border-bottom: 1px solid #e5e5e3;
	}
	.nav__dropdown-menu a {
		color: #474747;
	}
	.nav__dropdown-menu a:hover {
		color: #4eb56b;
	}
	.nav__dropdown-menu > li > a {
		padding-left: 10px;
	}
	.nav__dropdown-menu > li > ul > li > a {
		padding-left: 20px;
	}
	.nav__dropdown-trigger {
		display: block;
		width: 20px;
		height: 46px;
		line-height: 46px;
		font-size: 12px;
		text-align: center;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 50;
		cursor: pointer;
	}
	.nav__dropdown-submenu {
		position: relative;
	}
	.nav__dropdown-menu {
		display: none;
		width: 100% !important;
	}
	.nav__dropdown-trigger.active + .nav__dropdown-menu {
		display: block;
	}
	.logo-wrap {
		padding: 30px 0;
	}
	.logo {
		max-height: 36px;
	}
	.nav__socials {
		line-height: 50px;
		position: absolute;
		top: 0;
	}
}

/*-------------------------------------------------------*/
/* Footer
/*-------------------------------------------------------*/
.footer {
	background-color: #fff;
}

.footer__widgets {
	padding: 40px 0;
}

/* Bottom Footer
-------------------------------------------------------*/
.footer-bottom {
	padding: 20px 0;
}

.copyright {
	display: block;
	font-size: 13px;
	padding: 10px;
	color: #868686;
}

.copyright a {
	color: #4eb56b;
}

.copyright a:hover {
	color: #4eb56b;
	opacity: .90;
}

/*-------------------------------------------------------*/
/* Spacings
/*-------------------------------------------------------*/
.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-10 {
	margin-top: 10px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-60 {
	margin-top: 60px;
}

.mt-70 {
	margin-top: 70px;
}

.mt-80 {
	margin-top: 80px;
}

.mt-90 {
	margin-top: 90px;
}

.mt-100 {
	margin-top: 100px;
}

.mt-110 {
	margin-top: 110px;
}

.mt-120 {
	margin-top: 120px;
}

.mt-130 {
	margin-top: 130px;
}

.mt-140 {
	margin-top: 140px;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-90 {
	margin-bottom: 90px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mb-110 {
	margin-bottom: 110px;
}

.mb-120 {
	margin-bottom: 120px;
}

.mb-130 {
	margin-bottom: 130px;
}

.mb-140 {
	margin-bottom: 140px;
}

.pt-0 {
	padding-top: 0;
}

.pt-10 {
	padding-top: 10px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-50 {
	padding-top: 50px;
}

.pt-60 {
	padding-top: 60px;
}

.pt-70 {
	padding-top: 70px;
}

.pt-80 {
	padding-top: 80px;
}

.pt-90 {
	padding-top: 90px;
}

.pt-100 {
	padding-top: 100px;
}

.pt-110 {
	padding-top: 110px;
}

.pt-120 {
	padding-top: 120px;
}

.pt-130 {
	padding-top: 130px;
}

.pt-140 {
	padding-top: 140px;
}

.pt-150 {
	padding-top: 150px;
}

.pt-160 {
	padding-top: 160px;
}

.pt-170 {
	padding-top: 170px;
}

.pt-180 {
	padding-top: 180px;
}

.pt-190 {
	padding-top: 190px;
}

.pt-200 {
	padding-top: 200px;
}

.pb-0 {
	padding-bottom: 0;
}

.pb-10 {
	padding-bottom: 10px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-90 {
	padding-bottom: 90px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pb-110 {
	padding-bottom: 110px;
}

.pb-120 {
	padding-bottom: 120px;
}

.pb-130 {
	padding-bottom: 130px;
}

.pb-140 {
	padding-bottom: 140px;
}

.pb-150 {
	padding-bottom: 150px;
}

.pb-160 {
	padding-bottom: 160px;
}

.pb-170 {
	padding-bottom: 170px;
}

.pb-180 {
	padding-bottom: 180px;
}

.pb-190 {
	padding-bottom: 190px;
}

.pb-200 {
	padding-bottom: 200px;
}

@media only screen and (max-width: 1199px) {
	.mt-lg-0 {
		margin-top: 0 !important;
	}
	.mt-lg-10 {
		margin-top: 10px;
	}
	.mt-lg-20 {
		margin-top: 20px;
	}
	.mt-lg-30 {
		margin-top: 30px;
	}
	.mt-lg-40 {
		margin-top: 40px;
	}
	.mt-lg-50 {
		margin-top: 50px;
	}
	.mt-lg-60 {
		margin-top: 60px;
	}
	.mt-lg-70 {
		margin-top: 70px;
	}
	.mt-lg-80 {
		margin-top: 80px;
	}
	.mt-lg-90 {
		margin-top: 90px;
	}
	.mt-lg-100 {
		margin-top: 100px;
	}
	.mt-lg-110 {
		margin-top: 110px;
	}
	.mt-lg-120 {
		margin-top: 120px;
	}
	.mt-lg-130 {
		margin-top: 130px;
	}
	.mt-lg-140 {
		margin-top: 140px;
	}
	.mb-lg-0 {
		margin-bottom: 0 !important;
	}
	.mb-lg-10 {
		margin-bottom: 10px;
	}
	.mb-lg-20 {
		margin-bottom: 20px;
	}
	.mb-lg-30 {
		margin-bottom: 30px;
	}
	.mb-lg-40 {
		margin-bottom: 40px;
	}
	.mb-lg-50 {
		margin-bottom: 50px;
	}
	.mb-lg-60 {
		margin-bottom: 60px;
	}
	.mb-lg-70 {
		margin-bottom: 70px;
	}
	.mb-lg-80 {
		margin-bottom: 80px;
	}
	.mb-lg-90 {
		margin-bottom: 90px;
	}
	.mb-lg-100 {
		margin-bottom: 100px;
	}
	.mb-lg-110 {
		margin-bottom: 110px;
	}
	.mb-lg-120 {
		margin-bottom: 120px;
	}
	.mb-lg-130 {
		margin-bottom: 130px;
	}
	.mb-lg-140 {
		margin-bottom: 140px;
	}
	.pt-lg-0 {
		padding-top: 0;
	}
	.pt-lg-10 {
		padding-top: 10px;
	}
	.pt-lg-20 {
		padding-top: 20px;
	}
	.pt-lg-30 {
		padding-top: 30px;
	}
	.pt-lg-40 {
		padding-top: 40px;
	}
	.pt-lg-50 {
		padding-top: 50px;
	}
	.pt-lg-60 {
		padding-top: 60px;
	}
	.pt-lg-70 {
		padding-top: 70px;
	}
	.pt-lg-80 {
		padding-top: 80px;
	}
	.pt-lg-90 {
		padding-top: 90px;
	}
	.pt-lg-100 {
		padding-top: 100px;
	}
	.pt-lg-110 {
		padding-top: 110px;
	}
	.pt-lg-120 {
		padding-top: 120px;
	}
	.pt-lg-130 {
		padding-top: 130px;
	}
	.pt-lg-140 {
		padding-top: 140px;
	}
	.pb-lg-0 {
		padding-bottom: 0;
	}
	.pb-lg-10 {
		padding-bottom: 10px;
	}
	.pb-lg-20 {
		padding-bottom: 20px;
	}
	.pb-lg-30 {
		padding-bottom: 30px;
	}
	.pb-lg-40 {
		padding-bottom: 40px;
	}
	.pb-lg-50 {
		padding-bottom: 50px;
	}
	.pb-lg-60 {
		padding-bottom: 60px;
	}
	.pb-lg-70 {
		padding-bottom: 70px;
	}
	.pb-lg-80 {
		padding-bottom: 80px;
	}
	.pb-lg-90 {
		padding-bottom: 90px;
	}
	.pb-lg-100 {
		padding-bottom: 100px;
	}
	.pb-lg-110 {
		padding-bottom: 110px;
	}
	.pb-lg-120 {
		padding-bottom: 120px;
	}
	.pb-lg-130 {
		padding-bottom: 130px;
	}
	.pb-lg-140 {
		padding-bottom: 140px;
	}
}

@media only screen and (max-width: 991px) {
	.mt-md-0 {
		margin-top: 0 !important;
	}
	.mt-md-10 {
		margin-top: 10px;
	}
	.mt-md-20 {
		margin-top: 20px;
	}
	.mt-md-30 {
		margin-top: 30px;
	}
	.mt-md-40 {
		margin-top: 40px;
	}
	.mt-md-50 {
		margin-top: 50px;
	}
	.mt-md-60 {
		margin-top: 60px;
	}
	.mt-md-70 {
		margin-top: 70px;
	}
	.mt-md-80 {
		margin-top: 80px;
	}
	.mt-md-90 {
		margin-top: 90px;
	}
	.mt-md-100 {
		margin-top: 100px;
	}
	.mt-md-110 {
		margin-top: 110px;
	}
	.mt-md-120 {
		margin-top: 120px;
	}
	.mt-md-130 {
		margin-top: 130px;
	}
	.mt-md-140 {
		margin-top: 140px;
	}
	.mb-md-0 {
		margin-bottom: 0 !important;
	}
	.mb-md-10 {
		margin-bottom: 10px;
	}
	.mb-md-20 {
		margin-bottom: 20px;
	}
	.mb-md-30 {
		margin-bottom: 30px;
	}
	.mb-md-40 {
		margin-bottom: 40px;
	}
	.mb-md-50 {
		margin-bottom: 50px;
	}
	.mb-md-60 {
		margin-bottom: 60px;
	}
	.mb-md-70 {
		margin-bottom: 70px;
	}
	.mb-md-80 {
		margin-bottom: 80px;
	}
	.mb-md-90 {
		margin-bottom: 90px;
	}
	.mb-md-100 {
		margin-bottom: 100px;
	}
	.mb-md-110 {
		margin-bottom: 110px;
	}
	.mb-md-120 {
		margin-bottom: 120px;
	}
	.mb-md-130 {
		margin-bottom: 130px;
	}
	.mb-md-140 {
		margin-bottom: 140px;
	}
	.pt-md-0 {
		padding-top: 0;
	}
	.pt-md-10 {
		padding-top: 10px;
	}
	.pt-md-20 {
		padding-top: 20px;
	}
	.pt-md-30 {
		padding-top: 30px;
	}
	.pt-md-40 {
		padding-top: 40px;
	}
	.pt-md-50 {
		padding-top: 50px;
	}
	.pt-md-60 {
		padding-top: 60px;
	}
	.pt-md-70 {
		padding-top: 70px;
	}
	.pt-md-80 {
		padding-top: 80px;
	}
	.pt-md-90 {
		padding-top: 90px;
	}
	.pt-md-100 {
		padding-top: 100px;
	}
	.pt-md-110 {
		padding-top: 110px;
	}
	.pt-md-120 {
		padding-top: 120px;
	}
	.pt-md-130 {
		padding-top: 130px;
	}
	.pt-md-140 {
		padding-top: 140px;
	}
	.pt-md-150 {
		padding-top: 150px;
	}
	.pb-md-0 {
		padding-bottom: 0;
	}
	.pb-md-10 {
		padding-bottom: 10px;
	}
	.pb-md-20 {
		padding-bottom: 20px;
	}
	.pb-md-30 {
		padding-bottom: 30px;
	}
	.pb-md-40 {
		padding-bottom: 40px;
	}
	.pb-md-50 {
		padding-bottom: 50px;
	}
	.pb-md-60 {
		padding-bottom: 60px;
	}
	.pb-md-70 {
		padding-bottom: 70px;
	}
	.pb-md-80 {
		padding-bottom: 80px;
	}
	.pb-md-90 {
		padding-bottom: 90px;
	}
	.pb-md-100 {
		padding-bottom: 100px;
	}
	.pb-md-110 {
		padding-bottom: 110px;
	}
	.pb-md-120 {
		padding-bottom: 120px;
	}
	.pb-md-130 {
		padding-bottom: 130px;
	}
	.pb-md-140 {
		padding-bottom: 140px;
	}
	.pb-md-150 {
		padding-bottom: 150px;
	}
}

@media only screen and (max-width: 767px) {
	.mt-sm-0 {
		margin-top: 0 !important;
	}
	.mt-sm-10 {
		margin-top: 10px;
	}
	.mt-sm-20 {
		margin-top: 20px;
	}
	.mt-sm-30 {
		margin-top: 30px;
	}
	.mt-sm-40 {
		margin-top: 40px;
	}
	.mt-sm-50 {
		margin-top: 50px;
	}
	.mt-sm-60 {
		margin-top: 60px;
	}
	.mt-sm-70 {
		margin-top: 70px;
	}
	.mt-sm-80 {
		margin-top: 80px;
	}
	.mt-sm-90 {
		margin-top: 90px;
	}
	.mt-sm-100 {
		margin-top: 100px;
	}
	.mt-sm-110 {
		margin-top: 110px;
	}
	.mt-sm-120 {
		margin-top: 120px;
	}
	.mt-sm-130 {
		margin-top: 130px;
	}
	.mt-sm-140 {
		margin-top: 140px;
	}
	.mb-sm-0 {
		margin-bottom: 0 !important;
	}
	.mb-sm-10 {
		margin-bottom: 10px;
	}
	.mb-sm-20 {
		margin-bottom: 20px;
	}
	.mb-sm-30 {
		margin-bottom: 30px;
	}
	.mb-sm-40 {
		margin-bottom: 40px;
	}
	.mb-sm-50 {
		margin-bottom: 50px;
	}
	.mb-sm-60 {
		margin-bottom: 60px;
	}
	.mb-sm-70 {
		margin-bottom: 70px;
	}
	.mb-sm-80 {
		margin-bottom: 80px;
	}
	.mb-sm-90 {
		margin-bottom: 90px;
	}
	.mb-sm-100 {
		margin-bottom: 100px;
	}
	.mb-sm-110 {
		margin-bottom: 110px;
	}
	.mb-sm-120 {
		margin-bottom: 120px;
	}
	.mb-sm-130 {
		margin-bottom: 130px;
	}
	.mb-sm-140 {
		margin-bottom: 140px;
	}
	.pt-sm-0 {
		padding-top: 0;
	}
	.pt-sm-10 {
		padding-top: 10px;
	}
	.pt-sm-20 {
		padding-top: 20px;
	}
	.pt-sm-30 {
		padding-top: 30px;
	}
	.pt-sm-40 {
		padding-top: 40px;
	}
	.pt-sm-50 {
		padding-top: 50px;
	}
	.pt-sm-60 {
		padding-top: 60px;
	}
	.pt-sm-70 {
		padding-top: 70px;
	}
	.pt-sm-80 {
		padding-top: 80px;
	}
	.pt-sm-90 {
		padding-top: 90px;
	}
	.pt-sm-100 {
		padding-top: 100px;
	}
	.pt-sm-110 {
		padding-top: 110px;
	}
	.pt-sm-120 {
		padding-top: 120px;
	}
	.pt-sm-130 {
		padding-top: 130px;
	}
	.pt-sm-140 {
		padding-top: 140px;
	}
	.pb-sm-0 {
		padding-bottom: 0;
	}
	.pb-sm-10 {
		padding-bottom: 10px;
	}
	.pb-sm-20 {
		padding-bottom: 20px;
	}
	.pb-sm-30 {
		padding-bottom: 30px;
	}
	.pb-sm-40 {
		padding-bottom: 40px;
	}
	.pb-sm-50 {
		padding-bottom: 50px;
	}
	.pb-sm-60 {
		padding-bottom: 60px;
	}
	.pb-sm-70 {
		padding-bottom: 70px;
	}
	.pb-sm-80 {
		padding-bottom: 80px;
	}
	.pb-sm-90 {
		padding-bottom: 90px;
	}
	.pb-sm-100 {
		padding-bottom: 100px;
	}
	.pb-sm-110 {
		padding-bottom: 110px;
	}
	.pb-sm-120 {
		padding-bottom: 120px;
	}
	.pb-sm-130 {
		padding-bottom: 130px;
	}
	.pb-sm-140 {
		padding-bottom: 140px;
	}
}

@media only screen and (max-width: 480px) {
	.mt-xs-0 {
		margin-top: 0 !important;
	}
	.mt-xs-10 {
		margin-top: 10px;
	}
	.mt-xs-20 {
		margin-top: 20px;
	}
	.mt-xs-30 {
		margin-top: 30px;
	}
	.mt-xs-40 {
		margin-top: 40px;
	}
	.mt-xs-50 {
		margin-top: 50px;
	}
	.mt-xs-60 {
		margin-top: 60px;
	}
	.mt-xs-70 {
		margin-top: 70px;
	}
	.mt-xs-80 {
		margin-top: 80px;
	}
	.mt-xs-90 {
		margin-top: 90px;
	}
	.mt-xs-100 {
		margin-top: 100px;
	}
	.mt-xs-110 {
		margin-top: 110px;
	}
	.mt-xs-120 {
		margin-top: 120px;
	}
	.mt-xs-130 {
		margin-top: 130px;
	}
	.mt-xs-140 {
		margin-top: 140px;
	}
	.mb-xs-0 {
		margin-bottom: 0 !important;
	}
	.mb-xs-10 {
		margin-bottom: 10px;
	}
	.mb-xs-20 {
		margin-bottom: 20px;
	}
	.mb-xs-30 {
		margin-bottom: 30px;
	}
	.mb-xs-40 {
		margin-bottom: 40px;
	}
	.mb-xs-50 {
		margin-bottom: 50px;
	}
	.mb-xs-60 {
		margin-bottom: 60px;
	}
	.mb-xs-70 {
		margin-bottom: 70px;
	}
	.mb-xs-80 {
		margin-bottom: 80px;
	}
	.mb-xs-90 {
		margin-bottom: 90px;
	}
	.mb-xs-100 {
		margin-bottom: 100px;
	}
	.mb-xs-110 {
		margin-bottom: 110px;
	}
	.mb-xs-120 {
		margin-bottom: 120px;
	}
	.mb-xs-130 {
		margin-bottom: 130px;
	}
	.mb-xs-140 {
		margin-bottom: 140px;
	}
	.pt-xs-0 {
		padding-top: 0;
	}
	.pt-xs-10 {
		padding-top: 10px;
	}
	.pt-xs-20 {
		padding-top: 20px;
	}
	.pt-xs-30 {
		padding-top: 30px;
	}
	.pt-xs-40 {
		padding-top: 40px;
	}
	.pt-xs-50 {
		padding-top: 50px;
	}
	.pt-xs-60 {
		padding-top: 60px;
	}
	.pt-xs-70 {
		padding-top: 70px;
	}
	.pt-xs-80 {
		padding-top: 80px;
	}
	.pt-xs-90 {
		padding-top: 90px;
	}
	.pt-xs-100 {
		padding-top: 100px;
	}
	.pt-xs-110 {
		padding-top: 110px;
	}
	.pt-xs-120 {
		padding-top: 120px;
	}
	.pt-xs-130 {
		padding-top: 130px;
	}
	.pt-xs-140 {
		padding-top: 140px;
	}
	.pb-xs-0 {
		padding-bottom: 0;
	}
	.pb-xs-10 {
		padding-bottom: 10px;
	}
	.pb-xs-20 {
		padding-bottom: 20px;
	}
	.pb-xs-30 {
		padding-bottom: 30px;
	}
	.pb-xs-40 {
		padding-bottom: 40px;
	}
	.pb-xs-50 {
		padding-bottom: 50px;
	}
	.pb-xs-60 {
		padding-bottom: 60px;
	}
	.pb-xs-70 {
		padding-bottom: 70px;
	}
	.pb-xs-80 {
		padding-bottom: 80px;
	}
	.pb-xs-90 {
		padding-bottom: 90px;
	}
	.pb-xs-100 {
		padding-bottom: 100px;
	}
	.pb-xs-110 {
		padding-bottom: 110px;
	}
	.pb-xs-120 {
		padding-bottom: 120px;
	}
	.pb-xs-130 {
		padding-bottom: 130px;
	}
	.pb-xs-140 {
		padding-bottom: 140px;
	}
}

/*-------------------------------------------------------*/
/* Helper Classes
/*-------------------------------------------------------*/
.box-shadow {
	-webkit-box-shadow: 0px 1px 1px rgba(72, 78, 85, 0.1);
	        box-shadow: 0px 1px 1px rgba(72, 78, 85, 0.1);
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.box-shadow:hover {
	-webkit-box-shadow: 0 20px 40px rgba(72, 78, 85, 0.1);
	        box-shadow: 0 20px 40px rgba(72, 78, 85, 0.1);
	-webkit-transform: translateY(-15px);
	transform: translateY(-15px);
}

.hover-scale img {
	-webkit-transition: all 2s ease-out;
	transition: all 2s ease-out;
}

.hover-scale:hover img {
	-webkit-transform: scale(1.5, 1.5);
	transform: scale(1.5, 1.5);
}

.hover-fade img {
	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: relative;
}

.hover-fade:hover img {
	opacity: .8;
}

/* Bottom Gradient
-------------------------------------------------------*/
.bottom-gradient:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 50%;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	/* Old browsers */
	/* FF3.6+ */
	/* Chrome,Safari4+ */
	/* Chrome10+,Safari5.1+ */
	/* Opera 11.10+ */
	/* IE10+ */
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(transparent));
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
	/* IE6-9 */
}

/* Section Dividers
-------------------------------------------------------*/
.top-divider {
	border-top: 1px solid #e5e5e3;
}

.bottom-divider {
	border-bottom: 1px solid #e5e5e3;
}

/*# sourceMappingURL=style.css.map */
