/**
#3b26db  => #236477 Original Blue
#7b19cb  => #173042 Original Purple

#236477  => #236477 Original Blue
#173042  => #173042 Original Purple
 */

@keyframes zoominoutsinglefeatured {
	5% {
		transform: scale(1, 1);
	}
	45% {
		transform: scale(1.2, 1.2);
	}
	55% {
		transform: scale(1.2, 1.2);
	}
	95% {
		transform: scale(1, 1);
	}
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.text-justify {
	text-align: justify;
}

.p10 {
	padding: 10px;
}

.p20 {
	padding: 20px;
}

.home9 .hero-area .right-img {
	height: auto;
}

.home9 .hero-area .right-img .img {
	animation: zoominoutsinglefeatured 10s infinite;
	transition: 1s all;
}

.home9 .hero-area .right-img .img:hover {
	transform: scale(1.2, 1.2);
}

.home9 .hero-area .right-img::after {
	content: '';
	display: none;
}

.whaybest .about-img {
	padding: 0 50px;
}

.whaybest .about-img img {
	border-radius: 15px;
}

.underconsimg {
	border-radius: 25px;
}

.section-title .title {
	text-transform: none;
}

p {
	hyphens: none;
}

.navbar-brand img {
	max-height: 60px;
	padding: 5px;
}

#mainView {
	background: #F7F9FF;

	background: linear-gradient(-45deg, #F7F9FF, #eee);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

.home9 .footer {
	background: #FFF;
}

.home9 .hero-area {
	padding: 10em 0;
	background: none;
	z-index: 1;
}

.btn-block {
	display: block;
	width: 100%;
	margin: 10px auto;
}

.navbar-collapse {
	justify-content: flex-end;
}

.form-group label:not(.btn) {
	font-weight: bold;
}

.form-group {
	margin-bottom: 15px;
}


.bg-bubbles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.bg-bubbles li {
	position: absolute;
	list-style: none;
	display: block;
	width: 40px;
	height: 40px;
	background-color: #7cad3e;
	bottom: -160px;
	-webkit-animation: square 25s infinite;
	animation: square 25s infinite;
	transition-timing-function: linear;
}

.bg-bubbles li:nth-child(1) {
	left: 10%;
}

.bg-bubbles li:nth-child(2) {
	left: 20%;
	width: 80px;
	height: 80px;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	-webkit-animation-duration: 17s;
	animation-duration: 17s;
}

.bg-bubbles li:nth-child(3) {
	left: 25%;
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}

.bg-bubbles li:nth-child(4) {
	left: 40%;
	width: 60px;
	height: 60px;
	-webkit-animation-duration: 22s;
	animation-duration: 22s;
	background-color: rgba(255, 255, 255, 0.25);
}

.bg-bubbles li:nth-child(5) {
	left: 70%;
}

.bg-bubbles li:nth-child(6) {
	left: 80%;
	width: 120px;
	height: 120px;
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
	background-color: rgba(255, 255, 255, 0.2);
}

.bg-bubbles li:nth-child(7) {
	left: 32%;
	width: 160px;
	height: 160px;
	-webkit-animation-delay: 7s;
	animation-delay: 7s;
}

.bg-bubbles li:nth-child(8) {
	left: 55%;
	width: 20px;
	height: 20px;
	-webkit-animation-delay: 15s;
	animation-delay: 15s;
	-webkit-animation-duration: 40s;
	animation-duration: 40s;
}

.bg-bubbles li:nth-child(9) {
	left: 25%;
	width: 10px;
	height: 10px;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	-webkit-animation-duration: 40s;
	animation-duration: 40s;
	background-color: #7cad3e;
}

.bg-bubbles li:nth-child(10) {
	left: 90%;
	width: 160px;
	height: 160px;
	-webkit-animation-delay: 11s;
	animation-delay: 11s;
}

@-webkit-keyframes square {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-700px) rotate(600deg);
	}
}

@keyframes square {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-700px) rotate(600deg);
	}
}

.about .mybtn1 {
	background: #236477;
	background: linear-gradient(to right, #236477, #173042);
}