.alert {
	padding: 0px;
	background-color: #f44336; /* Red */
	color: white;
	margin-bottom: 0px;
  }
  
  /* The close button */
  .closebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
  }
  
  /* When moving the mouse over the close button */
  .closebtn:hover {
	color: black;
  }


.home .carousel-item{
	min-height: 100vh;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.home .carousel-item:before{
	content: '';
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: -1;
}
.home .carousel-item .container{
	position: absolute;
	left: 50%;
	top:50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.home .carousel-item h2{
	font-size: 60px;
	color: #ffffff;
	margin:0 0 10px;
	opacity: 0;
}


.home .carousel-item p{
	font-size: 30px;
	margin:0;
	color: #eeeeee;
	opacity:0;
}
.home .carousel-item.active h2{
	animation: fadeInLeft 0.5s ease forwards;
}
.home .carousel-item.active p{
	animation: fadeInRight 0.5s ease forwards;
}

@keyframes fadeInLeft{
	0%{
		opacity: 0;
		transform: translateX(-30px);
	}
	100%{
		opacity: 1;
		transform: translateX(0px);
	}
}
@keyframes fadeInRight{
	0%{
		opacity: 0;
		transform: translateX(30px);
	}
	100%{
		opacity: 1;
		transform: translateX(0px);
	}
}

.home .carousel-controls{
	position: absolute;
	left: 50%;
	bottom: 2%;
	z-index: 10;
	transform: translateX(-50%);
}

.home .carousel-indicators{
	position: relative;
	margin:0;
	white-space: nowrap;
    
}

.home .carousel-indicators li{
	width: auto;
    height: auto;
	margin: 25px;
    text-indent: unset;
	background-color: transparent;
	opacity: 0.7;
	font-size: 80%;
	color: #ffffffab;
	transition: all 0.3s ease;
	display: inherit;	
}

.home .carousel-indicators li:hover
{
	opacity: 1;
}

.home .carousel-indicators li.active{
	transform: scale(1.4);
	color: #ffffff;
	opacity: 1;
}

.home .carousel-control-next, 
.home .carousel-control-prev{
	height: 50px;
	width: 50px;
	opacity: 1;
	z-index: 3;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	transition: all 0.3s ease;
}
.home .carousel-control-next:hover, 
.home .carousel-control-prev:hover{
   box-shadow: 0 0 10px #ffffff;
}
.home .carousel-control-next img, 
.home .carousel-control-prev img{
   width: 30%;
}
.home .carousel-control-next{
	right: -150px;
}
.home .carousel-control-prev{
	left: -150px;
}

/*responsive*/
@media(max-width: 767px){
  .home .carousel-control-next, 
  .home .carousel-control-prev{
  	display: none;
  }
  .home .carousel-indicators li{
  	height: 60px;
  	width: 60px;
  }
  .home .carousel-item h2{
  	font-size: 45px;
  }

  .home .carousel-item p{
  	font-size: 22px;
  }
}




.home .container1 img{
	display: block;
	margin-top: 8%;
	margin-left: auto;
	margin-right: auto;
	width: 15%;
	height:15%;
	border-radius: 50%;
	box-shadow: 15px 15px;	
}

.home .container1 h2{
		margin-left: auto;
		margin-right: auto;
		font-size: 150%;
		text-align: center;
}

.home .container1 p{
	margin-left: auto;
	margin-right: auto;
	font-size: 120%;
	text-align: center;
}


.home .container5 p{
	position: relative;
	margin-top: 15%;
	font-size: medium;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.home .container5 img
{
	opacity: 0.8;
	transition: 0.3s;
	position: relative;
	margin-top: 15%;
	margin-left: auto;
	margin-right: auto;
	width: 6vw;
	max-width: 100%;
	height: auto;
}

.home .container5 img:hover {
	opacity: 1;
}

.home .container5 .contact_logos{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

@keyframes animatedBackground {
	from {
	  background-position: 0 0;
	}
	to {
	  background-position: 100% 0;
	}
  }

  .home .carousel-item  {
	overflow: hidden;
	width: 100%;
	height: 100%;
	background-position: 0px 0px;
	background-repeat: repeat-x;
	animation: animatedBackground 15s linear infinite alternate;
  }



 

  
  