#myCarousel.carousel, #myCarousel.carousel .item, #myCarousel .carousel-inner {
	height: 100%;
}
/*#myCarousel .container{
	display:flex;
	align-items:center;
	height:100%;
}*/
#myCarousel .carousel-caption {
	top: calc(50% - 78px);
	bottom: inherit;
	left: inherit;
	right: inherit;
	text-align:left;
	padding:0;
	z-index:99;
	width: calc(50% - 100px);
}
#myCarousel .carousel-caption h1 {
	font-size:40px;
	font-weight: 700;
	color: #fff;
	line-height: 48px;
	margin:5px 0;
}
#myCarousel .carousel-caption p {
	font-size:22px;
	margin:5px 0;
}
#myCarousel .carousel-indicators {
	bottom:100px;
	z-index:999;
}
#myCarousel .carousel-indicators li {
	width:6px;
	height:6px;
	background:#fff;
	border:none;
	margin:0 10px;
}
#myCarousel .carousel-indicators li.active {
	width:10px;
	height:10px;
	background:#f6a704;
	position:relative;
	top:2px;
}
#myCarousel .btn {
	margin:30px 0 0;
}
.controllers {
	position:absolute;
	top:45%;
	font-size:30px;
	cursor:pointer;
	display:block;
	z-index:99;
}
.controllers.left {
	left:15px;
}
.controllers.right {
	right:15px;
}
.controllers span {
	position: relative;
	padding: 12px;
}
.controllers.left span:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10px;
	height: 50%;
	width: 2px;
	background: #fff;
	-webkit-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	transform: rotate(30deg);
}
.controllers.left span:after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 10px;
	height: 50%;
	width: 2px;
	background: #fff;
	-webkit-transform: rotate(-30deg);
	-moz-transform: rotate(-30deg);
	-ms-transform: rotate(-30deg);
	-o-transform: rotate(-30deg);
	transform: rotate(-30deg);
}
.controllers.right span:before {
	content: '';
	position: absolute;
	top: 2px;
	right: 10px;
	height: 50%;
	width: 2px;
	background: #fff;
	-webkit-transform: rotate(-30deg);
	-moz-transform: rotate(-30deg);
	-ms-transform: rotate(-30deg);
	-o-transform: rotate(-30deg);
	transform: rotate(-30deg);
}
.controllers.right span:after {
	content: '';
	position: absolute;
	bottom: 2px;
	right: 10px;
	height: 50%;
	width: 2px;
	background: #fff;
	-webkit-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	transform: rotate(30deg);
}

/* RESPONSIVE CSS
-------------------------------------------------- */
@media (max-width: 1170px) {
#myCarousel .carousel-caption {
	left:60px;
}
}
@media (max-width: 768px) {
#myCarousel .carousel-caption {
	width: 45%;
    margin-left: 5%;
}
#myCarousel .carousel-caption h1 {
	font-size: 36px;
}
}
 @media (max-width: 468px) {
#myCarousel .carousel-inner {
	height: 100%;
}
#myCarousel .carousel-caption {
	width: 70%;
	margin:auto !important;
	left:15%;
	text-align:center;
}
#myCarousel .carousel-caption h1 {
	font-size: 24px;
	line-height: 36px;
}
#myCarousel .carousel-caption p {
    font-size: 18px;
}
#myCarousel .banner:before {
	width:100%;
	background: rgba(6,11,57,0.65);
}
#myCarousel .banner:after {
	display:none;
}
#myCarousel .carousel-indicators {
    bottom: 65px;
}
#banner .scroll-more {
    bottom: 15px;
}
.controllers.left {
	left:10px;
}
.controllers.right {
	right:10px;
}
.controllers.left span:before, .controllers.right span:before  {
	top: 15px;
	height: 20px;
}
.controllers.left span:after, .controllers.right span:after {
	bottom: 15px;
	height: 20px;
}
}
/*
inspired from http://codepen.io/Rowno/pen/Afykb
& https://jsfiddle.net/q0rgL8ws/
*/
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
    overflow:hidden;
}
.item.active img {
    transition: transform 5000ms linear 0s;
    /* This should be based on your carousel setting. For bs, it should be 5second*/
    transform: scale(1.05, 1.05);
}
.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 {
  z-index: 2;
}

/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@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);
    }
}
