/** Section 00 **/
#sec0 {
  padding-bottom: 0px;
  height: 100%;
}

.carousel {
	width: 100%;
	height: 100%;
}

.carousel-inner {
	width: 100%;
	height: 100%;
}

.carousel-inner .item {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.9s;
  transition-duration: 0.9s;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 2;
}

#sec0 .play-pause-btn {
	position: absolute;
	left: 20px;
	bottom: 10px;
	width: 27px;
	height: 27px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	background-repeat: no-repeat;
	background-size: 100%;
	cursor: pointer;
	z-index: 90;
}

#sec0 .play-pause-btn.play {
	background-image: url('img/playBtn.png');
}

#sec0 .play-pause-btn.pause {
	background-image: url('img/pauseBtn.png');
}


#sec0 div.image-title {
	position: absolute;
	top: 10%;
	left: 0;
	right: 0;
	margin: auto;
	width: 50%;
	height: auto;
}

h2 {
    margin-top: 5px !important;
    margin-bottom: 10px;
}
#sec0 div.title-wrapper {
	/* background: rgba(255, 255, 255, 0.5); */
	padding-left:20px;
}

#sec0 div.title-wrapper {
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	margin: auto;
	width: 752px;
	height: 200px;
	text-align: left;
	/* font-size: 32px; */
	font-size: 1.2em;
	color:#000;
}

#sec0 div.title-wrapper h1 {
	font-size: 2.5em;
	font-weight: 300;
	line-height: 1.05;
	color: #fff;
	text-transform: uppercase;
}
#sec0 div.title-wrapper h2 {
	font-size: 2.5em;
	font-weight: 800;
	line-height: 1.1;
	color:#fff;
}

#sec0 div.title-wrapper .btn {
	font-size: 16px;
	margin-top:5px;
	margin-left:-20px;
	/*margin: 0;*/
	padding: 8px 16px;
}

button.scroll-down {
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 20px;
	width: 50px;
	height: 50px;
	border: 0;
	/*background: rgba(16, 16, 16, 0.86);*/
	background-color: #FF6537;
	border-radius: 50%;
	background-image: url('img/scroll-down-button-arrow.png');
	background-repeat: no-repeat;
	background-position: center;
	z-index: 90;
	cursor: pointer;

	-webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce;

    -webkit-animation-fill-mode:both;
    -moz-animation-fill-mode:both;
    -ms-animation-fill-mode:both;
    -o-animation-fill-mode:both;

    animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;

    animation-fill-mode:both;
    -webkit-animation-duration:2s;
    -moz-animation-duration:2s;
    -ms-animation-duration:2s;
    -o-animation-duration:2s;
    animation-duration:2s;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 40% {-webkit-transform: translateY(8px);}
    60% {-webkit-transform: translateY(16px);}
}
 
@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
    40% {-moz-transform: translateY(8x);}
    60% {-moz-transform: translateY(16px);}
}
 
@-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
    40% {-o-transform: translateY(8px);}
    60% {-o-transform: translateY(16px);}
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(8px);}
    60% {transform: translateY(16px);}
}


@media (max-width:520px) {	
	#sec0 div.image-title{
		top: 16%;
		width: 100% !important;
	}
}

@media (max-width:850px) {
	#sec0 div.title-wrapper {
		top: 30%;
		width: 90%;
	}

	#sec0 div.title-wrapper h1 {
		font-size: 1.5em;
	}
	#sec0 div.title-wrapper h2 {
		font-size: 1.4em;
	}
	#sec0 div.image-title{
		top: 16%;
		width: 34%;
	}
}