/**
 * 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: 590px !important; /* 1 */
		border-top: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 90px; 
	}

	.slider-revolution.fullwidthbanner-container .fullwidthbanner {
		max-height: 610px !important; /* 1 */
	}

/* ==========================================================================
   =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: #7b868c;
	}

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

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

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

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

	.tp-leftarrow.default { background: #28353e url(../../../images/left.png) no-repeat center center; }
	.tp-rightarrow.default { background: #28353e url(../../../images/right.png) no-repeat center center; }
	
/* ==========================================================================
   =Rev Slider Typography 
   ========================================================================== */
   
   	.caption.title {
		color: #28353e;
		font-size: 18px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.caption.text {
		color: #fff;
		font-size: 30px;
		line-height: 39px;
		font-weight: 300;
	}
	
	.caption.text-2 {
		color: #7b868c;
		font-size: 24px;
		line-height: 39px;
		font-weight: 300;
	}
	
	.caption.text-3 {
		color: #7b868c;
		font-size: 18px;
		line-height: 39px;
		font-weight: 400;
	}
	
	.caption .btn {
		padding: 10px 25px; 
		color: #fff;
		font-size: 18px;
	}
	
	.caption .btn:hover { color: #fff; }
	.caption .btn.alt:hover { color: #98d4ec; }
	

	@media (min-width: 768px) and (max-width: 991px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.caption .btn {
			padding: 7px 20px; 
			color: #fff;
			font-size: 14px;
		}
		
	}

	@media (max-width: 767px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.tp-bullets { bottom: 20px !important; }
		
		.caption .btn {
			padding: 0 10px; 
			color: #fff;
			font-size: 8px;
		}
		
	}
