body{
	margin:0;
	font-family: sans-serif;
	overflow-x: hidden;
}

*{
	box-sizing: border-box;
}

.home{
	height: 100vh;
	overflow:hidden;
	position: relative;
}

.home .slide{
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index:1; 
	display:none;
	padding:0 15px;
	animation: slide 2s ease;
}
.overlay
{
	position: absolute;
	top: 0;
	left: 0;
	/*background: rgba(0,37,84,0.5);*/
	background: rgba(0, 24, 61, 0.6);
	height: 100vh;
	width: 100vw;
	z-index: 2;
}
.home .slide.active{
	display: flex;
}
@keyframes slide{
	0%{
		transform:scale(1.1);
	}
	100%{
		transform: scale(1);
	}
}
.container{
	max-width: 1170px;
	margin:auto;
	
}

.home .container{
	 flex-grow: 1;
}
.home .caption{
	width:100%;
	padding-top: 130px; 
}
.home .caption h1{
	font-family: 'Roboto', sans-serif;
    font-size: 60px;
    text-transform: uppercase;
	/*font-size:42px;*/
	line-height: 60px;
	color: white;
	margin:0;
	text-align: center;
	padding-left: 200px;
	padding-right: 200px;
}
.home .slide.active .caption h1{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1s;
}
.home .caption p{
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
	font-size: 18px;
	margin:15px 0 30px;
	color: white;
	text-align: center;
	padding-left: 250px;
	padding-right: 250px;
}
.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: #000000;
 text-decoration: none;
 color:#ffffff;
}

.home .slide.active .caption a{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1.4s;
}*/
.home .slide.active .caption a{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1.4s;
}
      .bbb-danger8
      {
        background-color: transparent;
        padding: 10px 20px;
        font-size: 14px;
        color: white;
        border: solid;
        border-width: 0.5px;
        border-color: white;
        outline: white;
        border-radius: 100px;
        text-decoration: none;
      }
      .bbb-danger8:hover
      {
        background-color: #1c9ad7;
        padding: 10px 20px;
        color: white;
        border: #1c9ad7;
        outline: #1c9ad7;
        border-radius: 100px;
        transition: 0.5s;
        text-decoration: none;
      }
      .bbb-danger7
      {
        background-color: transparent;
        padding: 10px 30px;
        font-size: 14px;
        color: white;
        border: solid;
        border-width: 0.5px;
        border-color: white;
        outline: white;
        border-radius: 100px;
        text-decoration: none;
      }
      .bbb-danger7:hover
      {
        background-color: #1c9ad7;
        padding: 10px 30px;
        color: white;
        border: #1c9ad7;
        outline: #1c9ad7;
        border-radius: 100px;
        transition: 0.5s;
        text-decoration: none;
      }

@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: #FF5722;
 text-align: center;
 line-height: 40px;
 font-size:20px;
 cursor:pointer;
 transition: all .5s ease;
}
.home .controls .prev:hover,
.home .controls .next:hover{
	background-color: #000000;
}
.home .controls .prev{
 left:0;
 display: none;
}
.home .controls .next{
 right:0;
 display: none;
}

.home .indicator{
	position: absolute;
	left:50%;
	bottom:30px;
	z-index: 2;
	transform: translateX(-50%);
}

.home .indicator div{
	display: inline-block;
	width:15px;
	height: 15px;
	color:#cccccc;
	background-color: #cccccc;
	border-radius:50%;
	text-align: center;
	line-height: 25px;
	margin:0 3px;
	cursor: pointer;
}

.home .indicator div.active{
 background-color: #1c9ad7;
 color: #1c9ad7;
}

	#pos
	{
		margin-left: 0%;
	}
	#poss
	{
		margin-left: 0%;
	}
/*responsive*/
@media(max-width: 767px){
	.controls{
		display: none;
	}
	.home .caption{
		width:100%;
		padding-top: 130px; 
	}
	.home .slide.active .caption h1
	{
		padding-left: 10px;
		padding-right: 10px;
		font-size: 32px;
		width: 100%;
		margin-left: 200px;
		text-align: center;
	}
	.home .slide.active .caption p
	{
		padding-left: 10px;
		padding-right: 10px;
		width: 100%;
		margin-left: 200px;
		text-align: center;
	}
	#pos
	{
		margin-left: 8%;
	}
	#poss
	{
		margin-left: 0%;
	}
	@keyframes captionText{
	0%{
		opacity:0; transform: translateX(-100px);
	}
	100%{
	 opacity:1; transform: translateX(-200px);	
	}
}
}