.carousel {
	position: relative;
	/* background: #1e1ea7;
    margin-top: 80px;*/
}

.carousel-one {
	background: rgb(232,242,255);
	background: linear-gradient(357deg, rgba(232,242,255,1) 2%, rgba(255,255,255,1) 98%);
}

	.carousel-one img {
		left: 6%;
		position: relative;
		animation: image-in 1s cubic-bezier(0.5, 0, 0.1, 1) 0.5s backwards;
		
	}



.carousel-item {
	padding-top: 20px
}

	.carousel-item h1 {
		font-size: 3.8rem;
		color: #0000A4;
		font-weight: 700;
		text-align: left;
		line-height: 65px;
		margin-bottom: 40px;
	}

	.carousel-item p {
		font-size: 1.4rem;
		color: #000;
		font-weight: 500;
		line-height: 1.7rem;
		margin-bottom: 40px;
		width: 100%;
		animation: fadeInslow ease 10s;
	}

.carousel-caption1 {
	top: 18%;
	text-align: left;
	padding: 20px 0px;
}

	
}
.carousel-inner {
	/* border-radius: 0 0 95% 95% / 15%;*/
	overflow: no-display !important
}
.scale-in-center {
	animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}


@keyframes slide-right {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-webkit-transform: translateX(100px);
		transform: translateX(100px);
	}
}


@keyframes scale {
	100% {
		transform: scale(1);
	}
}

span {
	display: inline-block;
	opacity: 0;
	filter: blur(4px);
}

	span:nth-child(1) {
		animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
	}

	span:nth-child(2) {
		animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
	}

	span:nth-child(3) {
		animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
	}

	span:nth-child(4) {
		animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
	}

	span:nth-child(5) {
		animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
	}

	span:nth-child(6) {
		animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
	}

	span:nth-child(7) {
		animation: fade-in 0.8s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
	}
@keyframes fade-in {
	100% {
		opacity: 1;
		filter: blur(0);
	}
}


@keyframes fadeInslow {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


@keyframes image-in {
	from {
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}

	to {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}





