/*
	StyleSheet For Responsive Bootstrap Carousel

	Item Name: Responsive Bootstrap Carousel
	Item URL: 
	Description: Different Types of Bootstrap Carousel
	Author: SZThemes
	Author URI: http://codecanyon.net/user/sz_themes
	Version: 1.0


								Content List
  -----------------------------------------------------------------------------------

	NAME ----------------------------------------LINE NUMBER--------------------- #

	FULL WIDTH CAROUSEL -------------------------54------------------------------ 01

	RESPONSIVE ----------------------------------275----------------------------- 02	

	COLORS --------------------------------------422----------------------------- 03	


	[ Note: Line Numbers Are According To Notepad++ ]


  ------------------------------------------------------------------


							Fonts Styles
  ------------------------------------------------------------------

	  'Raleway', sans-serif ---------------------------------- 01
	            FontAwesome ---------------------------------- 02

  ------------------------------------------------------------------


							Color Codes
  ------------------------------------------------------------------

	NAME    ------------------------RGB-------------------------- #
	
	#ffffff -------------------rgb(255, 255, 255)---------------- 01
	#000000 -------------------rgb(0, 0, 0)---------------------- 02
	#f9bf36 -------------------rgb(249, 191, 54)----------------- 03 Replace Only This Color To Change Whole Color Scheme
	#282828 -------------------rgb(40, 40, 40)------------------- 04 

*/


/*==========================================================================================================================================

														FULL WIDTH CAROUSEL

==========================================================================================================================================*/

.post_carousel_wrapper {

	overflow: hidden;
	position: relative;

}

.post_carousel_wrapper > .carousel-inner > .item > img,
.post_carousel_wrapper > .carousel-inner > .item > a > img {

	opacity: 0.5;
	margin: auto;
	width: 100% !important;

}

/*========== INDICATORS CONTROL ==========*/

.post_carousel_indicators {

	bottom: 0px;

}

.post_carousel_indicators li {

	-webkit-border-radius: 0px; /* Chrome, Safari, Opera */
		    border-radius: 0px; /* Standard syntax */
}

/*========== CAPTION ==========*/

.post_carousel_caption {

	left: 0%;
	z-index: 1;
	width: 100%;
	bottom: 20%;
	text-shadow: none;
	text-align: center;
	font-family: 'Open Sans', sans-serif;

}

.post_carousel_caption h1 {

	font-size: 45px;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;

	-webkit-animation-delay: 1s; /* Chrome, Safari, Opera */
            animation-delay: 1s; /* Standard syntax */

}

.post_carousel_caption h2 {

	font-size: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
	
	-webkit-animation-delay: 1.5s; /* Chrome, Safari, Opera */
            animation-delay: 1.5s; /* Standard syntax */

}

/*==========================================================================================================================================

															RESPONSIVE

==========================================================================================================================================*/


/*==================================================  MEDIA 480px  ==================================================*/


@media only screen and (max-width: 480px) {


	/*========== INDICATORS CONTROL ==========*/

	.post_carousel_indicators {

		bottom: -10px;

	}

	/*========== CAPTION ==========*/

	.post_carousel_caption h1 {

		font-size: 16px;
		margin: 0px 0px 0px 0px;

	}
	
	.post_carousel_caption h2 {

		font-size: 14px;
		margin: 0px 0px 0px 0px;

	}

}


/*==================================================  MEDIA 481px - 600px  ==================================================*/


@media (min-width: 481px) and (max-width: 600px) {


	/*========== INDICATORS CONTROL ==========*/

	.post_carousel_indicators {

		bottom: -10px;

	}

	/*========== CAPTION ==========*/

	.post_carousel_caption h1 {

		font-size: 25px;
		margin: 0px 0px 0px 0px;

	}
	
	.post_carousel_caption h2 {

		font-size: 20px;
		margin: 0px 0px 0px 0px;

	}

}


/*==================================================  MEDIA 601px - 767px  ==================================================*/


@media (min-width: 601px) and (max-width: 767px) {

	/*========== INDICATORS CONTROL ==========*/

	.post_carousel_indicators {

		bottom: -10px;

	}

	/*========== CAPTION ==========*/

	.post_carousel_caption h1 {

		font-size: 30px;

	}
	
	.post_carousel_caption h2{

		font-size: 30px;
		margin: 0px 0px 0px 0px;

	}

}


/*==========================================================================================================================================

														COLORS (BLACK AND WHITE)

==========================================================================================================================================*/

.post_carousel_wrapper {

	background: #000000;

}

/*=============== CAPTION ===============*/

.post_carousel_caption h2,
.post_carousel_caption h1 {

	color: #ffffff;

}

/*================================================================  END  ================================================================*/