/* ==========================================================================
   =Revolution Slider
   ========================================================================== */
   
/* =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.default .tp-bullet {
		width: 6px;
		height: 6px;
		border: 3px solid #bbb;
		background: transparent;
	}

	.tp-bullets.default .tp-bullet:hover,
	.tp-bullets.default .tp-bullet.selected { border-color: #323232; }

/* =Rev Slider navigation
   ========================================================================== */

	.tp-leftarrow.default,
	.tp-rightarrow.default {
		width: 50px;
		height: 50px;
		background-color: #fff;
	}
	
	.tp-leftarrow.default:before,
	.tp-rightarrow.default:before {
		font-family: "FontAwesome";
		color: #323232;
		font-size: 32px;
		line-height: 50px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.tp-leftarrow.default:hover:before,
	.tp-rightarrow.default:hover:before { 
		background-color: #7da7d9;
		color: #fff;
	}
	
	.tp-leftarrow.default:before { content: "\f104"; }
	.tp-rightarrow.default:before { content: "\f105"; }
	
	@media (max-width: 767px) {
		
		.tp-caption .btn {
			padding: 5px 15px;
			font-size: 8px;
			line-height: 12px;
		}
		
	}