/*
	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--------------------- #

	TEAM COLUMNS CAROUSEL -----------------------54------------------------------ 01

	RESPONSIVE ----------------------------------213----------------------------- 02	

	COLORS --------------------------------------248----------------------------- 03	


	[ Note: Line Numbers Are According To Notepad++ ]


  ------------------------------------------------------------------


							Fonts Styles
  ------------------------------------------------------------------

	  'Open Sans', sans-serif -------------------------------- 01
	            FontAwesome ---------------------------------- 02

  ------------------------------------------------------------------


							Color Codes
  ------------------------------------------------------------------

	NAME    ------------------------RGB-------------------------- #

	#ffffff -------------------rgb(255, 255, 255)---------------- 01
	#171717 -------------------rgb(23, 23, 23)------------------- 02
	#feb600 -------------------rgb(254, 182, 0)------------------ 03 	Replace Also This Color To Change Whole Color Scheme
	#cb9200 -------------------rgb(203, 146, 0)------------------ 04 	Replace Also This Color To Change Whole Color Scheme

*/


/*==========================================================================================================================================

														TEAM COLUMNS CAROUSEL

==========================================================================================================================================*/


.team_columns_carousel_wrapper {

	padding: 25px;
	overflow: hidden;

}

/*========== LEFT/RIGHT CONTROL ==========*/

.team_columns_carousel_control_left,
.team_columns_carousel_control_right {

	top: 10px;
	z-index: 2;
	opacity: 1;
	width: 35px;
	height: 35px;
	border: none;
	text-shadow: none;
	text-align: center;

	-webkit-transition: all ease-in-out 0.3s; /* Chrome, Safari, Opera */
            transition: all ease-in-out 0.3s; /* Standard syntax */

}

.team_columns_carousel_control_icons {

	line-height: 35px;
	font-size: 20px !important;
	font-weight: normal !important;

}

.team_columns_carousel_control_left {

	left: 94% !important;

}

.team_columns_carousel_control_right {

	right: 0% !important;

}


/*========== CAPTION ==========*/

/*========== IMAGE ==========*/

.team_columns_item_image {

	padding-top: 60px;
	padding-bottom: 25px;

}

.team_columns_item_image img {

	width: 100%;

	-webkit-filter: grayscale(70%); /* Chrome, Safari, Opera */
	   -moz-filter: grayscale(70%); /* Mozilla */
		-ms-filter: grayscale(70%); /* IE */
		 -o-filter: grayscale(70%); /* Opera */
			filter: grayscale(70%); /* Standard syntax */
			
	-webkit-transition: all ease-in-out 0.3s; /* Chrome, Safari, Opera */
	   -moz-transition: all ease-in-out 0.3s; /* Mozilla */
		-ms-transition: all ease-in-out 0.3s; /* IE */
		 -o-transition: all ease-in-out 0.3s; /* Opera */
            transition: all ease-in-out 0.3s; /* Standard syntax */

}

.team_columns_item_image:hover img {

	-webkit-filter: grayscale(0%);
	   -moz-filter: grayscale(0%);
		-ms-filter: grayscale(0%);
		 -o-filter: grayscale(0%);
			filter: grayscale(0%);

}

/*========== TEXT ==========*/

.team_columns_item_caption {

	padding: 10px;
	text-align: center;
	padding-bottom: 30px;

}

.team_columns_item_caption> hr {

	width: 15%;

}

.team_columns_item_caption h4 {

	font-weight: 800;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;

}

.team_columns_item_caption h5 {

	font-weight: 600;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;

}
.team_columns_item_caption p {

	font-weight: 400;
	margin-top: 20px;
	font-family: 'Open Sans', sans-serif;

}

.team_columns_item_caption p a,
.team_columns_item_caption p a:visited {

	text-decoration: none;

	-webkit-transition: all ease-in-out 0.3s; /* Chrome, Safari, Opera */
            transition: all ease-in-out 0.3s; /* Standard syntax */

}

.team_columns_item_social a,
.team_columns_item_social a:visited {

	width: 25px;
	float: left;
	height: 25px;
	display: block;
	line-height: 25px;
	margin-right: 2px;
	text-decoration: none;

	-webkit-transition: background ease-in-out 0.3s; /* Chrome, Safari, Opera */
            transition: background ease-in-out 0.3s; /* Standard syntax */

}


/*==========================================================================================================================================

															RESPONSIVE

==========================================================================================================================================*/


/*==================================================  MEDIA 767px  ==================================================*/


@media only screen and (max-width: 767px) {

	.team_columns_carousel_control_left {

		left: 0% !important;

	}

}


/*==================================================  MEDIA 768px - 991px  ==================================================*/


@media (min-width: 768px) and (max-width: 1280px) {

	.team_columns_carousel_control_left {

		left: 89% !important;

	}

}


/*==========================================================================================================================================

															COLORS (GOLDEN)

==========================================================================================================================================*/


.team_columns_carousel_wrapper {

	background: #ffffff;

}

/*========== LEFT/RIGHT CONTROL ==========*/

.team_columns_carousel_control_left,
.team_columns_carousel_control_left:hover,
.team_columns_carousel_control_left:active,
.team_columns_carousel_control_left:focus,
.team_columns_carousel_control_right,
.team_columns_carousel_control_right:hover,
.team_columns_carousel_control_right:active,
.team_columns_carousel_control_right:focus {

	color: #ffffff;
	background: #feb600 !important;

}

/*========== CAPTION ==========*/

.team_columns_item_caption {

	color: #ffffff;
	background: #171717;

}

.team_columns_item_caption> hr {

	border-top: 2px solid #feb600;

}

.team_columns_item_caption p a,
.team_columns_item_caption p a:visited {

	color: #feb600;

}

.team_columns_item_caption p a:hover,
.team_columns_item_caption p a:active {

	color: #cb9200;

}

.team_columns_item_social a,
.team_columns_item_social a:visited {

	color: #171717;
	background: #feb600;

}

.team_columns_item_social a:hover,
.team_columns_item_social a:active {

	background: #cb9200;

}

/*================================================================  END  ================================================================*/