/* Color Tokens */
.primary {
	color: #B9A06F; /* $primary */
}

.secondary {
	color: #3F6400; /* $secondary */
}

.tertiary {
	color: #BAB7AB; /* $tertiary */
}

.light {
	color: #F2F0EE; /* $light */
}

.dark {
	color: #211F1C; /* $dark */
}

.white {
	color: #FFFFFF; /* $white */
}
/* End Color Tokens */

/* Blog Area Styles */
.blog-area {
	background-image: url(/images/blog-bg.jpg);
	background-size: cover;
	background-position: 50%;
}

.blog-area .main {
}

.blog-area header {
}

.blog-area header h2 {
	color: #FFFFFF; /* $white */
}

.blog-area .blog-list {
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}

.no-flexbox .blog-area .blog-list {
	display: table;
	width: 100%;
}

.blog-area .blog-list li {
	-webkit-flex: 1 1 31%;
	-ms-flex: 1 1 31%;
	flex: 1 1 31%;
	margin: 0 .5%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.no-flexbox .blog-area .blog-list li {
	display: table-cell;
	width: 33%;
	padding: 0 1%;
}

.blog-area .blog-list li a {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: #FFFFFF; /* $white */
	padding: 1.5em 8%;
	width: 100%;
	color: #3F6400; /* $secondary */
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	border: none;
	border-top: solid .5em #B9A06F; /* $primary */
}

.no-flexbox .blog-area .blog-list li a {
	display: block;
}

.blog-area .blog-list li a time {
	font-weight: 700;
	font-size: 1em;
	display: block;
	color: #3F6400; /* $secondary */
}

.blog-area .blog-list li a h3 {
	font-size: 1em;
	color: #211F1C; /* $dark */
	-webkit-transition: color .4s ease 0s;
	-moz-transition: color .4s ease 0s;
	-o-transition: color .4s ease 0s;
	transition: color .4s ease 0s;
	font-weight: 400;
	margin-top: .775em;
	font-family: 'Open Sans', sans-serif;
	text-transform: none;
}

.no-touch .blog-area .blog-list li a:hover h3 {
	color: #B9A06F; /* $primary */
}

.blog-area .btn-con {
	text-align: center;
	margin-top: 2.5em;
}

.blog-area .btn-con .btn {
}
/* End Blog Area Styles */

/* 1000px Responsive */
@media screen and (max-width:1000px) {
	body {
	}

	.blog-area .blog-list li:nth-child(n+3) {
		display: none;
	}
}
/* End 1000px Responsive */

/* 650px Responsive */
@media screen and (max-width:650px) {
	body {
	}

	.blog-area .blog-list li:nth-child(n+2) {
		display: none;
	}

	.blog-area .btn-con {
		margin-top: 1.5em;
	}

	.blog-area .blog-list li a h3 {
		margin-top: .5em;
	}
}
/* End 650px Responsive */

/* 550px Responsive */
@media screen and (max-width:550px) {
	body {
	}

	.blog-area .blog-list li a time {
		font-size: 1.111em;
	}

	.no-touch .blog-area .blog-list li a h3 {
		font-size: 1.111em;
	}
}
/* End 550px Responsive */
