<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/***********************************************************************************
 *	+ PAGE WRAPPER
 ***********************************************************************************/
 
 	#main-container {
		overflow: hidden;
		background-color: #fff; 

	}
	
	.boxed {
		background: #000 repeat top left;
	}
	
	.boxed #main-container {
		position: relative;
		max-width: 1200px;
		margin: 0 auto;
		box-shadow: 0 0 5px #000;
	}
	
	.boxed #header-sticky {
		max-width: 1200px;
	}
	
	@media (min-width: 1400px) {
			
		.boxed #main-container,
		.boxed #header-sticky {
			max-width: 1350px;
		}
		
	}
	

	
/***********************************************************************************
 *	+ HEADER TOP
 ***********************************************************************************/
	
	#header-top {
		padding: 10px 0 9px;
		background: #bdbdbd;
	}
	

	
		@media (max-width: 1200px) {
		
		#header-top{
		padding: 10px 0 9px;
		background: #bdbdbd;

		}
		
	}
	
	
/***********************************************************************************
 *	+ HEADER
 ***********************************************************************************/
 	
	#header {
		position: relative;
		padding: 0 30px;
		background: #501a26;
	}
	
	#header [class^="col-"] {
		position: static;
	}
	
	@media (min-width: 1200px) {
		
		#header-container [class^="col-"] {
			position: relative;
		}
		
	}
	
	@media (max-width: 991px) {
		
		#header {
			padding: 0;
		}
		
	}
	
/***********************************************************************************
 *	- LOGO
 ***********************************************************************************/

	#logo {
		max-width: 100%;
float:left;
	}
	
	#logo a {
		display: inline-block;
		max-width: 100%;
		text-align: center;
	}
	
	@media (max-width: 767px) {
		
		#logo {
			margin-right: 40px;
            max-width: 90%;
		}
		
	}

/***********************************************************************************
 *	- MENU
 ***********************************************************************************/
 	
 	.menu,
	.menu ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	
	.menu {
		float: left;
	}
	
	.menu &gt; li { 
		float: left; 
	}
	
	.menu li a {
		display: block;
		padding: 5px 25px;
		margin: 5px 0;
		color: #d9d9d9;
		font-size: 12px;
		line-height: 24px;
		text-decoration: none;
		text-transform: uppercase;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.menu &gt; li &gt; a {
		position: relative;
		padding-left:20px;
		padding-right:10px;
		padding-top:10px;
		padding-bottom:10px;
		margin: 0;
		margin-right: 20px;
		font-size: 14px;
font-weight: bold;	
		line-height: 28px;
	}
	
	.menu &gt; li &gt; a:first-child {
		padding-left: 0;
	}
	
	.menu &gt; li:last-child &gt; a {
		margin-right: 0;
	}
	
	.menu li.dropdown ul {
		position: absolute;
		z-index: 2000;
		top: 100%;
		left: 0;
		display: none;
		width: 210px;
border-bottom: 1px solid #333;
border-left: 1px solid #333;
border-right: 1px solid #333;
		background-color: #501a26;
	}
	
	.menu li.dropdown ul li a {
		position: relative;
	}
	
	.menu li.dropdown ul li a:before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: -1px;
		opacity: 0;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.menu li.dropdown ul li a:hover:before,
	.menu li.dropdown ul li.sfHover &gt; a:before {
		opacity: 1;
	}
	
	.menu li.dropdown ul ul {
		top: -6px;
		left: 100%;
	}
	
	.menu li.dropdown:hover &gt; ul {
		display: block;
	}
	
	.menu li.megamenu .megamenu-container {
		position: absolute;
		z-index: 2000;
		top: 100%;
		left: 0;
		display: none;
		padding: 20px 0;
		width: 100%;
		border: 1px solid #333;
		background-color: #501a26;
	}
	
	.megamenu-container .section {
		float: left;
		width: 25%;
		border-right: 1px solid #333;
	}
	
	.megamenu-container .section:last-child {
		border-right: none;
	}
	
	.megamenu-container.col-2 .section { 
		width: 50%; 
	}
	
	.megamenu-container.col-3 .section { 
		width: 33.33333333%; 
	}
	
	.megamenu-container.col-4 .section { 
		width: 25%; 
	}
	
	.megamenu-container.col-5 .section { 
		width: 20%; 
	}
	
	.menu li.megamenu ul li a {
		position: relative;
	}
	
	.menu li.megamenu ul li a:before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: -1px;
		border-left: 5px solid #93b062;
		opacity: 0;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.menu li.megamenu ul li a:hover:before {
		opacity: 1;
	}
	
	.menu li.megamenu:hover &gt; .megamenu-container { 
		display: block; 
	}
	
	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 50%;
		right: -5px;
		margin-top: -3px;
		font-family: "FontAwesome";
		content: "\f107";
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
		
	.sf-arrows &gt; li:hover &gt; .sf-with-ul:after {}
		
	.sf-arrows ul .sf-with-ul:after {
		right: 15px;
		content: "\f105";
	}
	
	.sf-arrows ul li:hover &gt; .sf-with-ul:after {}
	
	.menu li a:hover, 
	.menu li.active &gt; a, 
	.menu li.sfHover &gt; a {
		color: #fff;
		text-decoration: none;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
	
		.menu {
			display: none;
		}
		
	}
	
	@media (max-width: 767px) {
	
		.menu {
			display: none;
		}
		
	}
	
/***********************************************************************************
 *	- MOBILE MENU
 ***********************************************************************************/	
	
	#mobile-menu-button {
		position: absolute;
		top: -42px;
		right: 15px;
		display: none;
		font-size: 24px;
		line-height: 24px;
		color: #FFFFFF;
		text-decoration: none;
	}
	
	#mobile-menu-button:hover,
	#mobile-menu-button:focus {
		color: #501a26;
	}
	
	#mobile-menu,
	#mobile-menu ul {
		list-style: none;
		display: none;
		margin: 0;
		background-color: #501a26;
	}

	#mobile-menu {
		border-bottom: 1px solid #333;
	}
	
	#mobile-menu li a {
		display: block;
		padding: 10px 20px;
		border-top: 1px solid #fff;
		color: #fff;
		font-size: 12px;
		text-decoration: none;
		text-transform: uppercase;
	}

	#mobile-menu &gt; li &gt; a {
		font-size: 14px;
		font-weight: 500;
	}

	#mobile-menu ul a {
		padding-left: 40px;
	}

	#mobile-menu ul ul a {
		padding-left: 60px;
	}

	#mobile-menu .megamenu-container {
		display: none;
		margin-left: 0;
	}

	#mobile-menu .megamenu-container .section {
		float: none;
		width: 100%;
		margin-bottom: -1px;
		padding: 0 20px 20px 20px;
	}

	#mobile-menu .megamenu-container .section ul {
		display: block;
		margin: 0 -25px -20px;
	}

	#mobile-menu .megamenu-container .section ul a {
		padding-left: 40px;
	}

	#mobile-menu .megamenu-container .section &gt; ul li a:before {
		display: none;
	}

	#mobile-menu .megamenu-container .section ul li:last-child a {
		border-bottom: 1px solid #fff;
	}
	
	#mobile-menu li.dropdown &gt; a,
	#mobile-menu li.megamenu &gt; a { 
		position: relative;
	}
	
	#mobile-menu li.dropdown &gt; a:after,
	#mobile-menu li.megamenu &gt; a:after {
		position: absolute;
		top: 50%;
		right: -10px;
		font-family: "FontAwesome";
		font-size: 15px;
		content: "\f107";
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	#mobile-menu li.dropdown &gt; a.open:after,
	#mobile-menu li.megamenu &gt; a.open:after {
		content: "\f106";
	}
	
	#mobile-menu li.search a {
		display: none;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#mobile-menu-button {
			display: block;
		}
		
	}
	
	@media (max-width: 767px) {
		
		#mobile-menu-button {
			display: block;
		}
		
	}
	
 
/***********************************************************************************
 *	- STICKY
 ***********************************************************************************/
 	
	#header-sticky [class^="col-"] {
		position: static;
	}
	
	#header-sticky {
		position: fixed;
		z-index: 8000;
		top: 0;
		right: 0;
		left: 0;
		display: none;
		width: 100%;
		padding: 0 30px;
		margin: 0 auto;
		background-color: #501a26;
		box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
	}
	
	#header-sticky.header-sticky-small .menu &gt; li&gt; a {
		padding-top: 17px;
		padding-bottom: 17px;
	}
	
	#header-sticky.header-sticky-small #search-form {
		top: 4px;
	}
	
	@media (min-width: 1200px) {
		
		#header-sticky:after {
			width: 35%;
		}
		
		#header-sticky [class^="col-"] {
			position: relative;
		}
		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#header-sticky {
			visibility: hidden;
		}
		
	}
	
	@media (max-width: 767px) {
		
		#header-sticky {
			visibility: hidden;
		}
		
	}

/***********************************************************************************
 *	+ PAGE CONTENT
 ***********************************************************************************/
	
	#page-content {
		padding-bottom: 50px;
	}

/***********************************************************************************
 *	- PAGE HEADER
 ***********************************************************************************/
 	
	#page-header {
		padding: 10px 0;
		margin-bottom: 0px;
	}
	
	@media (max-width: 991px) {
		
		#page-header {
			border-top: 0px solid #e1e1e1;
		}
		
	}
	
	@media (max-width: 767px) {
		
		#page-header {
			padding-top: 25px;
		}
		
	}

/***********************************************************************************
 *	+ FOOTER
 ***********************************************************************************/
/***********************************************************************************
 *	 FOOTER
 ***********************************************************************************/

#footer-top{
	background-image: url(images/copyrightbar.png);
	background-repeat: repeat-x;
height:11px;
}
 
 	#footer {
		padding: 40px 0;
		background-color: #000000;

	background-image: url(images/grill-footer.png);
    background-position: center; 
		color: #fff;
		font-size: 14px;
		font-weight: 300;

	}



  

}
	
	#footer a {
		color: #93b062;
	}
	
	#footer a:hover {
		color: #fff;
	}
	
	#footer h1,
	#footer h2,
	#footer h3,
	#footer h4,
	#footer h5,
	#footer h6 
{
		color: #93b062;
		font-wieght:bold;
	}
#footer p{
		color: #fff;
}
#footer h3{
font-size:18px;
}
	
	#footer .widget:last-child {
		margin-bottom: 0;
	}
	
	#footer .widget-title {
		font-size: 36px;
		text-transform: none;
	}
	
	#footer .widget-tags a {
		color: #791200;
	}
	
	#footer .widget-tags a:hover {
		color: #fff;
	}
	
	#footer .widget-pages ul li,
	#footer .widget-archives ul li,
	#footer .widget-metadata ul li,
	#footer .widget-categories ul li {
		margin-bottom: 10px;
	}
	
	#footer .widget-pages ul li:last-child,
	#footer .widget-archives ul li:last-child,
	#footer .widget-metadata ul li:last-child,
	#footer .widget-categories ul li:last-child {
		margin-bottom: 0;
	}
	
	#footer .widget-pages ul li a:before,
	#footer .widget-archives ul li a:before,
	#footer .widget-metadata ul li a:before,
	#footer .widget-categories ul li a:before {
		opacity: 1;
	}
	
	#footer .widget-recent-posts ul li {
		padding-bottom: 5px;
		border-bottom: 1px solid #444;
		margin-bottom: 25px;
	}
	
	#footer .widget-recent-posts ul li:last-child {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	#footer .widget-recent-posts ul li .post-details a {
		color: #838383;
	}
	
	#footer .widget-recent-posts ul li .post-details a:hover {
		color: #93b062;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#footer .widget-pages ul li a,
		#footer .widget-archives ul li a,
		#footer .widget-metadata ul li a,
		#footer .widget-categories ul li a {
			padding-left: 0;
		}
		
		#footer .widget-pages ul li a:before,
		#footer .widget-archives ul li a:before,
		#footer .widget-metadata ul li a:before,
		#footer .widget-categories ul li a:before {
			display: none;
		}
		
	}
	
	@media (max-width: 767px) {
		
		#footer [class^="col-"] + [class^="col-"] {
			margin-top: 50px;
		}
		
	}
	
/***********************************************************************************
 *	- FOOTER BOTTOM
 ***********************************************************************************/
	
	#footer-bottom {
		padding: 10px 0;
		background-color: #501a26;
		color: #ffffff;
		font-size: 12px;
		font-weight: 300;
	}
	
	#footer-bottom a {
		color: #d9d9d9;
	}
	
	#footer-bottom a:hover {
		color: #ffffff;
	}
	
	#footer-bottom h1,
	#footer-bottom h2,
	#footer-bottom h3,
	#footer-bottom h4,
	#footer-bottom h5,
	#footer-bottom h6 {
		color: #fff;
	}
	
	#footer-bottom .widget:last-child {
		margin-bottom: 0;
	}
	
	#footer-bottom .widget-tags a {
		color: #000000;
	}
	
	#footer-bottom .widget-tags a:hover {
		color: #fff;
	}
	
	#footer-bottom .widget-social .social-media.rounded a {
		color: #fff;
	}
	
	#footer-bottom .widget-social {
		margin-top: 5px;
		text-align: right;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#footer-bottom .copyright {
			text-align: left;
		}
		
		#footer-bottom .widget-social .social-media a {
			margin-right: 8px;
		}
		
		#footer-bottom .widget-social .social-media a:last-child {
			margin-right: 0;
		}
		
	}
	
	@media (max-width: 767px) {
		
		#footer-bottom {
			text-align: center;
		}
		
		#footer-bottom [class^="col-"] + [class^="col-"] {
			margin-top: 10px;
		}
		
		#footer-bottom .widget-social .social-media {
			text-align: center;
		}
	}
	
	
/***********************************************************************************
 *	+ PAGES
 ***********************************************************************************/
/***********************************************************************************
 *	- INDEX
 ***********************************************************************************/
 


/***********************************************************************************
 *	- ABOUT
 ***********************************************************************************/
 
	.team {
		list-style: none;
		margin-bottom: 50px;
	}
	
	.team &gt; li {
		border-bottom: 1px solid #501a26;
	}
	
	.team &gt; li:last-child {
		border-bottom: none;
	}
	
	.team &gt; li .about-me {
		float: left;
		width: 50%;
		padding: 50px 0;
		margin-bottom: 0;
	}
	
	.about-me { margin-bottom: 50px; }
	
	.about-me + .about-me {

	}
	
	.about-me-image, 
	.about-me-details {
		float: left;
		width: 50%;
margin-bottom:10px;
	}

	
	.about-me-details {
		padding: 0 30px 0;
	}
	
	.about-me-details h4 {
		margin-bottom: 20px;
	}
	
	.about-me-details h4 small {
		display: block;
		margin-top: 8px;
		font-size: 14px;
		font-weight: 300;
		font-style: italic;
		color: #93b062;
	}
	
	.about-me .social-media {
		margin-bottom: 0;
	}
	
	.team &gt; li:after,
	.about-me:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}


	@media (min-width: 768px) and (max-width: 991px) {

	.team &gt; li {
			border-bottom: none;
		}
		
		.team &gt; li .about-me {
			float: none;
			width: 100%;
			border-bottom: 1px solid #d7d7d7;
		}
		
		.team &gt; li .about-me + .about-me {
			border-left: none;
		}
		
		.team &gt; li:first-child .about-me:first-child {
			padding-top: 0;
		}
		
		.team &gt; li:last-child .about-me:last-child {
			margin-bottom: 0;
			padding-bottom: 0;
			border-bottom: none;
		}
}



	@media (max-width: 767px) {



		.team &gt; li {
			border-bottom: none;
		}
		
		.team &gt; li .about-me {
			float: none;
			width: 100%;
			border-bottom: 1px solid #d7d7d7;
		}
		
		.team &gt; li .about-me + .about-me {
			border-left: none;
		}
		
		.team &gt; li:first-child .about-me:first-child {
			padding-top: 0;
		}
		
		.team &gt; li:last-child .about-me:last-child {
			margin-bottom: 0;
			padding-bottom: 0;
			border-bottom: none;
		}
		
		.about-me-image, 
		.about-me-details {
			float: none;
			width: 100%;
		}
		
		.about-me-details + .about-me-image {
			margin-top: 30px;
width:50%;
		}
		
		.about-me:last-child .about-me-details {
			padding-top: 0;
		}
}
 
 
/***********************************************************************************
 *	- SERVICES
 ***********************************************************************************/
 	
	.service-box {
		margin-bottom: 50px;
	}
	
	.service-box-content {}
	
	.service-box-content &gt; *:last-child {
		margin-bottom: 0;
	}
	
	.service-box .service-box-content &gt; a {
		display: inline-block;
		color: #501a26;
		font-family: "Montserrat", sans-serif;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.service-box .service-box-content &gt; a:hover {
		color: #894aca;
	}
	
	/* SERVICE BOX STYLE 1 */
	.service-box.style-1 {}
	
	.service-box.style-1 &gt; img,
	.service-box.style-1 &gt; a img {
		display: block;
		margin-bottom: 30px;
	}
	
	.service-box.style-1 .service-box-content {}
	
	.service-box.style-1 .service-box-content h4 {
		margin-bottom: 15px;
		font-weight: 700;
	}
	
	.service-box.style-1 .service-box-content h4:before {
		display: inline-block;
		width: 11px;
		height: 11px;
		border: 2px solid #d7d7d7;
		border-radius: 50%;
		margin-right: 20px;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.service-box.style-1:hover .service-box-content h4:before {
		border-color: #894aca;
	}
	
	
	/* SERVICE BOX STYLE 2 */
	.service-box.style-2 {}

	.service-box.style-2 &gt; i {
		position: relative;
		z-index: 1;
		float: left;
		display: block;
		width: 60px;
		height: 60px;
		border-radius: 50%;
		border: 2px solid #894aca;
		color: #894aca;
		font-size: 36px;
		line-height: 56px;
		text-align: center;
		-webkit-transform: translateZ(0);
			-ms-transform: translateZ(0);
				transform: translateZ(0);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.service-box.style-2 &gt; i:after {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
		display: block;
		width: 56px;
		height: 56px;
		border-radius: 50%;
		background-color: #894aca;
		content: "";
		-webkit-transform: scale(0);
			-ms-transform: scale(0);
				transform: scale(0);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.service-box.style-2 .service-box-content {
		margin-left: 80px;
	}

	.service-box.style-2 .service-box-content h4 {
		padding-top: 5px;
		margin-bottom: 20px;
		line-height: 26px;
		font-weight: 700;
	}
	
	.service-box.style-2:hover &gt; i {
		background-color: #894aca;
		color: #fff;
	}
	
	.service-box.style-2:hover &gt; i:after {
		-webkit-transform: scale(1);
			-ms-transform: scale(1);
				transform: scale(1);
	}
	
	
	/* SERVICE BOX STYLE 3 */
	.service-box.style-3 {
		text-align: center;
	}
	
	.service-box.style-3 &gt; i {
		display: block;
		margin-bottom: 10px;
		color: #894aca;
		font-size: 72px;
		line-height: 72px;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.service-box.style-3 .service-box-content {}
	
	.service-box.style-3 .service-box-content h5 {
		margin-bottom: 15px;
		font-size: 14px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.service-box.style-3:hover &gt; i {
		color: #501a26;
	}
	
	
	/* SERVICE BOX STYLE 4 */
	.service-box.style-4 {
		text-align: center;
	}
	
	.service-box.style-4 &gt; i {
		display: inline-block;
		width: 60px;
		height: 60px;
		border: 2px solid #894aca;
		border-radius: 50%;
		margin-bottom: 30px;
		color: #894aca;
		font-size: 40px;
		line-height: 56px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.service-box.style-4 .service-box-content h4 {
		margin-bottom: 25px;
		font-weight: 700;
	}
	
	.service-box.style-4:hover &gt; i {
		background-color: #894aca;
		color: #fff;
	}
	
	
	/* SERVICES LIST */
	.services-list {
		margin-bottom: 0;
		list-style: none;
	}
	
	.services-list li {
		float: left;
		width: 33.33333333%;
		padding: 8% 5%;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		background-color: #f5f8f9;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.services-list li:nth-child(3n) {
		border-right: none;
	}
	
	.services-list li:nth-last-child(-n+3) {
		border-bottom: none;
	}
	
	.services-list li:hover {
		background-color: #894aca;
		color: #fff;
	}
	
	.services-list li:hover a {
		color: #fff;
	}
	
	.services-list li:hover a:hover {
		color: #212121;
	}
	
	.services-list li .service-box:last-child {
		margin-bottom: 0;
	}
	
	.services-list li:hover .service-box.style-2 &gt; i {
		border-color: #fff;
		color: #fff;
	}
	
	.services-list:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	@media (max-width: 1199px) {
		
		.services-list {
			margin-top: 80px;
		}
		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.service-box.style-2 &gt; i {
			float: none;
			margin-bottom: 20px;
		}
		
		.service-box.style-2 .service-box-content {
			margin-left: 0;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.services-list {
			margin-top: 0;
		}
		
		.services-list li {
			padding: 40px 20px;
			float: none;
			width: 100%;
			border-right: none;
		}
		
		.services-list li:nth-last-child(-n+3) {
			border-bottom: 1px solid #ccc;
		}
		
		.services-list li:last-child {
			border-bottom: none;
		}
		
	}
 
/***********************************************************************************
 *	- PORTFOLIO
 ***********************************************************************************/
	
	.portfolio-item {
		margin-bottom: 50px;
	}

	
	.portfolio-item-thumbnail {
		position: relative;
	}
	
	.portfolio-item-thumbnail img {
		width: 100%;
		display: block;
	}

.portfolio-item-details {
padding:20px;
}
	
	.portfolio-item-details h5 {
        color:#fff;
		font-weight: bold;
font-size:16px;
line-height:24px;
text-decoration: underline;

	}

	.portfolio-item-details .thumbnail-btn{

    background-color: #501a26; 
    color: white;
    padding: 4px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    position: absolute;
    bottom:   80px;
  left: 25%;
  right: 25%;
}

.portfolio-item-details .thumbnail-btn:hover {
  background-color: #fff;
  color:#3a0a46;
}
	
	.portfolio-item-details p {
		color: #fff;
		font-size: 12px;
		
	}
	
	.portfolio-item-thumbnail + .portfolio-item-details {
		text-align: center;
		margin: 40px 10px;
	}
	
	.portfolio-item-hover {
		visibility: hidden;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0px;
		text-align: center;
		background-color: rgba(147, 176, 98, 0.5);
		color: #fff;
		-webkit-transform: rotateY(90deg);
			-ms-transform: rotateY(90deg);
				transform: rotateY(90deg);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-item-hover a.zoom-action {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: 25px;
		font-size: 32px;
		line-height: 32px;
		text-decoration: none;
		color: #fff;
	}
	
	.portfolio-item-hover a.zoom-action:before {
		position: absolute;
		top: 50%;
		left: 50%;
		font-family: "setup-icons";
		content: "\ea18";
		-webkit-transform: translate(-50%,-50%);
			-ms-transform: translate(-50%,-50%);
				transform: translate(-50%,-50%);
	}
	
	.portfolio-item:hover .portfolio-item-hover {
		visibility: visible;
		-webkit-transform: rotateX(0);
			-ms-transform: rotateX(0);
				transform: rotateX(0);
	}


	
/***********************************************************************************
 *	- BLOG
 ***********************************************************************************/
 	
	/* BLOG ARTICLE */
	.blog-article {
		margin-bottom: 100px;
	}
	
	.blog-article-thumbnail {
		margin-bottom: 50px;
	}
	
	.blog-article-thumbnail img {}
	
	.blog-article-title {
		margin-bottom: 15px;
		font-weight: 700;
	}
	
	.blog-article .date {
		display: inline-block;
		padding: 0 20px;
		border-radius: 20px;
		margin-bottom: 15px;
		background-color: #894aca;
		color: #fff;
		font-family: "Montserrat", sans-serif;
		font-size: 12px;
		letter-spacing: 0.5px;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.blog-article .date:hover {
		background-color: #501a26;
	}
	
	.blog-article-details {
		margin-bottom: 20px;
		font-size: 14px;
	}
	
	h5.blog-article-title {
		margin-bottom: 0;
	}
	
	h5.blog-article-title + .blog-article-details {
		font-size: 12px;
	}
	
	.blog-article-details a {
		display: inline-block;
		padding-right: 8px;
		border-right: 1px solid #838383;
		margin-right: 3px;
		color: #838383;
		line-height: 14px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.blog-article-details a:last-child {
		padding-right: 0;
		border-right: none;
		margin-right: 0;
	}
	
	.blog-article-details a:before {
		margin-right: 3px;
		font-family: "setup-icons";
		font-size: 20px;
	}
	
	h5.blog-article-title + .blog-article-details a:before {
		font-size: 16px;
	}
	
	.blog-article-details a.author:before {
		position: relative;
		top: 3px;
		content: "\e9ca";
	}
	
	.blog-article-details a.comments:before {
		position: relative;
		top: 4px;
		content: "\e9ad";
	}
	
	.blog-article-details a:hover {
		color: #894aca;
		text-decoration: none;
	}
	
	.blog-article-content {}
	
	.blog-article-content &gt; a {
		display: inline-block;
		color: #894aca;
		font-family: "Montserrat", sans-serif;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.blog-article-content &gt; a:hover {
		color: #501a26;
	}
	
	
	/* BLOG POST COMMENT */
	.commentlist-title {
		text-transform: uppercase;
	}
	
	.commentlist,
	.commentlist ul {
		list-style: none;
	}
	
	.commentlist {
		margin: 70px 0 100px;
	}
	
	.commentlist ul {}
	
	.commentlist li &gt; ul.children {
		margin-left: 100px;
	}
	
	.commentlist li {}
	
	.comment-body {
		position: relative;
		padding-left: 100px;
		margin-bottom: 65px;
	}
	
	.comment-author {}
	
	.comment-author .avatar {
		position: absolute;
		top: 0;
		left: 0;
		border-radius: 50%;
	}
	
	.comment-author .fn {
		color: #501a26;
		font-family: "Montserrat", sans-serif;
		font-size: 14px;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.comment-author .fn:hover {
		color: #894aca;
	}
	
	.comment-author .says {
		display: none;
	}
	
	.comment-metadata {
		margin-bottom: 15px;
		font-size: 11px;
		line-height: 24px;
		letter-spacing: 3px;
		text-transform: uppercase;
	}
	
	.comment-metadata a {
		color: #838383;
	}
	
	.comment-content {}
	
	.reply {}
	
	.reply a {
		display: inline-block;
		font-family: "Montserrat", sans-serif;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.reply a:hover {
		border-color: #501a26;
		color: #501a26;
	}
	
	
	/* BLOG POST COMMENT FORM */
	.commentform-title {
		text-transform: uppercase;
	}
	
	#commentform {
		margin: 70px 0 30px;
	}
	
	#commentform label {}
	
	#commentform textarea,
	#commentform input[type="url"],
	#commentform input[type="text"],
	#commentform input[type="email"] {}
	
	#commentform button[type="submit"] {
		margin-top: 40px;
		margin-bottom: 0;
	}
	
	@media (max-width: 767px) {
		
		.commentlist li &gt; ul.children {
			margin-left: 20px
		}
		
		.comment-body {
			padding-left: 0;
		}
		
		.comment-author .avatar {
			position: relative;
			display: block;
			margin-bottom: 20px;
		}
		
	}

	
/***********************************************************************************
 *	- SHORTCODES
 ***********************************************************************************/
	
	.icons-list {
		margin-bottom: 100px;
		list-style: none;
	}

	.icons-list li {
		text-align: center;
		display: inline-block;
		padding: 10px;
		width: 13.7%;
		min-height: 100px;
		vertical-align: top;
	}

	.icons-list li i,
	.icons-list li .glyphicon {
		font-size: 20px;
	}

	.icons-list li .icon-name {
		display: block;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {

		.icons-list li {
			width: 19%;
		}
		
	}
	
	@media (max-width: 767px) {

		.icons-list li {
			width: 49%;
		}
		
	}
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {

		.icons-list li {
			width: 32%;
		}

	}</pre></body></html>