<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * 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: 785px !important; /* 1 */
	}

	.slider-revolution.fullwidthbanner-container .fullwidthbanner {
		max-height: 785px !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: 8px;
		height: 8px;
		border-radius: 50%;
		margin: 0 3px;
		border: 1px solid #fff;
		background: transparent;
	}

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

/* ==========================================================================
   =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: #1c1c1c url(../../../images/left.png) no-repeat center center; }
	.tp-rightarrow.default { background: #1c1c1c url(../../../images/right.png) no-repeat center center; }
	
/* ==========================================================================
   =Rev Slider Typography 
   ========================================================================== */
   
   	.caption.title {
		color: #fff;
		font-family: "Prata", Arial, sans-serif;
		font-size: 24px;		
	}
	
	.caption.title:after {
		display: block;
		width: 50px;
		border-bottom: 2px solid #fff;
		margin: 15px auto 0 auto;
		content: "";
	}
	
	.caption.title-2 {
		color: #1c1c1c;
		font-family: "Prata", Arial, sans-serif;
		font-size: 24px;		
	}
	
	.caption.title-2:after {
		display: block;
		width: 50px;
		border-bottom: 2px solid #1c1c1c;
		margin-top: 20px;
		content: "";
	}
	
	.caption.subtitle {
		color: #fff;
		font-family: "Prata", Arial, sans-serif;
		font-size: 32px;
		line-height: 38px;
		text-align: center;
	}
	
	.caption.subtitle small { font-size: 65%; }
	
	.caption.text {
		color: #fff;
		font-size: 14px;		
	}
	
	.caption.text-2 {
		color: #1c1c1c;
		font-size: 16px;		
	}
	
	.caption .btn { color: #fff; }
	.caption .btn:hover { color: #1c1c1c; }
	
	.caption .btn.alt { border-color: #fff; }
	
	.caption .btn.alt:hover  {
		border-color: #1c1c1c;
		color: #fff; 
	}
	

	@media (min-width: 768px) and (max-width: 991px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.caption.title:after,
		.caption.title-2:after { margin-top: 7px; }
		
		.caption .btn {
			padding: 5px 15px;
			font-size: 10px;
		}
		
	}

	@media (max-width: 767px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.tp-bullets { bottom: 20px !important; }
		
		.caption.title:after,
		.caption.title-2:after { display: none; }
		
		.caption .btn {
			padding: 0 5px;
			font-size: 6px;
			line-height: 12px
		}
		
	}
</pre></body></html>