/*
	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

==========================================================================================================================================*/

.full_width_carousel_wrapper {

	overflow: hidden;
	max-height: 650px;
	position: relative;

}

.full_width_carousel_wrapper > .carousel-inner > .item > img,
.full_width_carousel_wrapper > .carousel-inner > .item > a > img {

	opacity: 0.6;
	margin: auto;
	width: 100% !important;

}

/*========== LEFT/RIGHT CONTROL ==========*/

.full_width_carousel_control_left,
.full_width_carousel_control_right {

	top: 50%;
	z-index: 2;
	opacity: 0;
	width: 55px;
	height: 55px;
	border: none;
	text-align: center;
	
	-webkit-border-radius: 100%; /* Chrome, Safari, Opera */
			border-radius: 100%; /* Standard syntax */

	-webkit-transition: all ease-in-out 0.3s; /* Chrome, Safari, Opera */
            transition: all ease-in-out 0.3s; /* Standard syntax */

}

.full_width_carousel_wrapper:hover .full_width_carousel_control_left,
.full_width_carousel_wrapper:hover .full_width_carousel_control_right {

	opacity: 0.7;

}

.full_width_carousel_control_icons {

	line-height: 50px;
	font-size: 34px !important;
	font-weight: normal !important;

}

.full_width_carousel_control_left {

	left: 1% !important;

}

.full_width_carousel_control_right {

	right: 1% !important;

}


/*========== CAPTION ==========*/

.full_width_carousel_caption {

	left: 10%;
	z-index: 1;
	width: 35%;
	bottom: 45%;
	text-shadow: none;
	text-align: center;
	padding: 20px 20px 20px 20px;
	font-family: 'Raleway', sans-serif;

}

.full_width_carousel_caption_right {

	left: 56%;

}

.full_width_carousel_caption_center {

	left: 15%;
	width: 70%;

}

.full_width_carousel_caption h2 {

	font-size: 30px;
	margin: 0px 0px 15px 0px;
	
	-webkit-animation-delay: 1s; /* Chrome, Safari, Opera */
            animation-delay: 1s; /* Standard syntax */

	-webkit-animation-timing-function: cubic-bezier(.65,1.95,.03,.32); /* Chrome, Safari, Opera */
			animation-timing-function: cubic-bezier(.65,1.95,.03,.32); /* Chrome, Safari, Opera */

}

.full_width_carousel_caption h1 {

	font-size: 45px;
	font-weight: 800;
	margin: 0px 0px 40px 0px;
	text-transform: capitalize;

	-webkit-animation-delay: 1.5s; /* Chrome, Safari, Opera */
            animation-delay: 1.5s; /* Standard syntax */

	-webkit-animation-timing-function: cubic-bezier(.65,1.95,.03,.32); /* Chrome, Safari, Opera */
			animation-timing-function: cubic-bezier(.65,1.95,.03,.32); /* Chrome, Safari, Opera */

}

.full_width_carousel_button_colored,
.full_width_carousel_button_colored:visited {

	outline: 0;
	width: auto;
	height: 44px;
	border: none;
	margin: 0 10px;
	padding: 0 23px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	text-align: left;
	text-shadow: none;
	line-height: 44px;
	position: relative;
	font-style: normal;
	white-space: nowrap;
	letter-spacing: 1px;
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none !important;
	font-family: 'Raleway', sans-serif;

	-webkit-border-radius: 4px; 
	   -moz-border-radius: 4px;
	        border-radius: 4px; 

	-webkit-box-sizing:initial !important;
	   -moz-box-sizing:initial !important;
			box-sizing:initial !important;
			
 	-webkit-transform: translateZ(0); /* Chrome, Safari, Opera */
            transform: translateZ(0); /* Standard syntax */

  -webkit-backface-visibility: hidden; /* Chrome, Safari, Opera */
		  backface-visibility: hidden; /* Standard syntax */

	-webkit-transition: color 0.3s ease-in-out 0s; /* Chrome, Safari, Opera */
            transition: color 0.3s ease-in-out 0s; /* Standard syntax */
			
	-webkit-animation-delay: 2s; /* Chrome, Safari, Opera */
            animation-delay: 2s; /* Standard syntax */
			
	-webkit-animation-timing-function: cubic-bezier(.65,1.95,.03,.32); /* Chrome, Safari, Opera */
			animation-timing-function: cubic-bezier(.65,1.95,.03,.32); /* Chrome, Safari, Opera */

}

.full_width_carousel_button_colored:before {

	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	z-index: -1;
	position: absolute;

	-webkit-border-radius: 4px; 
	   -moz-border-radius: 4px;
	        border-radius: 4px; 

	-webkit-transform: scaleY(1); /* Chrome, Safari, Opera */
			transform: scaleY(1); /* Standard syntax */

	-webkit-transform-origin: 50%; /* Chrome, Safari, Opera */
			transform-origin: 50%; /* Standard syntax */

	-webkit-transition: -webkit-transform 0.3s ease-in-out 0s; /* Chrome, Safari, Opera */
            transition:         transform 0.3s ease-in-out 0s; /* Standard syntax */

}

.full_width_carousel_button_colored:hover,
.full_width_carousel_button_colored:active,
.full_width_carousel_button_colored:focus {

	box-shadow: none;	
	outline: none !important;

}

.full_width_carousel_button_colored:hover:before,
.full_width_carousel_button_colored:focus:before,
.full_width_carousel_button_colored:active:before {

	-webkit-transform: scaleY(0); /* Chrome, Safari, Opera */
			transform: scaleY(0); /* Chrome, Safari, Opera */

}


/*==========================================================================================================================================

															RESPONSIVE

==========================================================================================================================================*/


/*==================================================  MEDIA 480px  ==================================================*/


@media only screen and (max-width: 480px) {


	/*========== LEFT/RIGHT CONTROL ==========*/

	.full_width_carousel_control_left,
	.full_width_carousel_control_right {

		border: none;

	}
	
	.full_width_carousel_control_icons {

		font-size: 18px !important;

	}

	/*========== CAPTION ==========*/

	.full_width_carousel_caption {

		left: 0%;
		width: 100%;
		bottom: 5%;
		padding: 5px 5px 5px 5px;

		-webkit-border-radius: 0px; /* Chrome, Safari, Opera */
				border-radius: 0px; /* Standard syntax */

	}

	.full_width_carousel_caption h2 {

		font-size: 20px;
		margin: 0px 0px 10px 0px;

	}

	.full_width_carousel_caption h1 {

		font-size: 25px;
		margin: 0px 0px 10px 0px;

	}

	.full_width_carousel_button_colored,
	.full_width_carousel_button_colored:visited {

		margin: 0 0;
		height: 34px;
		padding: 0 13px;
		line-height: 34px;

	}

}


/*==================================================  MEDIA 481px - 600px  ==================================================*/


@media (min-width: 481px) and (max-width: 600px) {


	/*========== LEFT/RIGHT CONTROL ==========*/

	.full_width_carousel_control_left,
	.full_width_carousel_control_right {

		border: none;

	}

	/*========== CAPTION ==========*/

	.full_width_carousel_caption {

		left: 0%;
		bottom: 5%;
		width: 100%;

	}

}


/*==================================================  MEDIA 601px - 767px  ==================================================*/


@media (min-width: 601px) and (max-width: 767px) {

	/*========== CAPTION ==========*/

	.full_width_carousel_caption {

		left: 0%;
		bottom: 15%;
		width: 100%;

	}

}


/*==================================================  MEDIA 768px - 991px  ==================================================*/


@media (min-width: 768px) and (max-width: 991px) {

	/*========== CAPTION ==========*/

	.full_width_carousel_caption {

		bottom: 20%;

	}

}


/*==================================================  MEDIA 992px - 1250px  ==================================================*/


@media (min-width: 992px) and (max-width: 1250px) {

	/*========== CAPTION ==========*/

	.full_width_carousel_caption {

		bottom: 25%;

	}

}


/*==========================================================================================================================================

														COLORS (ORANGE)

==========================================================================================================================================*/

.full_width_carousel_wrapper {

	background: #000000;

}

/*========== LEFT/RIGHT CONTROL ==========*/

.full_width_carousel_control_left,
.full_width_carousel_control_left:hover,
.full_width_carousel_control_left:active,
.full_width_carousel_control_left:focus,
.full_width_carousel_control_right,
.full_width_carousel_control_right:hover,
.full_width_carousel_control_right:active,
.full_width_carousel_control_right:focus {

	color: #ffffff;
	background: #f9bf36 !important;

}

/*=============== CAPTION ===============*/

.full_width_carousel_caption h2,
.full_width_carousel_caption h1 {

	color: #ffffff;

}

.full_width_carousel_button_colored,
.full_width_carousel_button_colored:visited {

	color: #ffffff;

}

.full_width_carousel_button_colored:hover,
.full_width_carousel_button_colored:active,
.full_width_carousel_button_colored:focus {

	color: #ffffff !important;

}

.full_width_carousel_button_colored,
.full_width_carousel_button_colored:visited {

	background: #000000;

}

.full_width_carousel_button_colored:hover,
.full_width_carousel_button_colored:active,
.full_width_carousel_button_colored:focus {

	background: #000000 !important;

}

.full_width_carousel_button_colored:before {

	background: #f9bf36;

}

/*=============== MEDIA QUERIES ===============*/

@media only screen and (max-width: 600px) {
	
	/*========== LEFT/RIGHT CONTROL ==========*/
	
	.full_width_carousel_control_left,
	.full_width_carousel_control_right,
	.full_width_carousel_control_left:hover,
	.full_width_carousel_control_left:active,
	.full_width_carousel_control_left:focus,
	.full_width_carousel_control_right:hover,
	.full_width_carousel_control_right:active,
	.full_width_carousel_control_right:focus	{

		background: transparent !important;

	}

}

/*================================================================  END  ================================================================*/