html,
body {
	width: 100%;
	overflow: auto;
}

body {
	color: var(--primary-text-color);
	background-color: var(--primary-background-color);
	font-family: 'Chewy', sans-serif;

}

.main-container {
	margin: 0 auto;
	overflow: hidden;
}

.footer-section {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-top: 30px;
}

.default-footer-item-height {
	min-height: 40px;
}

.contact-inner-section {
	height: 80%;
	position: relative;
}

.social-icons-container {
	width: 40%;
	justify-content:start;
}

.banner-heading3 {
	font-family: "Agbalumo", sans-serif;
	color: #153065;
}

.text-with-image {
	display: flex;
	align-items: center;
	font-size: 28px;
	justify-content: center;
	font-family: "Agbalumo", sans-serif;
	color: #773018;
}
@media (max-width: 991px) {
  .text-with-image {
    font-size: 20px;
  }
}
.bird-in-section {
  position: relative;
  right: -10px;
  top: -20px;
}
.round-vector-bg {
	background: url(/assets/images/vectors/rounds.png) center no-repeat;
	background-size: contain;
	background-position: 0 bottom;
	animation: moveBackground 10s linear infinite; 
	position: relative;
}
.sparkles-vector-bg {
	background: url(/assets/images/vectors/sparkles.png) center no-repeat;
	background-size: cover;
}
.contact-grass-banner {
	background: 
    url(/assets/images/banners/contact-banner.png) repeat-x,
    url(/assets/images/banners/contact-banner.png) repeat-x; 
	background-position: 0 bottom;
	animation: moveBackground 10s linear infinite; 
	position: relative;
}
.exploration-bg {
	background: url(/assets/images/banners/grass-banner.png) no-repeat;
	/* background-size: contain; */
	background-position: 0 bottom;
	animation: moveBackground 15s linear infinite; 
}
@keyframes moveBackground {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 100% bottom;
  }
}

.bird-branch-vector {
	width: 75%;
	position: relative;
	top: -35px;
}

@media (max-width: 991px) {
  .bird-branch-vector {
		top: -10px;
	}
}

.exploration-list li {
	height: 50px;
}

@media only screen and (min-width: 992px) {
  .assessment-section {
		height: 500px;
	}
	.contact-grass-banner {
		height: 725px;
	}
}

@media (min-width: 992px) {
  .slope-list li:nth-child(10) {
		transform: translateX(10px);
	}
	
	.slope-list li:nth-child(9) {
		transform: translateX(20px);
	}
	
	.slope-list li:nth-child(8) {
		transform: translateX(30px);
	}
	
	.slope-list li:nth-child(7) {
		transform: translateX(40px);
	}
	
	.slope-list li:nth-child(6) {
		transform: translateX(50px);
	}
	
	.slope-list li:nth-child(5) {
		transform: translateX(60px);
	}
	
	.slope-list li:nth-child(4) {
		transform: translateX(70px);
	}
	
	.slope-list li:nth-child(3) {
		transform: translateX(80px);
	}
	
	.slope-list li:nth-child(2) {
		transform: translateX(90px);
	}
	
	.slope-list li:nth-child(1) {
		transform: translateX(100px);
	}
}


.banner-image-container, .banner-image-container2 {
	position: relative;
	display: inline-block;
}
.banner-image-container img {
	width: 170px;
	height: auto;
	position: relative;
	top: -35px;
}
@media (max-width: 991px) {
  .banner-image-container img {
		top: 0;
	}
}
.banner-image-container2 img {
	height: auto;
	position: relative;
	/* top: -65px; */
}
.banner-image-container2 .text-on-image {
	position: absolute;
	top: 50%;
	left: 15%;
	transform: translate(-50%, -50%);
	font-family: "Chewy", sans-serif;
}
.banner-image-container .text-on-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: bold;
	animation: animateText 2s infinite;
}
@keyframes animateText {
  0%,
	50%,
	100% {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0.5;
	}
}

.bird-in-banner {
  position: relative;
  right: -10px;
  top: -5px;
  animation: flutter 2s ease-in-out infinite;
}

@keyframes flutter {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.admission-btn {
	position: fixed;
	top: 320px;
	right: -10%;
	display: block;
	transition: all 0.3s ease-in-out;
	z-index: 2;
}

@media (max-width: 991px) {
	.admission-btn {
		right: -50%;
	}
}

.step { 
	display: none;
	padding-bottom: 15px;
}
.step.active { display: block; }
.form-section { padding: 20px; border-radius: 8px; }
.step-buttons { display: flex; justify-content: space-between; margin-top: 20px; }
.brown-text { color: #6c4c2f; }

.slider-image{
	max-width: 100%;
	height: 77vh;
	object-fit:cover;
	object-position: center;
	border-radius: 8px;	
	padding: 10px 0px;
	background: #8a2be257;
    border-radius: 110px;
}
.quote-line {
  white-space: nowrap; /* keep text in one line */
  overflow: hidden; /* hide extra text outside container */
  position: relative;
  height: 70px; /* adjust to fit your design */
  display: flex;
  align-items: center;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%; /* start off-screen */
  animation: marquee 15s linear infinite; /* adjust speed */
  font-size: 45px; /* adjust text size */
  color: #773018;
  /* padding: 0px 20px ; */
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
