@import url('https://fonts.googleapis.com/css2?family=Fleur+De+Leah&family=Lato&family=Lexend:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playpen+Sans:wght@100..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Playpen Sans", cursive;
	font-style: normal;
	color: #385469;
}

body
{
	overflow-x: hidden;
}

/*Toggle Bar*/
.toggle
{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	position: relative;
	font-weight: 500;
	justify-content: space-between;
}
.toggle img
{
	width: 100%;
    height: auto;
	object-fit: fill;
	position: relative;
}
.toggle_left
{
	display: flex;
	flex-wrap: wrap;
	left: 2%;
	top:10%;
	font-size: 15px;
	color: #385469;
	justify-content: left;
	position: absolute;
}
.toggle_right
{
	display: flex;
	flex-wrap: wrap;
	right: 2%;
	top:10%;
	font-size: 15px;
	color: #385469;
	text-align: right;
	position: absolute;
}

/*Navigation Bar*/
.navbar
{
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
	justify-content: space-between;
	align-items: center;
}
.category
{
    width: 160px;
    border-radius: 8px;
    border: 1px solid rgba(92, 112, 126, 0.3);
    padding: 10px 16px;
	font-size: 15px;
	font-weight: 500;
    position: relative;
    z-index: 99;
}
.nav_links
{
	display: flex;
	flex-wrap: wrap;
}
.nav_links p
{
	padding: 20px;
}
.nav_links p a
{
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
}
.navbar button
{
	width: 160px;
    border-radius: 8px;
    border: none;
    padding: 10px 16px;
	font-size: 15px;
	font-weight: 600;
    position: relative;
    z-index: 99;
	background: #f39f5f;
	color: white;
}
.navbar button:hover
{
    background-color: #ffb347;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255,145,77,0.6);
}
.navbar button i
{
	color: white;
}

/*Hero Section*/
.hero
{
	display: flex;
	flex-wrap: wrap;
	background: url("../assets/media/images/breadcrumb.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	min-height: 60vh;
	text-align: center;
	justify-content: center;
	align-items: center;
	width:100%;
	position: relative;
}
.hero_left
{
	flex: 1;
}
.hero_left img
{
	position: absolute;
	transition: all 0.6s ease;
}
.arrow
{
	bottom: 15%;
	left: 0;
}
.plane
{
	top: 10%;
	left: 15%;
	animation: rotation 4s ease infinite;
}
.doll
{
	left: 20%;
	bottom: 20%;
	animation: slide 2s ease infinite;
}
.hero_text h1
{
	font-size: 65px;
	font-weight: 500;	
	color: white;
}
.hero_text h4
{
	font-size: 25px;
	font-weight: 500;
	color: white;
}
.hero_right
{
	flex: 1;
}
.hero_right img
{
	position: absolute;
	transition: all 0.6s ease;
}
.parachute
{
	bottom: 15%;
	right: 25%;
	animation: float 6s ease-in-out infinite;
}
.cloud
{
	top: 10%;
	right: 25%;
	animation: rotation 4s ease infinite;
}
.bee
{
	top: 30%;
	right: 10%;
	animation: fly 8s linear infinite;
}
@keyframes float
{
	0
	{
		transform: translateY(0);
	}
	50%
	{
		transform: translateY(-15px);
	}
	100%
	{
		transform: translateY(0);
	}
}
@keyframes fly 
{
	0
	{
		transform: translateX(0);
	}
	50%
	{
		transform: translateX(-30px) translateY(10px);
	}
	100%
	{
		transform: translateX(0);
	}
}
@keyframes slide
{
	0
	{
		transform: translateX(0);
	}
	50%
	{
		transform: translateX(15px);
	}
	100%
	{
		transform: translateX(0);
	}
}
@keyframes rotation
{
	0
	{
		transform: rotate(0deg);
	}
	50%
	{
		transform: rotate(10deg);
	}
	100%
	{
		transform: rotate(0deg);
	}
}

/*About Section*/
.about
{
	display: flex;
	flex-wrap: wrap;
	background: white;
	position: relative;
	width: 100%;
	min-height: 80vh;
	align-items: center;
	justify-content: space-between;
	margin: auto; 
	overflow: hidden;
}
.about_content
{
	flex: 1;
	position: absolute;
	left: 45%;
	padding: 4rem 8%;
	justify-content: right;
	align-items: right;
}
.about_content h5
{
	color: #f39f5f;
	font-weight: 500;
	margin-bottom: 0.5rem;
	font-size: 18px;
}
.about_content h1
{
	font-weight: 600;
	font-size: 3rem;
	line-height:1.3;
}
.about_content p
{
	margin-top: 1rem;
	line-height: 1.6;
	font-size:15px;
}
.sports
{
	background: white;
    box-shadow: 8px 8px 20px #EBECED;
	width: 200px;
	border: none;
	border-radius: 8px;
	margin: 10px;
	padding: 10px 16px;
	font-weight: 600;
}
.sports:hover
{
	background: #EBECED;
}

.explore
{
	width: 160px;
    border-radius: 8px;
    border: none;
    padding: 10px 16px;
	font-size: 15px;
	font-weight: 600;
    position: relative;
    z-index: 99;
	background: #f39f5f;
	margin: 10px;
	color: white;
}
.explore:hover
{
	background: #A6784B;
}
.about_images
{
	flex: 1;
}
.about_images img
{
	position: absolute;
	transition: all 0.6s ease;
}
.teach2
{
	left: 10%;
	bottom: 0;
	z-index: 5;
}
.bus
{
	bottom: 10%;
	left: 5%;
}
.zebra
{
	right:0;
	bottom: 2%;
	width: 10%;
	animation: float 4s ease-in-out infinite;
}

@keyframes rotation
{
	0
	{
		transform: rotate(0deg);
	}
	50%
	{
		transform: rotate(10deg);
	}
	100%
	{
		transform: rotate(0deg);
	}
}

/*Team Section*/
.team_section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 80px 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: space-between;
}
.section_header {
	width: 100%;
	text-align: center;
}
.section_header h3 {
  color: #f39f5f;
  font-size: 16px;
  font-weight: 600;
}
.section_header h2 {
  color: #2c3d55;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}
.team_images
{
	flex: 1;
}
.team_images img
{
	position: absolute;
	transition: all 0.6s ease;
}
.section_top
{
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}
.love
{
	bottom: 1%;
	left: 5%;
	animation: fly 6s ease-in-out infinite;	
}
.frame
{
	bottom: 10%;
	right: 5%;
	width: 20%;
	animation: rotation 4s ease infinite;
}
.carousel {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  align-items: center;
  justify-content: center;
  text-align: center
}
.card {
  border-radius: 15px;
  margin: 0 15px;
  width: 250px;
  flex-shrink: 0;
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.card h4 {
  margin: 15px 0 5px 0;
  color: #2c3d55;
  font-size: 18px;
  font-weight: 600;
}

.card p {
  margin-bottom: 20px;
  color: #6c7a8a;
  font-size: 14px;
}

/*Footer Section*/
.footer {
  color: #333;
  position: relative;
  padding-top: 40px;
  background: #f4eee5;
}

.footer_images
{
	flex: 1;
}
.footer_images img
{
	position: absolute;
	transition: all 0.6s ease;
}
.footer_top
{
	top:0;
	left:0;
	width:100%;
}
.footer_frame
{
	left: 2%;
	top: 16%;
	width:12%;
	animation: rotation 4s ease infinite;
}
.footer_zebra
{
	right:0;
	bottom:28%;
	width: 12%;
	animation: float 4s ease-in-out infinite;
}
.footer_bottom
{
	width: 100%;
	bottom:0;
	left: 0;
	z-index: 1;
}
.footer-top {
  padding: 20px 0;
  margin-top: 100px;
}

.contact-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-box div {
  flex: 1;
}

.icon {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}

.contact-box p {
  margin: 0;
  font-size: 14px;
}

.contact-box h4 {
  margin: 5px 0 0;
  font-size: 16px;
}

.footer-middle {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 10%;
  position: relative;
}

.footer-column {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul li p{
  font-size: 15px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  font-size: 15px;
}

.footer-column ul li a:hover {
  color: #e5a15d;
}

.footer-column ul li .social-icons i {
  display: inline-block;
  text-decoration: none;
  margin-right: 10px;
  font-size: 20px;
}
.post {
  margin-bottom: 15px;
}

.post .date {
  font-size: 13px;
  color: #e5a15d;
  margin-bottom: 5px;
}
.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  font-size: 16px;
  color: #777;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index:3;
  position:relative;
}

.footer-links a {
  margin-left: 15px;
  color: #555;
  text-decoration: none;
  z-index: 3;
}

.footer-links a:hover {
  color: #e5a15d;
}