/*********************************************************
CAROUSEL(HOME SLIDER)
*********************************************************/
.carousel-caption a > span,
.featuredImagesCont > h2,
.carousel-indicators,
a.scrollDown > span,
.masterCaption{
	display:none;
}

/*.carousel-caption a:after*/
a.scrollDown:before{
	content: "\f10c";
	font-family: fontawesome;
	font-size: inherit;
	font-weight: normal;
	font-style: normal;
	color: inherit;
	display: inline-block;
	margin-left: 0.5em;
}

#carousel{
	position:relative;
	z-index:1;
}


.ccContainer {
    position: relative;
    max-width: 1400px;
    margin: auto;
    padding-right: 11.5em;
}




.carousel-inner{
	/*max-height:650px;*/
	min-height:660px;
}
/*
.carousel-inner.landscapeMode {
	max-height:550px;
	min-height:550px;
}*/

.item{
	position: relative;
	width: 100%;
	height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2em 2em 6em;
    overflow: hidden;
    text-align: left;
    text-shadow: 0 0 5px rgba(0,0,0,5);
}
/*.carousel-caption.portraitMode {
    top: 51%;
}*/

.carousel-caption h2,
.carousel-caption h3{
	font: normal 300 4.063em 'Open Sans', Arial, sans-serif;
	color: rgb(255,255,255);
	margin-bottom: 0;
/*	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;*/
}
.carousel-caption h3 {
    margin-bottom: 0.5em;
}

.carousel-caption p{
	font: normal 300 2.125em 'Open Sans';
	color: rgb(255,255,255);
	margin-bottom: 0;
    text-transform: none;
/*	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;*/
}

.carousel-caption a{
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	font:normal 600 1.250em 'Open Sans', Arial, sans-serif;
	color:rgb(255,255,255);
	display:inline-block;
	padding: 0.8em  1em;
	text-transform:uppercase;
    text-align: center;
	text-shadow:none;
	-webkit-transition:background 300ms ease 0s;
	-moz-transition:background 300ms ease 0s;
	-o-transition:background 300ms ease 0s;
	transition:background 300ms ease 0s;
    background: rgb(136,188,160);
}
.carousel-caption a:visited{
	color:rgb(255,255,255);
}
.carousel-caption a:hover{
	color:rgb(255,255,255);
	background: #5a8a70;
}

.carousel-indicators{
	margin-bottom:0;
    bottom: 1.5em;
}
.carousel-indicators li{
	width:60px;
	height:20px;
    margin:0 0.7em 0 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
    border: 1px solid rgb(255,255,255);
    background: rgb(255,255,255);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,0.4);
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
.carousel-indicators li:last-child {
    margin-right: 0;
}
.carousel-indicators .active{
	width:60px;
	height:20px;
    margin-right: 0.7em;
    border: 1px solid rgb(228,137,39);
    background: rgb(228,137,39);
}

/*.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev{
	margin-top:52px;
}*/
.carousel-control{
    width: 4%;
	color:rgb(255,255,255)!important;
	color:rgba(255,255,255,0.9)!important;
}
.carousel-control:visited{
	color:rgb(255,255,255);
	color:rgba(255,255,255,0.9);
}
.carousel-control:hover{
	color:rgb(126,178,179);
    color:rgba(126,178,179,0.9);
}
.carousel-control:active{
	color:rgb(126,178,179);
    color:rgba(126,178,179,0.9);
}
.carousel-control:focus{
	color:rgb(255,255,255);
	color:rgba(255,255,255,0.9);
    outline: none;
}


a.scrollDown {
    position: absolute;
    bottom: 0.5em;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    font: normal 400 2em 'Open Sans', Arial, sans-serif;
    color: rgba(151,159,138,0.9);
    display: inline-block;
    padding: 0.1em 0.45em;
    border: 2px solid rgba(151,159,138,0.9);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
    z-index: 2;
}
a.scrollDown:visited {
    color: rgba(151,159,138,0.5);
}
a.scrollDown:hover {
    color:rgb(255,255,255);
    border-color: rgba(126,178,179,0.9);
    background: rgba(126,178,179,0.9);
}
a.scrollDown:active {
    color:rgb(255,255,255);
    border-color: rgba(126,178,179,0.9);
    background: rgba(126,178,179,0.9);
}

a.scrollDown:before {
    content: "\f107";
    margin-left: 0;
}


/*********************************************************
FADE EFFECT
*********************************************************/
.carousel-fade .carousel-inner .item{
  opacity: 0;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .active{
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right{
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  padding: 1em;
  z-index: 2;
}


@media all and (transform-3d),
(-webkit-transform-3d){
	.carousel-fade .carousel-inner > .item.next,
	.carousel-fade .carousel-inner > .item.active.right{
	  opacity:0;
	  -webkit-transform:translate3d(0, 0, 0);
	  transform:translate3d(0, 0, 0);
	}
	.carousel-fade .carousel-inner > .item.prev,
	.carousel-fade .carousel-inner > .item.active.left{
	  opacity: 0;
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	}
	.carousel-fade .carousel-inner > .item.next.left,
	.carousel-fade .carousel-inner > .item.prev.right,
	.carousel-fade .carousel-inner > .item.active {
	  opacity: 1;
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	}
}


/*********************************************************
MEDIA QUERY
*********************************************************/
@media only screen and (max-width:1400px) {
    .carousel-caption {
        padding-bottom: 6em
    }
}

@media only screen and (max-width:1300px) {
    .carousel-caption h2,
    .carousel-caption h3 {
        font-size: 2.5em;
    }
    .carousel-caption p {
        font-size: 1.5em;
    }
    .carousel-caption a {
        font-size: 0.9em;
    }
}

@media only screen and (max-width:977px) {
    .carousel-inner {
        max-height: none;
        min-height: 0;
    }


    .ccContainer {
        padding-right: 0;
    }
    .carousel-caption {
        position: static;
        bottom: 0;
        left: auto;
        right: auto;
        text-align: center;
        text-shadow: none;
        padding: 1em;
        background: rgb(136,188,160);
    }
    .carousel-caption h2,
    .carousel-caption h3 {
        font-size: 1.8em;
    }
    .carousel-caption p {
        font-size: 1.1em;
    }
    .carousel-caption a {
        position: static;
        top: auto;
        right: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        transform: none;
        font-size: 0.8em;
        margin-top: 1em;
        background: rgb(71,71,71);
    }
}

@media only screen and (max-width:960px) {
    .carousel-caption h2,
    .carousel-caption h3 {
        font-size: 1.5em;
    }
    .carousel-caption p {
        font-size: 1em;
    }
    .carousel-caption a {
        font-size: 0.7em;
    }
}

@media only screen and (max-width:740px) {
    .carousel-indicators {
        display: none;
    }
}

/*@media only screen and (max-width:700px) {
    .carousel-control {
        display: none;
    }
}*/

@media only screen and (max-width:600px) {
    .carousel-caption h2,
    .carousel-caption h3 {
        font-size: 1.2em;
    }
}