/**
 * Name: custom.css
 *
 *	T.O.C
 *
 *	=Basics
 *	=Rev Slider Pager
 *	=Rev Slider Nav 
 *	=Rev Slider Typography 
 *
 */
 
 
/* ==========================================================================
   =Basics
   ========================================================================== */
   
	.fullwidthbanner-container {
		position: relative;
		overflow: hidden;
		width: 100% !important;
		padding: 0;
		margin: 0; 
	}

	.fullwidthbanner-container ul { list-style: none; }

	.fullwidthbanner-container .fullwidthbanner {
		position: relative;
		width: 100% !important;
	}
	
	/**
 	 * 1. We apply the max-height using an extra class to make the transition to WP more easy
	 *    If we apply the max-heigh directly to .fullwidthbanner-container, in WP, it would overwrite the height setting you make in the plugin
 	 */
	
	.slider-revolution.fullwidthbanner-container {
		max-height: 900px !important; /* 1 */ 
	}

	.slider-revolution.fullwidthbanner-container .fullwidthbanner {
		max-height: 900px !important; /* 1 */
	}
	
	.slider-revolution.fullwidthbanner-container ul li .slide-overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: url(../../../images/pattern.png) repeat top left;
	}

/* ==========================================================================
   =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: 12px;
		height: 12px;
		border-radius: 50%;
		margin: 0 3px;
		background: #fff;
	}

	.tp-bullets.simplebullets.round .bullet.selected { background: #d4ae60;  }

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

	.tp-leftarrow.default,
	.tp-rightarrow.default {
		width: 60px;
		height: 60px;
		opacity: 0.5;
	}

	.tp-leftarrow.default:hover,
	.tp-rightarrow.default:hover { opacity: 1; }

	.tp-leftarrow.default { background: #111 url(../../../images/left.png) no-repeat center center; }
	.tp-rightarrow.default { background: #111 url(../../../images/right.png) no-repeat center center; }
	
/* ==========================================================================
   =Rev Slider Typography 
   ========================================================================== */
   
   	.caption.letters {
		color: #fff;
		font-size: 72px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.caption.letters-2 {
		color: #fff;
		font-size: 260px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.caption.title {
		padding: 15px;
		background-color: #d4ae60;
		color: #fff;
		font-size: 28px;
		font-weight: 400;
		line-height: 28px;
		text-transform: uppercase;
	}
	
	.caption.title:before { display: none; }
	
	.caption.subtitle {
		color: #fff;
		font-size: 21px;
		font-weight: 600;
		text-transform: uppercase;
	}
	
	.caption.text { color: #fff; }
	
	.caption .btn {
		padding: 5px 10px;
		border-color: #fff;
		background-color: transparent;
		color: #fff;
	}
	
	.caption .btn:hover { color: #fff; }
	
	@media (min-width: 1200px) {
   
		.caption .btn { padding: 15px 20px; }
   
   }
   

	@media (min-width: 768px) and (max-width: 991px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.caption .btn { padding: 5px 10px; }
		
	}

	@media (max-width: 767px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.tp-bullets { bottom: 20px !important; }
		
		.caption .btn { 
			padding: 2px 5px; 
			line-height: 10px;
		}
		
	}
