/**
 * 	Name: elements.css
 *
 *	T.O.C
 *	
 *	=Accordion
 *	=Alerts
 *	=Animations
 *	=Buttons
 *	=Custom Lists
 *	=Dividers
 *	=Google Maps
 *	=Headlines
 *	=Icon Boxes
 *	=Image Bordered
 *	=Milestones
 *	=Our Process
 *	=Pie charts
 *	=Pricing Tables
 *	=Progress Bar
 *	=Schedule
 *	=Social Media
 *	=Styled Tables
 *	=Tabs
 *	=Testimonials
 *	=Team Member
 *	=Portfolio Item
 *	=Portfolio Filter
 *	=Portfolio pagination
 *	=Portfolio Isotope
 *	=Portfolio Grid
 *	=Portfolio Strip
 *	=Contact form
 *	=Blog
 *	=Menu
 *	=Fullwidth Section
 *	=WordPress Default Classes
 *	=WordPress Widgets
 *		=Widgets default
 *		=Text Widget
 *		=Search Widget
 *		=Recent Entries Widget
 *		=Pages Widget
 *		=Archive Widget
 *		=Categories Widget
 *		=Meta Widget
 *		=Recent Comments Widget
 *		=Tag Cloud Widget
 *		=Calendar Widget
 *		=Nav Menu Widget
 *		=RSS Widget
 *	=WordPress Custom Widgets
 *		=nfw Twitter widget
 *		=nfw Flickr widget
 *		=nfw Contact Info widget
 *		=nfw Newsletter subscribe widget
 *		=nfw Latest posts widget
 *		=nfw Navigation widget
 *		=nfw Social media widget
 *	=WordPress Comments
 *	=WordPress Comment Form
 *
 */


/* =Accordion
   ========================================================================== */

        .wpb_accordion_wrapper { margin-bottom: 50px; }

        .wpb_content_element .wpb_accordion_header a {
            position: relative;
            display: block;
            padding: 7px 10px 7px 60px !important;
            margin-bottom: 15px !important;
            color: #550000;
            font-size: 16px;
            font-weight: 600;
        }

        .wpb_content_element .wpb_accordion_header a:hover { color: #d9b772; }

        .wpb_content_element .wpb_accordion_header a:after {
            position: absolute;
            top: 0;
            left: 0;
            width: 36px;
            height: 36px;
            border: 2px solid #d9b772;
            border-radius: 50%;
            font-size: 18px;
            line-height: 36px;
            text-align: center;
            content: "+";
        }

        .wpb_content_element .wpb_accordion_header.ui-accordion-header-active a:after {
            color: #d9b772;
            content: "-"; 
        }
        
        .wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon:before {
          content: "" !important;
        }

        .wpb_content_element .wpb_accordion_wrapper .wpb_accordion_header { background-color: transparent !important; }

        .wpb_accordion .wpb_accordion_wrapper .ui-state-default .ui-icon, 
        .wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon {
            background: none !important;
        }

        .wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon:before { content: "-"; }

        .wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content { 
            padding: 0 0 0 60px !important
        }
        .wpb_accordion .wpb_content_element:after { /* 1 */
            visibility: hidden;
            display: block;
            height: 0;
            font-size: 0;
            content: " ";
            clear: both;
        }


/* ==========================================================================
   =Alerts
   ========================================================================== */

	.alert {
		padding: 13px 15px;
		border: 2px solid #d9b772;
		border-radius: 2px;
		margin-bottom: 30px;
		text-align: center;
	}
	
	.alert i {
		position: relative;
		top: 1px;
		margin-right: 7px;
		font-size: 16px;
	}
	
	.alert.info {
		background-color: #000055;
		color: #fff;
	}
	
	.alert.success {
		background-color: #005500;
		color: #fff;
	}
	
	.alert.error {
		background-color: #560000;
		color: #fff;
	}
	
	.alert.warning {
		border-color: #560000;
		background-color: #d9b774;
		color: #fff;
	}
	
/* ==========================================================================
   =Animations
   ========================================================================== */
   
   .animate {
		-webkit-animation-duration: 1s;
				animation-duration: 1s;
		-webkit-animation-fill-mode: both;
				animation-fill-mode: both;
		visibility: hidden;
	}

	.animate.visible { visibility: visible; }
	.animate.hidden { visibility: hidden; }
   
/* ==========================================================================
   =Buttons
   ========================================================================== */

/* =Default Button
   ========================================================================== */
   
	.btn {
		position: relative;
		z-index: 2;
		overflow: hidden;
		display: inline-block; 
		padding: 5px 15px; 
		border: 2px solid #d9b772;
		border-radius: 2px;
		margin: 0 5px 20px 0;
		color: #d9b772;
		font-family: 'Amaranth', sans-serif;
		font-size: 13px; 
		text-decoration: none !important;
		cursor: pointer;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	.btn:after {
		position: absolute;
		z-index: -1;
		top: 50%;
		left: 0;
		width: 100%;
		height: 0;
		background-color: #550000;
		opacity: 0;
		content: "";
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	a.btn { color: #d9b772; }
	
	.btn:focus { outline: 0; }
	
	.btn:hover:after {
		height: 100%; 
		opacity: 1; 
	}
	
	.btn:hover { background-color: transparent; }	
	
	.btn i,
	.btn-large i { 
		float: left; 
		margin: 4px 8px 0 -4px;
		font-size: 16px; 
		line-height: 16px; 
	}
	
	.btn.btn-large {
		padding: 10px 25px;
		font-size: 16px;
	}
	
	.btn.alt { background-color: #550000; }
	.btn.alt:after { background-color: #d9b772; }
	
	.btn.alt:hover {
		border-color: #550000;
		color: #550000;
	}

/* ==========================================================================
   =Custom Lists
   ========================================================================== */

	/**
 	 * Custom lists
 	 *
	 * 1. unstyled list
	 * 2. list with squares for bullets
	 * 3. list with discs for bullets
	 *
	 */
	 
	ul.unstyled { list-style-type: none; } /* 1 */
	ul.square { list-style-type: square; } /* 2 */
	ul.circle { list-style-type: circle; } /* 3 */
	
	/**
 	 * FontAwesome lists
 	 *
	 * 1. Check list
	 *
	 */
	 
	ul.check { list-style: none; }			/* 1 */
	
	ul.check li:before { 
		position: relative;
		top: -1px;
		width: auto;
		height: auto;
		margin-right: 15px;
		color: #d9b772;
		font-family: 'FontAwesome';
		font-size: 14px;
		font-style: normal;
	}
	
	ul.check li:before { content: ""; }
	
	ul.check li { margin-bottom: 5px; }
	ul.check li:last-child { margin-bottom: 0; }

/* ==========================================================================
   =Dividers
   ========================================================================== */

	.divider { margin: 30px 0; }
	
	.divider.single-line { border-top: 2px solid #d9b772; }
	
	.divider.double-line { border-top: 6px double #d9b772; }
	
	.divider.single-dotted {
		 height: 2px;
		 background: url(../images/bg-single-dotted.png) repeat-x top left ;  
	}
	
	.divider.double-dotted { 
		height: 8px;
		background: url(../images/bg-double-dotted.png) repeat-x top left; 
	}	
   
/* ==========================================================================
   =Google Maps
   ========================================================================== */

	 /**
	 * 1. needed so that Google Maps controls are not distorted
	 */
	 
	.google-map {}
	.google-map  img { max-width: none; }	/* 1 */
	
	.map { 
		width: 100%;  
		margin-bottom: 50px; 
                height: 430px;
		border: 2px solid #d9b772;
	}
	
	#map-1 {
		height: 430px;
		border: 2px solid #d9b772;
	}
	
	#map-2 {
		height: 540px;
		border-top: 2px solid #d9b772;
		border-bottom: 2px solid #d9b772;
		margin: 50px 0 -40px 0;
	}
	
	@media (max-width: 767px) {
			
		#map-2 { height: 350px; }	
		
	}

/* ==========================================================================
   =Headlines
   ========================================================================== */

	.headline {
		position: relative;
		display: inline-block;
		padding: 30px 25px 20px 25px;
		border: 2px solid #d9b772;
		margin: 75px 0 70px 0;
		text-align: center;
		text-transform: uppercase;
	}
	
	.headline h2 {
		margin-bottom: 0;
		color: #550000;
		line-height: 26px;
	}
	
	.headline i {
		position: absolute;
		top: -25.5px;
		left: 0;
		right: 0;
		display: inline-block;
		width: 45px;
		height: 45px;
		border: 2px solid #d9b772;
		border-radius: 50%;
		margin: 0 auto;
		background-color: #fff;
		color: #550000;
		font-size: 25px;
		line-height: 45px;
	}
	
/* ==========================================================================
   =Icon Boxes
   ========================================================================== */

/* =Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative; 
		margin-bottom: 30px;
		text-align: center; 
	}	
	
	.icon-box-1 > i {
		position: relative;
		z-index: 2;
		display: block;
		width: 72px;
		height: 72px;
		overflow: hidden;
		border: 2px solid #d9b772;
		border-radius: 50%;
		margin: 0 auto 30px auto;
		color: #550000; 
		font-size: 48px;
		line-height: 72px;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	.icon-box-1 > i:after {
		position: absolute;
		z-index: -1;
		top: 50%;
		left: 0;
		width: 100%;
		height: 0;
		background-color: #550000;
		opacity: 0;
		content: "";
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-1:hover > i:after {
		height: 100%; 
		opacity: 1; 
	}
	
	.icon-box-1:hover > i { 
		background-color: transparent;
		color: #d9b772;
	}

	.icon-box-1 > img { margin-bottom: 10px; }
	
	.icon-box-1 h3 {
		margin-bottom: 20px;
		font-weight: 700;
		text-transform: uppercase; 
	}
	
	.icon-box-1 h3 a:hover { text-decoration: none; }
	
	.icon-box-1 .btn { margin-top: 10px; }
	
	.icon-box-1 .icon-box-content {}			

/* ==========================================================================
   =Image Bordered
   ========================================================================== */
   
   	.img-bordered { border: 2px solid #d9b772; }

/* ==========================================================================
   =Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		margin-bottom: 30px;
		text-align: center;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.milestone:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.milestone i {
		float: left;
		z-index: 20;
		margin-right: 10px;
		font-size: 32px;
	}
	
	.milestone .milestone-content {
		z-index: 10;
		color: #d9b772;
		font-size: 120px;
		line-height: 150px;
		font-family: "Amaranth", sans-serif;
	}
	
	.milestone .milestone-description {
		color: #550000;
		font-family: "Open Sans", Arial, sans-serif; 
		font-size: 18px; 
		line-height: 21px;
		font-weight: 300;
		text-transform: uppercase;
	}
	
	.milestone:hover .milestone-content { color: #550000; }
	.milestone:hover .milestone-description { color: #d9b772; }

/* ==========================================================================
   =Our Process
   ========================================================================== */

/* =Horizontal process
   ========================================================================== */

	.horizontal-process-builder { 
		position: relative;
		margin-bottom: 50px;
		list-style: none;
		text-align: center; 
	}
	
	.horizontal-process-builder:before {
		position: absolute;
		z-index: 1;
		top: 60px;
		left: 135px;
		display: block;
		width: 75%;
		border-top: 2px solid #d9b772;
		content: "";
	}
	
	.horizontal-process-builder li { 
		float: left;
		width: 25%;  
	}
	
	.horizontal-process-builder li i,
	.horizontal-process-builder li h1,
	.horizontal-process-builder li img {
		position: relative;
		z-index: 2;
		display: block;
		width: 115px; 
		height: 115px;
		overflow: hidden;  
		border: 2px solid #d9b772;
		border-radius: 50%;
		outline: 5px solid #fff;
		margin: 0 auto 20px;
		background-color: #fff;
		background-clip: padding-box;
		color: #d9b772;
		font-size: 48px; 
		line-height: 115px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 
	}
	
	.horizontal-process-builder li:hover i,
	.horizontal-process-builder li:hover h1 {
		background-color: #550000;
		color: #d9b772;
	}

	.horizontal-process-builder.three-items li { width: 33.3333333333%; }
	.horizontal-process-builder.four-items li { width: 25%; }
	.horizontal-process-builder.five-items li { width: 20%; }
	
	.horizontal-process-builder-description { padding: 0 15px; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.horizontal-process-builder:before { left: 115px; }
		
	}
	
	@media (max-width: 767px) {
		
		.horizontal-process-builder li { 
			float: none;
			width: 100%;
			margin-bottom: 40px; 
		}
		
		.horizontal-process-builder:before { content: none; }
		
		.horizontal-process-builder.three-items li { width: 100%; }
		.horizontal-process-builder.four-items li { width: 100%; }
		.horizontal-process-builder.five-items li { width: 100%; }
		
	}
	
/* =Vertical process
   ========================================================================== */

	.vertical-process-builder {
		position: relative;
		margin-bottom: 40px;
		list-style: none;
	}
	
	.vertical-process-builder:before {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 26px;
		display: block;
		height: 85%;
		border-left: 1px solid #e0e0e0;
		content: "";
	}
	
	.vertical-process-builder li { margin-bottom: 70px; }
	
	.vertical-process-builder li i,
	.vertical-process-builder li h1 {
		position: relative;
		z-index: 2;
		float: left;
		display: block;
		width: 72px;
		height: 72px;
		overflow: hidden;
		border: 1px solid #e0e0e0;
		border-radius: 50%;
		outline: 10px solid #fff;
		margin-left: -10px;
		background-color: #fff;
		background-clip: padding-box;
		font-size: 36px;
		line-height: 72px;
		text-align: center;
		-webkit-transition: backgroud-color 0.3s;
				transition: backgroud-color 0.3s;
	}
	
	.vertical-process-builder .process-description { margin-left: 100px; }
	
	.vertical-process-builder li:hover i,
	.vertical-process-builder li:hover h1 {
		background-color: #f3f3f3;
	}
	
	@media (max-width: 767px) {
		
		.vertical-process-builder li i,
		.vertical-process-builder li h1 { margin-left: 0; }
		
		.vertical-process-builder:before { left: 36px; }
		
	}

/* ==========================================================================
   =Pie charts
   ========================================================================== */

	.pie-chart {
		position: relative;	
		margin: 0 auto 30px auto;
		text-align: center;
	}
	
	.pie-chart canvas {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
	}
	
	.pie-chart i, 
	.pie-chart .pie-chart-custom-text, 
	.pie-chart .pie-chart-percent {
		position: absolute;
		z-index: 10;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		color: #d9b772;
		text-align: center;
	}
	
	.pie-chart img {
		max-width: 100%;
		vertical-align: middle;
	}
	
	.pie-chart .pie-chart-custom-text { font-size: 18px; }
	
	.pie-chart .pie-chart-percent {
		font-size: 16px;
		font-weight: 700;
	}
	
	.pie-chart-description {
		display: block;
		margin-bottom: 50px;
		font-size: 14px;
		text-align: center;
	}
	
	.pie-chart-description h3 { 
		color: #550000;
		text-transform: uppercase;
	}

/* ==========================================================================
   =Pricing Tables
   ========================================================================== */

	.pricing-table {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 40px;
		margin-bottom: 50px;
		background-color: #550000;
		color: #fff;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.pricing-table-header {	
		margin-bottom: 20px;
		text-transform: uppercase;
	}

	.pricing-table-header h4 {
		margin-bottom: 20px;
		font-weight: 600;
	}
	
	.pricing-table-header img {
		border: 2px solid #d9b772;
		border-radius: 50%;
		margin: 25px 0;
	}
		
	.pricing-table-offer {}
	
	.pricing-table-offer ul { list-style: none; }
	
	.pricing-table-offer ul li { 
		border-top: 1px solid #e0e0e0; 
		padding: 10px 0; 
	}
	
	.pricing-table-offer ul li:first-child { border-top: none; }
	
	.pricing-table .btn {
		border-color: #fff;
		margin-top: 10px;
		margin-bottom: 0;
		color: #fff;
	}
	
	.pricing-table .btn:hover:after { background-color: #d9b772; }
	
	.pricing-table:hover {
		-webkit-transform: scale(1.05);
			-ms-transform: scale(1.05);
				transform: scale(1.05);
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.pricing-table { padding: 40px 10px; }
		
	}

/* ==========================================================================
   =Progress Bar
   ========================================================================== */

	.progress-bar-description {
		position: absolute;
		top: 6px;
		left: 0;
		z-index: 2;
		width: 100%;
		padding-left: 10px;
		color: #fff;
		line-height: 14px;
	}
	
	.progress-bar-description span {
		position: absolute;
		z-index: 2;
		left: 0;
		margin-left: -45px;
		color: #fff;
	}
	
	.progress-bar {
		position: relative;
		z-index: 1;
		display: block;
		height: 30px;
		margin-bottom: 45px;
		background-color: #d9b772;
	}
	
	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background-color: #550000;
	}
	
	.progress-bar .progress-bar-outer .progress-bar-inner {
		position: absolute;
		z-index: 1;
		overflow: hidden;
		top: 0;
		left: 0;
		display: block;
		height: 100%;
		width: 100%;
	}

/* ==========================================================================
   =Schedule
   ========================================================================== */
	
	.schedule {
		margin-bottom: 50px;
		list-style: none; 
	}
	
	.schedule li { margin-bottom: 25px; }
	.schedule li:last-child { margin-bottom: 0; }
	
	.schedule li span {
		float: left; 
		display: block;
		width: 50%;
		height: 50px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 15px 0;
		font-size: 16px;
		line-height: 16px;
		font-weight: 700;
		text-align: center;
	}
	
	.schedule li span.day {
		border: 2px solid #d9b772;
		color: #d9b772; 
	}
	
	.schedule li span.program {
		background-color: #d9b772;
		color: #fff;
	}
	
	.schedule.alt { margin: 30px -30px 50px -30px; }
	
	.schedule.alt li { 
		float: left;
		width: 33.333333333%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 30px;
	} 
	
	/*
	 * 1. Clearfix hack 
	 */

	.schedule li:after {	/* 1 */
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	@media (max-width: 767px) {
		
		.schedule.alt li { width: 100%; }
		
	}

/* ==========================================================================
   =Social Media
   ========================================================================== */
	
	a.social-icon {
		position: relative;
		z-index: 2;
		overflow: hidden;
		float: left;
		display: block;
		width: 32px;
		height: 32px;
		border: 2px solid #d9b772;
		border-radius: 50%;
		margin-right: 5px;
		margin-bottom: 5px;
		color: #d9b772;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	a.social-icon:after {
		position: absolute;
		z-index: -1;
		top: 50%;
		left: 0;
		width: 100%;
		height: 0;
		background-color: #550000;
		opacity: 0;
		content: "";
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	a.social-icon:hover:after {
		height: 100%; 
		opacity: 1; 
	}
	
	a.social-icon:hover { background-color: transparent; }

	a.social-icon:last-child { margin-right: 0; }

	a.social-icon i {
		font-size: 18px;
		line-height: 32px;
	}
	
	a.social-icon:hover { text-decoration: none; }
	
	a.facebook-icon:after { background-color: #0e59a0 !important; }
	a.twitter-icon:after { background-color: #0ea4ff !important; }
	a.dribble-icon:after { background-color: #ea73a0 !important; }
	a.pinterest-icon:after { background-color: #d73532 !important; }
	a.google-icon:after { background-color: #282927 !important; }
	a.tumblr-icon:after { background-color: #586980 !important; }
	a.instagram-icon:after { background-color: #82685a !important; }
	a.rss-icon:after { background-color: #f79638 !important; }
	a.linkedin-icon:after { background-color: #018faf !important; }
	a.skype-icon:after { background-color: #00b0f6 !important; }
	a.flickr-icon:after { background-color: #0061db !important; }
	a.vimeo-icon:after { background-color: #63879c !important; }
	a.github-icon:after { background-color: #3b3b3b !important; }
	a.youtube-icon:after { background-color: #cc181e !important; }
	a.windows-icon:after { background-color: #6dc2e9 !important; }
	a.dropbox-icon:after { background-color: #007ee5 !important; }
	a.xing-icon:after { background-color: #026566 !important; }	
	a.adn-icon:after { background-color: #1ea076 !important; }
	a.android-icon:after { background-color: #98cb02 !important; }
	a.apple-icon:after { background-color: #000000 !important; }
	a.behance-icon:after { background-color: #2d9ad2 !important; }
	a.bitbucket-icon:after { background-color: #214f81 !important; }
	a.bitcoin-icon:after { background-color: #f7931b !important; }
	a.codepan-icon:after { background-color: #000000 !important; }
	a.css3-icon:after { background-color: #3289ce !important; }
	a.delicious-icon:after { background-color: #3399fe !important; }
	a.deviantart-icon:after { background-color: #c8da30 !important; }
	a.digg-icon:after { background-color: #0080c2 !important; }
	a.drupal-icon:after { background-color: #0077b9 !important; }
	a.empire-icon:after { background-color: #000000 !important; }
	a.foursquare-icon:after { background-color: #daecb0 !important; }
	a.git-icon:after { background-color: #f34f29 !important; }
	a.gitti-icon:after { background-color: #634c3e !important; }
	a.hacker-news-icon:after { background-color: #f18642 !important; }
	a.html5-icon:after { background-color: #e54c1f !important; }
	a.joomla-icon:after { background-color: #016fb9 !important; }
	a.jsfiddle-icon:after { background-color: #4679a4 !important; }
	a.linux-icon:after { background-color: #fece0e !important; }
	a.maxcdn-icon:after { background-color: #f36f20 !important; }
	a.openid-icon:after { background-color: #fe6101 !important; }
	a.pagelines-icon:after { background-color: #3783e3 !important; }
	a.pied-piper-icon:after { background-color: #0c7b48 !important; }
	a.qq-icon:after { background-color: #23286c !important; }
	a.rebel-icon:after { background-color: #000000 !important; }
	a.reddit-icon:after { background-color: #cee3f8 !important; }
	a.renren-icon:after { background-color: #0d81e4 !important; }
	a.share-icon:after { background-color: #252525 !important; }
	a.slack-icon:after { background-color: #453744 !important; }
	a.soundcloud-icon:after { background-color: #fe4e00 !important; }
	a.spotify-icon:after { background-color: #80bb41 !important; }
	a.stack-exchange-icon:after { background-color: #265a93 !important; }
	a.stackoverflow-icon:after { background-color: #fea501 !important; }
	a.steam-icon:after { background-color: #191919 !important; }
	a.stumbleupon-icon:after { background-color: #f04f23 !important; }
	a.tencent-weibo-icon:after { background-color: #0063a7 !important; }
	a.trello-icon:after { background-color: #226784 !important; }
	a.vine-icon:after { background-color: #00b081 !important; }
	a.vk-icon:after { background-color: #50769d !important; }
	a.wechat-icon:after { background-color: #a4dc31 !important; }
	a.weibo-icon:after { background-color: #d82828 !important; }
	a.wordpress-icon:after { background-color: #454442 !important; }
	a.yahoo-icon:after { background-color: #4b04a8 !important; }

/* ==========================================================================
   =Styled Tables
   ========================================================================== */

	.table-bordered { 
		border: 2px solid #d9b772; 
		border-left: none; 
		border-collapse: separate; 		
	}
	
	.table-bordered th, 
	.table-bordered td { border-left: 2px solid #d9b772; }
	
	.table-bordered caption + thead tr:first-child th,
	.table-bordered caption + tbody tr:first-child th,
	.table-bordered caption + tbody tr:first-child td,
	.table-bordered colgroup + thead tr:first-child th,
	.table-bordered colgroup + tbody tr:first-child th,
	.table-bordered colgroup + tbody tr:first-child td,
	.table-bordered thead:first-child tr:first-child th,
	.table-bordered tbody:first-child tr:first-child th,
	.table-bordered tbody:first-child tr:first-child td { border-top: none; }

	.table-condensed th,
	.table-condensed td { padding: 4px 8px; }	

	@media (max-width: 480px) {
	
		/**
		 * Force table to not be like tables anymore
		 */
		 
		table, 
		thead, 
		tbody, 
		th, 
		td, 
		tr { display: block; }
		
		.table-bordered { border-top: none; }
		
		/**
		 * Hide table headers
		 */
	
		thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		tr { border-top: 2px solid #550000; }
		
		td:first-child { border-top: none !important; }
	  
	}

/* ==========================================================================
   =Tabs
   ========================================================================== */

/* =Horizontal tabs
   ========================================================================== */
		
   /*
    *  1. Wraps around a horizontal tab group
	*/  

        .wpb_content_element .wpb_tabs_nav li { display: inline; }

        .wpb_content_element .wpb_tabs_nav { 
            margin-top: 10px !important; 
            margin-bottom: 0;
        }

        .wpb_content_element .wpb_tabs_nav li a {
            float: left; 
            display: block;
            padding: 20px 25px !important;
            border-top: 3px solid #fff !important;
            border-right: 1px solid #fff !important;
            background-color: #d9b772 !important;
            color: #fff;
            font-size: 16px;
            line-height: 16px;
            text-decoration: none;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;                
        }

        .wpb_content_element .wpb_tabs_nav li:last-child a { border-right: none; }

        .wpb_content_element .wpb_tabs_nav li a:hover { text-decoration: none; }

        .wpb_content_element .wpb_tabs_nav li a:hover,
        .wpb_content_element .wpb_tabs_nav li.ui-tabs-active a {
            border-top-color: #d9b772 !important;
            background-color: #550000 !important;
        }

        .wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab {
            margin-bottom: 15px !important;
        }

        .wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab { 
            padding: 30px !important;
            border-radius: 0 0 2px 2px !important;
            background-color: #550000 !important;
            color: #fff;
        }

        .wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab p:last-child { margin-bottom: 0; }

        .wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab img {
            float: left;
            margin-right: 30px;
        }

        @media (max-width: 767px) {

            .wpb_content_element .wpb_tabs_nav { border-bottom: none; }

            .wpb_content_element .wpb_tabs_nav li { display: block; }

            .wpb_content_element .wpb_tabs_nav li a { 
                float: none; 
                display: block;
                padding: 20px 25px !important;
                border: none !important;
                margin: 0 !important;
            }

            .wpb_content_element .wpb_tabs_nav li a:hover { text-decoration: none; }

            .wpb_content_element .wpb_tabs_nav li.ui-tabs-active a {  
                padding: 20px 25px  !important;
                margin: 0  !important;
            }

            .wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab img { 
                float: none;
                margin-bottom: 15px  !important;
            }

        }

/* ==========================================================================
   =Testimonials
   ========================================================================== */

	.testimonial { 
		margin-bottom: 30px;
		font-size: 16px;
		line-height: 27px;
		text-align: center;
	}
	
	.testimonial img {
		border: 2px solid #d9b772;
		border-radius: 50%;
		margin-bottom: 20px;
	}
	
	.testimonial h3 { margin-bottom: 25px; }
	
	
/* ==========================================================================
   =Team Member
   ========================================================================== */

	.team-member {
		position: relative;
		overflow: hidden;
		border: 2px solid #d9b772;
		margin-bottom: 30px;
	}
	
	.team-member img {
		display: block;
		width: 100%;
	}
	
	.team-member-info {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 20px 0 0 20px;
		background-color: rgba(85, 0, 0, 0.85);
		color: #d9b772;
		-webkit-transform: translateY(100%);
			-ms-transform: translateY(100%);
				transform: translateY(100%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.team-member-info h4 {
		padding-bottom: 15px;
		border-bottom: 1px solid #d9b772;
		margin-bottom: 10px;
		color: #fff;
		font-family: "Open Sans", Arial, sans-serif;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.team-member .social-media a.social-icon {
		float: none;
		display: inline-block;
	}
	
	.team-member:hover .team-member-info {
		-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
				transform: translateY(0);
	}
	
/* ==========================================================================
   =Portfolio Item
   ========================================================================== */
	
	.portfolio-item { 
		position: relative; 
		border: 2px solid #d9b772;
		margin-bottom: 50px;
	}
	
	.portfolio-item-preview { position: relative; }
	
	.portfolio-item-preview > img {
		display: block;
		width: 100%;
	}
	
	.portfolio-item-overlay {
		position: absolute; 
		top: 0; 
		right: 0; 
		bottom: 0; 
		left: 0; 
		background-color: rgba(85, 0, 0, 0.7);
		opacity: 0;
		-webkit-transform: scaleY(0);
			-ms-transform: scaleY(0);
				transform: scaleY(0);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-item:hover .portfolio-item-overlay { 
		opacity: 1;
		-webkit-transform: scaleY(1);
			-ms-transform: scaleY(1);
				transform: scaleY(1);
	}	
		
	.portfolio-item-overlay-actions {
		position: absolute;
		top: 0;
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;		
		margin-top: -45px;		
		text-align: center;
		opacity: 0;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-item-overlay-actions .portfolio-item-zoom,
	.portfolio-item-overlay-actions .portfolio-item-link {
		display: inline-block;
		width: 32px;
		height: 32px; 
		border-radius: 50%;
		margin: 0 5px;
		background-color: #d9b772;
		text-decoration: none;
	}
	
	.portfolio-item-overlay-actions .portfolio-item-zoom i,
	.portfolio-item-overlay-actions .portfolio-item-link i {
		color: #fff; 
		font-size: 20px; 
		line-height: 32px; 
	}
	
	.portfolio-item-overlay-actions .portfolio-item-zoom:hover,
	.portfolio-item-overlay-actions .portfolio-item-link:hover { background-color: #550000; }
	
	.portfolio-item:hover .portfolio-item-overlay-actions {
		top: 50%;
		opacity: 1;
	}
	
	.portfolio-item-description {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin-bottom: -50px;
		color: #fff;
		text-align: center;
		opacity: 0;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-item-description h3 { margin-bottom: 0; }
	
	.portfolio-item-description span,
	.portfolio-item-description a:hover { color: #fff; }
	
	.portfolio-item:hover .portfolio-item-description {
		bottom: 50%;
		opacity: 1;
	}
        .portfolio-item-link { cursor: pointer; }
        
        .nfw_load_more_trigger { margin-top: 30px; }
	
/* ==========================================================================
   =Portfolio Filter
   ========================================================================== */
	
	.portfolio-filter ul {
		margin: 30px auto;
		list-style: none;
	}
	
	.portfolio-filter ul li { 
		display: inline-block;
		margin-right: 20px;
	}
	
	.portfolio-filter ul li:last-child { margin-right: 0; }
	
	.portfolio-filter ul li a { 
		text-decoration: none;
	}
	
	.portfolio-filter ul li a:hover,
	.portfolio-filter ul li a.active { color: #d9b772; }	
	
	@media (max-width: 767px) {
		
		.portfolio-filter ul li { display: block; }
		
	}

/* ==========================================================================
   =Portfolio Isotope
   ========================================================================== */
   
   	.portfolio-isotope { 
		margin: 20px -5px;
		opacity: 0;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-isotope .item { width: 25%; } 
	
	.portfolio-isotope .portfolio-item { margin: 5px; }
	
	.load-more {
		color: #2d2d2d;
		text-decoration: none;
		cursor: pointer;
	}
	
	a.load-more:hover { text-decoration: none; }		
	
	.load-more span {
		display: inline-block;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		margin-right: 10px;
		background-color: #d9b772;
		color: #fff;
		font-size: 20px;
		line-height: 32px;
		text-align: center;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.portfolio-isotope .item { width: 33.3333333333%; }
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-isotope .item { width: 100%; }
		
	}
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.portfolio-isotope .item { width: 50%; }
		
	}

/* ==========================================================================
   =Portfolio Pagination
   ========================================================================== */
	
	.pagination {
		margin-bottom: 50px;
		list-style: none;
	}
	
	.pagination li { display: inline-block }

	.pagination a {
		position: relative;
		z-index: 2;
		overflow: hidden;
		display: block; 
		border: 2px solid #d9b772;
		border-radius: 50%; 
		margin-right: 5px;
		text-align: center;
		color: #d9b772; 
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	.pagination a:after {
		position: absolute;
		z-index: -1;
		top: 50%;
		left: 0;
		width: 100%;
		height: 0;
		background-color: #550000;
		opacity: 0;
		content: "";
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	pagination li:last-child a { margin-right: 0; }
	
	.pagination a:hover:after {
		height: 100%; 
		opacity: 1; 
	}
	
	.pagination a:hover { 
		background-color: transparent;
		text-decoration: none;
	}
	
	.pagination li.current a { 
		color: #d9b772; 
		background-color: #550000; 
		text-decoration: none;
	}

/* ==========================================================================
   =Portfolio Columns
   ========================================================================== */
	
	.portfolio-columns {
		margin: -15px -15px 15px -15px;
		list-style: none;
	}
	
	.portfolio-columns .item {
		float: left;
		width: 25%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 10px;
		
	}
	
	.portfolio-columns .item .portfolio-item { margin-bottom: 0; }
	
	@media (min-width: 1400px) {
			
		.portfolio-columns .item {}
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.portfolio-columns .item { 
			width: 33.3333333333%;
			padding: 7.5px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-columns .item {
			float: none;
			width: 100%; 
		}
		
	}

	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.portfolio-columns .item {
			float: left;
			width: 50%; 
		}
		
	}
   
/* ==========================================================================
   =Portfolio Grid
   ========================================================================== */

   .portfolio-grid {
		margin-bottom: 30px;
		list-style: none;
	}
	
	.portfolio-grid .item {
		float: left;
		width: 25%;
	}
	
	.portfolio-grid .portfolio-item { margin-bottom: 0; } 
	
	@media (min-width: 1400px) {
		
		.portfolio-grid .item { width: 20%; } 
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.portfolio-grid .item { width: 33.3333333333%; } 
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-grid .item {
			float: none;
			width: 100%; 
		}
		
	}
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.portfolio-grid .item {
			float: left;
			width: 50%; 
		}
		
	}
   
/* ==========================================================================
   =Portfolio Strip
   ========================================================================== */
   
   .portfolio-strip {
		margin-bottom: 30px;
		list-style: none;
	}
	
	.portfolio-strip .item {
		float: left;
		width: 25%;
	}
	
	.portfolio-strip .item:last-child { display: none; }
	
	.portfolio-strip .portfolio-item { margin-bottom: 0; } 
	
	@media (min-width: 1400px) {
		
		.portfolio-strip .item { width: 20%; }
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.portfolio-strip .item { width: 33.3333333333%; }
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-strip .item {
			float: none;
			width: 100%; 
		}
		
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.portfolio-strip .item {
			float: left;
			width: 50%; 
		}
		
	}
   
/* ==========================================================================
   =Contact form
   ========================================================================== */
  
	#contact-form { 
		overflow: hidden; 
		margin-bottom: 30px; 
	}
	
	#contact-form fieldset {}
	
	label.validation-error { color: #d50f25; }
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border-color: #d50f25; }
	
	#contact-form #formstatus {}
		
	#contact-form textarea {}	  
	
	#contact-form #submit {
		font-size: 16px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	#contact-form #submit:hover { background-color: #550000; }
	
	#restaurant {
		color: #d9b772;
		font-family: "Amaranth", sans-serif;
		font-size: 16px;
		font-weight: 700;
		text-transform: uppercase;
	}
        
        .wpcf7-form-control.wpcf7-text,
        .wpcf7-form-control.wpcf7-textarea { width:100%; }
        
        .wpcf7-form-control.wpcf7-submit {
                font-family: "Amaranth", sans-serif;
                font-size: 16px;
		font-weight: 700;
		text-transform: uppercase;
        }
        
        .wpcf7-form-control.wpcf7-submit:hover { background-color: #550000; }
	         
/* ==========================================================================
   =Blog
   ========================================================================== */

	.blog-post {
		position: relative;
		margin-bottom: 50px; 
	}
	
	.blog-post blockquote {
		position: relative;
		padding: 70px 70px 50px 120px;
		margin-bottom: 20px;
		background-color: #d9b772;
		color: #fff;
		font-size: 16px;
		line-height: 27px;
	}
	
	.blog-post blockquote:before {
		position: absolute;
		top: 20px;
		left: 40px;
		font-family: "Amaranth", sans-serif;
		font-size: 170px;
		line-height: 170px;
		content: "\201c";
	}
	
	.blog-post.img-left,
	.blog-post.img-right { 
		background-color: #350000;
		color: #fff;
	}
	
	.blog-post-title {
		font-size: 12px;
		font-style: italic;
	}
	
	.blog-post-title h3 {
		padding-bottom: 10px;
		border-bottom: 1px solid #d9b772;
		margin-bottom: 10px;
		font-family: "Open Sans", Arial, sans-serif;
		font-weight: 400;
	}
	
	.blog-post-title h3 a:hover { text-decoration: none; }
	
	.blog-post-thumb {
		position: relative;
		border: 2px solid #d9b772; 
		margin-bottom: 20px;
	}
	
	.blog-post-thumb img { 
		display: block;
		width: 100%;
	}
	
	.blog-post-date {
		position: absolute;
		top: 25px;
		width: 55px;
		height: 48px;
		padding-top: 7px;
		border-radius: 50%;
		color: #fff;
		font: 24px/24px "Amaranth", sans-serif;
		text-align: center;
	}
	
	.blog-post.img-left .blog-post-date {		
		left: 30px;
		background-color: #d9b772;
	}
	
	.blog-post.img-right .blog-post-date {
		right: 30px;
		background-color: #350000;
	}
	
	.blog-post-date small {
		display: block;
		font-size: 13px;
		line-height: 13px;
		text-transform: uppercase;
	}
	
	.blog-post-readmore {}
	
	.blog-post .btn { border-width: 1px; }
	
	.blog-post.img-left .btn,
	.blog-post.img-right .btn {
		border-color: #fff;
		color: #fff;
	}
	
	.blog-post.img-left a:hover,
	.blog-post.img-right a:hover { color: #fff; }
	
	.blog-post-overlay {
		position: absolute;
		z-index: 1;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgba(85, 0, 0, 0.85);
	}
	
	.blog-post-info {
		position: relative;
		z-index: 2;
	}
	
	.blog-post.img-left .blog-post-info { padding: 18px 25px 0 0; }
	.blog-post.img-right .blog-post-info { padding: 18px 0 0 25px; }
	
	.blog-post.img-left .blog-post-thumb,
	.blog-post.img-right .blog-post-thumb { 
		border: none;
		margin-bottom: 0;
	}
	
	@media (max-width: 767px) {
		
		.blog-post.img-left .blog-post-info,
		.blog-post.img-right .blog-post-info { padding: 20px 20px 0 20px; }
		
		.blog-post-date { top: 10px; }
		
		.blog-post.img-left .blog-post-date,
		.blog-post.img-right .blog-post-date { left: 10px; }
		
		.blog-post blockquote { padding: 30px 30px 10px 60px; }
		
		.blog-post blockquote:before {
			top: 10px;
			left: 20px;
			font-size: 80px;
			line-height: 80px;
		}
		
	}

/* ==========================================================================
   =Menu
   ========================================================================== */
	
	.menu-wrapper {}
	
	.menu-section { margin-bottom: 30px; }
	
	.menu-section-title {
		padding: 10px 0;
		border: 2px solid #d9b772;
		margin-bottom: 50px;
		background-color: #550000;
		text-align: center;
		text-transform: uppercase;
	}
	
	.menu-section-title h3 { margin-bottom: 0; }
	
	.menu-items { 
		border-bottom: 2px solid #d9b772;
		margin-bottom: 40px;
	}
	
	.menu-items-title { margin-bottom: 30px; }
	
	.menu-items-title h4 {
		position: relative;
		padding-right: 100px;
		margin-bottom: -7px;
		font-family: "Opne Sans", Arial, sans-serif;
		font-weight: 600;
		color: #2d2d2d;
		text-transform: uppercase;
	}
	
	.menu-items-price {
		position: absolute;
		bottom: 0;
		right: 0;
		color: #550000;
	}
	
	.menu-items-thumb {
		border: 2px solid #d9b772;
		margin-bottom: 20px;
	}
	
	.menu-items-thumb img {
		display: block;
		width: 100%;
	}
	
	.menu-items-description { margin-bottom: 30px; }

/* ==========================================================================
   =Fullwidth Section
   ========================================================================== */
   
	.fullwidth-section .headline h2,
	.fullwidth-section .toggle-item,
	.fullwidth-section .accordion-item,
	.fullwidth-section .icon-box-1 > i,
	.fullwidth-section .testimonial h3,
	.fullwidth-section .milestone .milestone-description,
	.fullwidth-section .milestone:hover .milestone-content { color: #fff; }
	
	.fullwidth-section .pie-chart-description h3,
	.fullwidth-section .milestone:hover .milestone-description { color: #d9b772; }
	
	.fullwidth-section .tabs-container .tabs-menu li a { border-top: none; }
	
	.fullwidth-section .horizontal-process-builder li i,
	.fullwidth-section .horizontal-process-builder li h1,
	.fullwidth-section .horizontal-process-builder li img { outline: 0; }
	
	.fullwidth-section .btn {
		border-color: #fff;
		color:  #fff;
	}
	
	@media (max-width: 767px) {

		.fullwidth-section {
			-webkit-background-size: cover;
					background-size: cover;		
		}
		
	}
	
/* ==========================================================================
   =WordPress Default Classes
   ========================================================================== */
   
    .nfw-inline-style { display: none; }
	
	.wp-caption {}
	
	.wp-caption-text {}
	
	.sticky {}
	
	.blog-post.sticky {
		padding: 60px 150px 40px 90px;
		border: 2px solid #d9b772;
		background: no-repeat center center;
		color: #fff;
	}
	
	.blog-post.sticky .btn {
		border-color: #fff;
		color: #fff;
	}
	
	.blog-post.sticky a:hover { color: #fff; }
	
	.gallery-caption {}
	
	.alignright  {}
	
	.alignleft  {}
	
	.aligncenter  {}
	
	.alignnone { margin: 5px 20px 20px 0; }

	.aligncenter,
	div.aligncenter {
		display: block;
		margin: 5px auto;
	}

	.alignright {
		float: right;
		margin: 5px 0 20px 20px;
	}

	.alignleft {
		float: left;
		margin: 5px 20px 20px 0;
	}

	.aligncenter {
		display: block;
		margin: 5px auto;
	}

	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-right: auto;
		margin-left: auto;
	}
	
	/**
 	 * 1. Image does not overflow the content area
 	 */
	
	.wp-caption {
		max-width: 96%; /* 1 */
		padding: 5px 3px 10px;
		border: 1px solid #e0e0e0;
		background: #fff;
		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 {
		max-width: 98.5%;
		width: auto;
		height: auto;
		padding: 0;
		border: none;
		margin: 0;
	}

	.wp-caption p.wp-caption-text {
		padding: 0 4px 5px 4px;
		margin: 0;
		font-size: 11px;
		line-height: 17px;		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.blog-post.sticky { padding: 30px 30px 10px 30px; }
			
	}
	
	@media (max-width: 767px) {
		
		.blog-post.sticky { padding: 30px 30px 10px 30px; }
			
	}
	
/* ==========================================================================
   =WordPress Widgets
   ========================================================================== */
	
/* =Widgets default
   ========================================================================== */
	
	.widget { margin-bottom: 40px; }
	
	.widget-title { 
		margin-bottom: 20px;
		line-height: 18px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
/* =Text Widget
   ========================================================================== */
	
	.widget_text {}
	
	.textwidget {}
	
/* =Search Widget
   ========================================================================== */
	
	.widget_search {}
	
	#searchform { position: relative; }
	
	.screen-reader-text { display: none; }
	
	#s { 
		display: inline-block; 
		width: 100%; 
		-webkit-box-sizing: border-box; 
		   -moz-box-sizing: border-box; 
		   		box-sizing: border-box; 
	}
	
	#searchsubmit {
		position: absolute;
		top: 0;
		right: 0;
		border: none;
		background: url(../images/bg-search.png) no-repeat center center; 
		vertical-align: inherit; 
	}

/* =Recent Entries Widget
   ========================================================================== */
	
	.widget_recent_entries {}
	
	.widget_recent_entries ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_recent_entries ul li {
		font-size: 13px;
		line-height: 21px;
	}
	
	.widget_recent_entries ul li img { 
		float: left;
		border: 2px solid #d9b772;
		border-radius: 50%;
		margin-right: 20px;
	} 
	
	.widget_recent_entries ul li > a { color: #2d2d2d; }
	
	.widget_recent_entries ul li .post-date { margin-left: 74px; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.widget_recent_entries ul li img { display: none; }
		.widget_recent_entries ul li .post-date { margin-left: 0; }
		
	}
	
/* =Pages Widget
   ========================================================================== */
	
	.widget_pages {}
	
	.widget_pages ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_pages ul li {
		padding-bottom: 10px;
		border-bottom: 2px dotted #d9b772;
		margin-bottom: 10px;
	}
	
	.widget_pages ul li:last-child {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.widget_pages a {
		font-size: 16px;
		color: #2d2d2d;
	}
	
	.widget_pages a:hover {
		color: #550000;
		text-decoration: none;
	}
	
/* =Archive Widget
   ========================================================================== */
	
	.widget_archive {}
	
	.widget_archive ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_archive ul li {
		padding-bottom: 10px;
		border-bottom: 2px dotted #d9b772;
		margin-bottom: 10px;
	}
	
	.widget_archive ul li:last-child {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.widget_archive a {
		font-size: 16px;
		color: #2d2d2d;
	}
	
	.widget_archive a:hover {
		color: #550000;
		text-decoration: none;
	}
	
	.widget_archive select {}
	
	.widget_archive option {}	
	
/* =Categories Widget
   ========================================================================== */
	
	.widget_categories {}
	
	.widget_categories ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_categories ul li {
		padding-bottom: 10px;
		border-bottom: 2px dotted #d9b772;
		margin-bottom: 10px;
	}
	
	.widget_categories ul li:last-child {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.widget_categories a {
		font-size: 16px;
		color: #2d2d2d;
	}
	
	.widget_categories a:hover {
		color: #550000;
		text-decoration: none;
	}
	
	.widget_categories ul ul.children {}
	
	.widget_categories select{}
	
	.widget_categories select#cat {}
	
	.widget_categories select.postform {}
	
	.widget_categories option {}
	
	.widget_categories .level-0 {}
	
	.widget_categories .level-1 {}
	
	.widget_categories .level-2 {}
	
	.widget_categories .level-3 {}
	
/* =Meta Widget
   ========================================================================== */
	
	.widget_meta {}
	
	.widget_meta ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_meta ul li {
		padding-bottom: 10px;
		border-bottom: 2px dotted #d9b772;
		margin-bottom: 10px;
	}
	
	.widget_meta ul li:last-child {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.widget_meta a {
		font-size: 16px;
		color: #2d2d2d;
	}
	
	.widget_meta a:hover {
		color: #550000;
		text-decoration: none;
	}
	
/* =Recent Comments Widget
   ========================================================================== */
	
	.widget_recent_comments {}
	
	#recentcomments {
		margin-bottom: 0;
		list-style: none; 
	}
	
	#recentcomments li {}
	
	#recentcomments li a {}
	
	.recentcomments {}
	
/* =Tag Cloud Widget
   ========================================================================== */
	
	.widget_tag_cloud {}
	
	.widget_tag_cloud a {}
	
	.widget_tag_cloud a {
		position: relative;
		z-index: 2;
		display: inline-block; 
		padding: 0 7px; 
		border: 1px solid #d9b772;
		margin: 0 5px 10px 0;
		color: #d9b772;
		font-size: 12px;
		font-style: italic; 
		text-decoration: none;
		cursor: pointer;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	.widget_tag_cloud a:after {
		position: absolute;
		z-index: -1;
		top: 50%;
		left: 0;
		width: 100%;
		height: 0;
		background-color: #550000;
		opacity: 0;
		content: "";
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget_tag_cloud a:hover:after {
		height: 100%; 
		opacity: 1; 
	}
	
	.widget_tag_cloud a:hover { background-color: transparent; }	
	
/* =Calendar Widget
   ========================================================================== */
	
	.widget_calendar {}
	
	#calendar_wrap {}
	
	#calendar_wrap th {}
	
	#calendar_wrap td {}
	
	#wp-calendar tr td {}
	
	#wp-calendar caption {}
	
	#wp-calendar a {}
	
	#wp-calendar #today {}
	
	#wp-calendar #prev {}
	
	#wp-calendar #next {}
	
	#wp-calendar #next a {}
	
	#wp-calendar #prev a {}
	
/* =Nav Menu Widget
   ========================================================================== */
	
	.widget_nav_menu {}	
	
	.widget_nav_menu ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_nav_menu ul li {
		padding-bottom: 10px;
		border-bottom: 2px dotted #d9b772;
		margin-bottom: 10px;
	}
	
	.widget_nav_menu ul li:last-child {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.widget_nav_menu a {
		font-size: 16px;
		color: #2d2d2d;
	}
	
	.widget_nav_menu a:hover {
		color: #550000;
		text-decoration: none;
	}
	
/* =RSS Widget
   ========================================================================== */
	
	.widget_rss {}
	
	.widget_rss ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
/* ==========================================================================
   =WordPress Custom Widgets
   ========================================================================== */
   
/* =nfw Twitter widget
   ========================================================================== */
	
	.nfw_widget_latest_tweets{}
	
	.nfw-tweet-list .tweet { word-wrap: break-word; }
	
	.nfw-tweet-list ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.nfw-tweet-list .interact { text-align: center; }
	
	.nfw-tweet-list .interact a { margin-right: 10px; }
	
	.nfw-tweet-list .interact a:last-child { margin-right: 0; }
	
/* =nfw Flickr widget
   ========================================================================== */
	
	.nfw_widget_flickr {}
	
	.flickr-feed {}
	
	.flickr-feed .flickr_badge_image { display: inline; }
	
	.flickr-feed img { 
		width: 65px; 
		height: auto;
		padding: 0 5px 0 0; 
		border: none;
	}
	
	@media (min-width: 1400px) {
		
		.flickr-feed img { 
			width: 70px;
			padding: 0 15px 15px 0; 
		}
		
	}
	
/* =nfw Contact Info widget
   ========================================================================== */	
	
	.nfw_widget_contact_info {}
	
	.nfw_widget_contact_info ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.nfw_widget_contact_info ul li {
		position: relative;
		padding-left: 30px;
		margin-bottom: 5px; 
	}
	
	.nfw_widget_contact_info ul li:last-child { margin-bottom: 0; }
	
	.nfw_widget_contact_info ul li i {
		position: absolute;
		top: 7px;
		left: 0;
	}
	
	.nfw_widget_contact_info ul li a { color: #2d2d2d; }
	
/* =nfw Newsletter subscribe widget
   ========================================================================== */

	.nfw_widget_newsletter {}
	
	#newsletter-subscribe-form {}
	
	#newsletter-subscribe-form input[type="text"] { width: 100%; }
	
	#newsletter-subscribe-form input[type="submit"] {}
	
	#newsletter-subscribe-form input[type="submit"]:hover { background-color: #550000; }

/* =nfw Latest posts widget
   ========================================================================== */

	.nfw_widget_latest_posts {}
	
	.nfw_widget_latest_posts ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.nfw_widget_latest_posts ul li { margin-bottom: 30px; }
	.nfw_widget_latest_posts ul li:last-child { margin-bottom: 0; }
	
	.nfw_widget_latest_posts ul li a { 
		display: inline-block; 
		margin-top: 12px;
	}
	
	.nfw_widget_latest_posts ul li img { 
		float: left;
		margin: 5px 10px 5px 0;
	}
	
	.nfw_widget_latest_posts ul li .title {}	

	/*
	 * 1. Clearfix hack 
	 */
	 
	.nfw_widget_latest_posts ul li:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.nfw_widget_latest_posts ul li img { 
			float: none;
			display: block;
		}
		
	}
	
/* =nfw Navigation widget
   ========================================================================== */
	
	.nfw_widget_navigation {}
	
	.nfw_widget_navigation ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.nfw_widget_navigation ul li {
		padding-bottom: 10px;
		border-bottom: 2px dotted #d9b772;
		margin-bottom: 10px;
	}
	
	.nfw_widget_navigation ul li:last-child {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.nfw_widget_navigation a {
		font-size: 16px;
		color: #2d2d2d;
	}
	
	.nfw_widget_navigation a:hover {
		color: #550000;
		text-decoration: none;
	}

/* =nfw Social media widget
   ========================================================================== */
	
	.nfw_widget_social_media {}
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.nfw_widget_social_media:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}	

/* ==========================================================================
   =WordPress Comments
   ========================================================================== */
   
	.comments-area { margin-top: 50px; }
	
	.comments-title {
		font-weight: 700;
		text-transform: uppercase; 
	}
	
	.comment-reply-title {
            font-weight: 700;
            text-transform: uppercase; 
        }
	
	.commentlist .reply {}
	
	.commentlist .reply a {
		position: relative;
		z-index: 2;
		display: inline-block; 
		padding: 2px 10px; 
		border: 1px solid #d9b772;
		border-radius: 2px;
		margin-left: 114px;
		color: #d9b772;
		font-family: 'Amaranth', sans-serif;
		font-size: 13px; 
		text-decoration: none !important;
		cursor: pointer;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	.commentlist .reply a:after {
		position: absolute;
		z-index: -1;
		top: 50%;
		left: 0;
		width: 100%;
		height: 0;
		background-color: #550000;
		opacity: 0;
		content: "";
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.commentlist .reply a:hover:after {
		height: 100%; 
		opacity: 1; 
	}
	
	.commentlist .reply a:hover { background-color: transparent; }
	
	.commentlist .alt {}
	
	.commentlist .odd {}
	
	.commentlist .even {}
	
	.commentlist .thread-alt {}
	
	.commentlist .thread-odd {}
	
	.commentlist .thread-even {}
	
	.commentlist li ul.children .alt {}
	
	.commentlist li ul.children .odd {}
	
	.commentlist li ul.children .even {}
	
	.commentlist .vcard {}
	
	.commentlist .vcard .fn {
		display: block;
		border-bottom: 1px solid #d9b772;
		margin-left: 114px;
	}
	
	.commentlist .vcard span.says { display: none; }
	
	.commentlist .vcard img.photo {
		float: left;
		border: 2px solid #d9b772;
		border-radius: 50%;
		margin-right: 30px;
	}
	
	.commentlist .vcard img.avatar {}
	
	.commentlist .vcard .fn a.url {
		display: inline-block;
		padding-bottom: 5px;
		margin-bottom: 5px;
		font-family: "Amaranth", sans-serif;
		font-size: 16px;
	}
	
	.commentlist .comment-meta {
		margin-bottom: 20px;
		font-size: 12px; 
	}
	
	.commentlist .comment-meta a {}
	
	.commentlist .commentmetadata {}
	
	.commentlist .commentmetadata a {}
	
	.commentlist .parent {}
	
	.commentlist .comment {}
	
	.commentlist .children {}
	
	.commentlist .pingback {}
	
	.commentlist .bypostauthor {}
	
	.commentlist .comment-author {}
	
	.commentlist .comment-author-admin {}
	
	.commentlist {
		margin-top: 40px;
		list-style: none; 
	}
	
	.commentlist li {}
	
	.commentlist li .comment-body { margin-bottom: 40px; }
	
	.commentlist li p { margin-left: 114px; }
	
	.commentlist li ul {
		margin-left: 0;
		list-style: none; 
	}
	
	.commentlist li ul.children li {}
	
	.commentlist li ul.children li.alt {}
	
	.commentlist li ul.children li.byuser {}
	
	.commentlist li ul.children li.comment {}
	
	.commentlist li ul.children li.bypostauthor {}
	
	.commentlist li ul.children li.comment-author-admin {}
	
	#cancel-comment-reply {}
	
	#cancel-comment-reply a {}
	
	@media (max-width: 767px) {
		
		.commentlist .vcard img.photo { 
			float: none;
			margin-right: 0;
			margin-bottom: 15px;
		}
				
		.commentlist li p,
		.commentlist .reply a,
		.commentlist .vcard .fn { margin-left: 0; }
		
	}
        
	.nfw-comment-nav { margin-bottom: 50px; }
        
/* ==========================================================================
   =WordPress Comment Form
   ========================================================================== */	
   
	.nocomments { display: none; }
	
	.must-log-in { display: none; }
	
	.logged-in-as { display: none; }
	
	.section-heading {
		font-weight: 700;
		text-transform: uppercase; 
	}

	#commentform { margin: 40px 0; }
	
	.comment-notes { display: none; }
	
	.comment-form-author {}
	
	.comment-form-author label { display: none; }
	
	.comment-form-author input#author {}
	
	.comment-form-email {}
	
	.comment-form-email label { display: none; }
	
	.comment-form-email input#email {}
	
	.comment-form-url {}
	
	.comment-form-url label { display: none; }
	
	.comment-form-url input#url {}
	
	#commentform .required {}
	
	.comment-form-comment {}
	
	.comment-form-comment label { display: none; }
	
	.comment-form-comment textarea#comment {}
	
	.form-allowed-tags { display: none; }
	
	.form-allowed-tags code {}
	
	.form-submit {}
	
	#commentform #submit {
		display: block;
		width: 100%;
		padding: 10px 0;
		font-size: 18px;
		background-color: #d9b772;
		color: #fff;
		text-transform: uppercase;
	}
	#commentform #submit:hover { background-color: #550000; }

/* ==========================================================================
   =Rev Slider Pager
   ========================================================================== */

   /**
 	 * 1. changing the z-index from 1000 so that the bullets don't go over the sticky menu
 	 */
   
	.tp-bullets { 
		z-index: 100; /* 1 */
	}
	   
	.tp-bullets.simplebullets.round .bullet {
		width: 9px;
		height: 9px;
		border: 1px solid #d9b772;
		border-radius: 50px;
		margin: 0 3px;
		background: #d9b772;
		background-clip: padding-box;
	}

	.tp-bullets.simplebullets.round .bullet:hover,
	.tp-bullets.simplebullets.round .bullet.selected { 
		background: #550000;  
		background-clip: padding-box;
	}

/* ==========================================================================
   =Rev Slider Nav
   ========================================================================== */

	.tp-leftarrow.default,
	.tp-rightarrow.default {
		width: 45px;
		height: 45px;
		border: 2px solid #d9b772;
		border-radius: 50%;
	}

	.tp-leftarrow.default { background: #d9b772 url(../images/left.png) no-repeat center center; }
	.tp-rightarrow.default { background: #d9b772 url(../images/right.png) no-repeat center center; }
	
	.tp-leftarrow.default:hover,
	.tp-rightarrow.default:hover { background-color: #550000; }
	
/* ==========================================================================
   =Rev Slider Typography
   ========================================================================== */
   
   	.caption.title-bg {
		padding: 30px;
		border: 2px solid #d9b772;
		background-color: rgba(85, 0, 0, 0.5);
		color: #d9b772;
		font: 72px/72px "Amaranth", sans-serif;
		text-transform: uppercase;
	}
	
	.caption.title-bg span { color: #fff; }
	
	.caption.title {
		color: #d9b772;
		font: 72px/72px "Open Sans", Arial, sans-serif;
		font-weight: 900;
		text-transform: uppercase;
	}
	
	.caption.subtitle {
		color: #550000;
		font: 48px/60px "Open Sans", Arial, sans-serif;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.caption.text { 
		color: #2d2d2d;
		font: 18px/28px "Open Sans", Arial, sans-serif;
	}
	
	.caption .btn { color: #d9b772; }

	@media (min-width: 768px) and (max-width: 979px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.caption .btn {
			padding: 10px 15px;
			font-size: 12px;
		}
		
	}

	@media (max-width: 767px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.tp-bullets { bottom: 20px !important; }
		
		.caption .btn {
			padding: 3px 6px;
			font-size: 6px;
		}
		
	}        