.home{
	margin: 0;
	/* height: 70vh; */
	height: calc((100vw) * 0.4331); /*16:9 aspect ratio*/
	overflow:hidden;
	position: relative;
	/* min-height: auto !important; */
}

.home .slide{
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index:1; 
	display:none;
	padding:0 15px ;
	animation: slide 2s ease;
}
.home .slide.active{
	display: flex;
}
.slider-container{
	padding-left: 8%;
}
@keyframes slide{
	0%{
		transform:scale(1.1);
	}
	100%{
		transform: scale(1);
	}
}
.container{
	/* max-width: 1170px; */
	margin:auto;
	
}

.home .container{
	 flex-grow: 1;
}
.home .caption{
	/* height: 70vh; */
	height: calc((100vw) * 0.4331); /*16:9 aspect ratio*/
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width:50%;
	max-width:550px;
}
.home .caption h1{
	font-size:42px;
	color:#ffffff;
	margin:0;
	
}
.home .slide.active .caption h1{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1s;
}
.home .caption p{
	font-size: 18px !important;
	margin:15px 0 30px;
	padding: 5px 5px;
	border-radius: 5px;
	color:#ffffff;
	background: #191414cc;
}
.home .slide.active .caption p{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1.2s;
}
.home .caption a{
 display: inline-block;
 padding:10px 30px;
 background-color: #285d09;
 text-decoration: none;
 color:#ffffff;
}

.home .slide.active .caption a{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1.4s;
}
@keyframes captionText{
	0%{
		opacity:0; transform: translateX(-100px);
	}
	100%{
	 opacity:1; transform: translateX(0px);	
	}
}

.home .controls .prev,
.home .controls .next{
 position: absolute;
 z-index:2;
 top:50%;
 height:40px;
 width: 40px;
 margin-top: -20px;
 color:#ffffff;
 background-color: #a22d3100;
 text-align: center;
 line-height: 40px;
 font-size:25px;
 cursor:pointer;
 transition: all .5s ease;
}
.home .controls .prev:hover,
.home .controls .next:hover{
	background-color: #558b2f;
}
.home .controls .prev{
 left:0;
}
.home .controls .next{
 right:0;
}

.home .indicator{
	position: absolute;
	left:50%;
	bottom:5vh;
	z-index: 2;
	transform: translateX(-50%);
}

.home .indicator div{
	display: inline-block;
	width:10px;
	height: 10px;
	color:#ffffff;
	background-color: rgba(255, 255, 255,0.5);
	border-radius:50%;
	text-align: center;
	line-height: 25px;
	margin:0 3px;
}

.home .indicator div.active{
 background-color: #558b2f;
}

/*responsive*/
@media(max-width: 767px){
	.controls{
		display: none;
	}
}
@media(max-width: 767px){
	.home .caption h1{
		font-size:35px;
	
}.home .caption p{
		font-size:15px;
	
}.home .caption{
	width: 80vw;
	height: 60vh;
}
}













