/*
	StyleSheet For Responsive Bootstrap Carousel
	Author: SZThemes
	Item Name: Responsive Bootstrap Carousel
	Author URI: http://codecanyon.net/user/sz_themes
	Description: Different Types of Bootstrap Carousel

								Content List
  -----------------------------------------------------------------------------------
	NAME ----------------------------------------LINE NUMBER--------------------- #
	THUMBNAIL TEXT CAROUSEL ---------------------30------------------------------ 01
	RESPONSIVE ----------------------------------157----------------------------- 02	
	COLORS --------------------------------------225----------------------------- 03	
  -----------------------------------------------------------------------------------
							Fonts Styles
  -----------------------------------------------------------------------------------
	  'Raleway', sans-serif ---------------------------------- 01
	            FontAwesome ---------------------------------- 03
  -----------------------------------------------------------------------------------
							Color Codes
  -----------------------------------------------------------------------------------
	NAME    ------------------------RGB-------------------------- #
	#ffffff -------------------rgb(255, 255, 255)---------------- 01
	#000000 -------------------rgb(0, 0, 0)---------------------- 02
	#9e8c79 -------------------rgb(26, 188, 156)----------------- 03 Replace Only This Color To Change Whole Color Scheme
	#4c4c4c -------------------rgb(40, 40, 40)------------------- 04
*/

/*------------------------------------------------------*/
/* THUMBNAIL TEXT CAROUSEL
/*------------------------------------------------------*/

.thumbnail_text_carousel_wrapper {
  overflow: hidden;
  height: 590px;
 /* max-height: 643px;*/
  position: relative;
}
.thumbnail_text_carousel_wrapper > .carousel-inner > .item > img,
.thumbnail_text_carousel_wrapper > .carousel-inner > .item > a > img {
  margin: auto;
  width: 100% !important;
}
/*---------- FADE EFFECT ----------*/
.thumbnail_text_carousel_fade {
  opacity: 1;
}
.thumbnail_text_carousel_fade .item {
  top: 0;
  z-index: 1;
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0 !important;
  display: block !important;
  -webkit-transition: opacity ease-in-out 0.7s;
  -moz-transition: opacity ease-in-out 0.7s;	
  -ms-transition: opacity ease-in-out 0.7s;	
  -o-transition: opacity ease-in-out 0.7s;  
  transition: opacity ease-in-out 0.7s;
}
.thumbnail_text_carousel_fade .item:first-child {
  top: auto;
  position: relative;
}
.thumbnail_text_carousel_fade .item.active {
  opacity: 1;
  z-index: 2;
  -webkit-transition: opacity ease-in-out 0.7s;
  -moz-transition: opacity ease-in-out 0.7s;	
  -ms-transition: opacity ease-in-out 0.7s;	
  -o-transition: opacity ease-in-out 0.7s;  
  transition: opacity ease-in-out 0.7s;
}
/*---------- LEFT/RIGHT CONTROL ----------*/
.thumbnail_text_carousel_control_left,
.thumbnail_text_carousel_control_right {
  top: 40%;
  opacity: 0;
  z-index: 2;
  width: 55px;
  height: 55px;
  text-shadow: none;
  text-align: center;
  -webkit-border-radius: 0%;
  border-radius: 0%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.thumbnail_text_carousel_wrapper:hover .thumbnail_text_carousel_control_left,
.thumbnail_text_carousel_wrapper:hover .thumbnail_text_carousel_control_right {
  opacity: 1;
}
.thumbnail_text_carousel_control_icons {
  line-height: 50px;
  font-size: 40px !important;
  font-weight: normal !important;
}
.thumbnail_text_carousel_control_left {
  left: 1% !important;
}
.thumbnail_text_carousel_control_right {
  right: 1% !important;
}
.thumbnail_text_carousel_control_left:hover,
.thumbnail_text_carousel_control_left:active,
.thumbnail_text_carousel_control_left:focus,
.thumbnail_text_carousel_control_right:hover,
.thumbnail_text_carousel_control_right:active,
.thumbnail_text_carousel_control_right:focus {
  opacity: 1;
}
/*---------- INDICATORS THUMBNAIL TEXT ----------*/
.thumbnail_text_carousel_indicators {
  left: 0%;
  right: 0%;
  z-index: 3;
  bottom: 0%;
  width: 100%;
  padding: 0px;
  margin-left: 0%;
  position: absolute;
  margin-bottom: 0px;

  /*font-family: 'Raleway', sans-serif;*/
}
.thumbnail_text_carousel_indicators li {
  width: 5%;
  opacity: 1;
  margin: 0px;
  height: 40px;
  border: none;
  text-indent: 0px;
  text-align: center;
 /* padding: 15px 0px 15px 15px;*/
  -webkit-border-radius: 0%;
  border-radius: 0%;
  -webkit-transition: opacity 0.3s ease-in-out 0s;
  transition: opacity 0.3s ease-in-out 0s;
}

.thumbnail_text_carousel_indicators li h5 {
  text-shadow: none;
  color: #fafafa;
  font-size: 18px;
  font-weight: 400;
  margin-left: -13px;
  margin-top: -4px;
}
/*
.thumbnail_text_carousel_indicators li p {
  font-size: 12px;
  text-shadow: none;
  letter-spacing: 1px;
  text-transform: capitalize;
}*/
.thumbnail_text_carousel_indicators .active {
  width: 5%;
  height: 40px;
  border: none;
}

/*------------------------------------------------------*/
/* RESPONSIVE
/*------------------------------------------------------*/
@media (max-width: 991px) {
  /*---------- INDICATORS THUMBNAIL TEXT ----------*/
  .thumbnail_text_carousel_indicators li h5 {
	font-size: 14px;
	margin-left: -12px;
	margin-top: none;
  }
  
  .thumbnail_text_carousel_wrapper {
 	height: 500px;
  }
}
/*---------- MEDIA 767px ----------*/
@media only screen and (max-width: 767px) {
  /*---------- LEFT/RIGHT CONTROL ----------*/
  .thumbnail_text_carousel_control_left,
  .thumbnail_text_carousel_control_right {
    display: none;
  }
}
/*---------- MEDIA 480px ----------*/
@media only screen and (max-width: 480px) {
  /*---------- INDICATORS THUMBNAIL TEXT ----------*/
  .thumbnail_text_carousel_indicators li {
    width: 8%;
	height: 28px;
    text-align: center;
    padding: 0px 0px 0px 0px;
  }
  .thumbnail_text_carousel_indicators li h5 {
    font-size: 14px;
	margin-left: 2px;
	margin-top: 8px;
    /*letter-spacing: 0px;*/
  }
  .thumbnail_text_carousel_indicators li p {
    display: none;
  }
  .thumbnail_text_carousel_indicators .active {
    width: 8%;
	height: 28px;
  }
  
  .thumbnail_text_carousel_wrapper {
 	height: 250px;
  }
}
/*---------- MEDIA 481px - 600px ----------*/
@media (min-width: 481px) and (max-width: 600px) {
  /*---------- INDICATORS THUMBNAIL TEXT ----------*/
  .thumbnail_text_carousel_indicators li {
    width: 6%;
    text-align: center;
    padding: 5px 0px 5px 0px;
  }
  .thumbnail_text_carousel_indicators li h5 {
    font-size: 14px;
	margin-left: 1px;
	margin-top: 8px;
  }
  .thumbnail_text_carousel_indicators li p {
    font-size: 10px;
    letter-spacing: 0px;
  }
  .thumbnail_text_carousel_indicators .active {
  	 width: 6%;
  }
  
  .thumbnail_text_carousel_wrapper {
 	height: 360px;
  }
}
/*---------- MEDIA 601px - 767px ----------*/
@media (min-width: 601px) and (max-width: 767px) {
  /*---------- INDICATORS THUMBNAIL TEXT ----------*/
  .thumbnail_text_carousel_indicators li {
	  width: 6%;
    text-align: center;
    padding: 5px 0px 5px 0px;
  }
  .thumbnail_text_carousel_indicators li h5 {
    font-size: 14px;
    margin-left: 1px;
	margin-top: 8px;
  }
  .thumbnail_text_carousel_indicators li p {
    font-size: 10px;
    letter-spacing: 0px;
  }
  
  .thumbnail_text_carousel_indicators .active {
  	 width: 6%;
  }
  
  .thumbnail_text_carousel_wrapper {
 	height: 400px;
  }

}

/*------------------------------------------------------*/
/* COLORS (DARK BLUE)
/*------------------------------------------------------*/

.thumbnail_text_carousel_wrapper {
  background: #000000;
}
/*---------- LEFT/RIGHT CONTROL ----------*/
.thumbnail_text_carousel_control_left,
.thumbnail_text_carousel_control_right {
  color: #262626;
  background: transparent !important;
}
.thumbnail_text_carousel_control_left:hover,
.thumbnail_text_carousel_control_left:active,
.thumbnail_text_carousel_control_left:focus,
.thumbnail_text_carousel_control_right:hover,
.thumbnail_text_carousel_control_right:active,
.thumbnail_text_carousel_control_right:focus {
  color: #ffffff;
}
/*---------- INDICATORS THUMBNAIL TEXT ----------*/
.thumbnail_text_carousel_indicators {
  background: #272727;
}
.thumbnail_text_carousel_indicators li {
  color: #ffffff;
  background: #4c4c4c;
}
.thumbnail_text_carousel_indicators .active {
  background: #9e8c79;
}
/*----------  END  ----------*/