
.bt {
	border: none;
	color: white;
	padding: 10px 24px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	gap: 10px;
}

.topbar-one {
	background-color: #0053a7;
}

.card {
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width: 400px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.form-group {
	margin-bottom: 15px;
}

label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

input {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.submit-btn {
	width: 100%;
	padding: 10px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s;
}

.submit-btn:hover {
	background-color: #0056b3;
}

.static-form {
	position: absolute;
	top: 30%;
	right: 250px;
	transform: translateY(-50%);
	padding: 15px;
	width: 350px;
	z-index: 10;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	border-width: 5px;
	border-style: solid;
	border-color: blue #bdc430;
	/* Top Right Bottom Left */
	border-radius: 50px;
	/* Optional: for rounded corners */
	background: rgba(255, 255, 255, 0.9);
	margin-top: -52px;
}

.static-form {
	opacity: 0;
	transform: translateX(100px);
	/* Start from the right */
	animation: slideIn 1s ease-out forwards;
	/* Slower transition (1s) */
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(100px);
		/* Start position (right) */
	}

	to {
		opacity: 1;
		transform: translateX(0);
		/* End position (normal) */
	}
}

.static-form h3 {
	text-align: center;
	margin-bottom: 15px;
}

.static-form .form-group {
	margin-bottom: 10px;
}

.static-form input, .static-form select, .static-form textarea {
	width: 100%;
	padding: 6px 9px 6px 18px !important;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.static-form button {
	width: 100%;
	padding: 10px;
	background: #0053a7;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.form-container {
	background-color: white;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.9);
	overflow: hidden;
	padding: 5px;
	transition: var(--transition);
}

.form-container:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Form Header */
.form-header {
	text-align: center;
	margin-bottom: 12px;
	margin-top: -75px;
}

.form-header .icon {
	width: 60px;
	height: 60px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 48px auto 3px;
}

.form-header .icon svg {
	width: 30px;
	height: 30px;
}

.form-header h2 {
	color: var(--primary-color);
	font-size: 28px;
	margin-bottom: 10px;
}

.form-header p {
	color: #6c757d;
	font-size: 16px;
}

/* Form Layout */
.contact-form {
	display: flex;
	flex-direction: column;
	/* gap: 20px;
	*/
}

.form-row {
	display: flex;
	gap: 20px;
	width: 100%;
}

.form-group {
	flex: 1;
	min-width: 0;
}

.full-width {
	width: 100%;
}

/* Form Elements */
label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #495057;
	font-size: 14px;
}

input, select, textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-family: inherit;
	font-size: 15px;
	color: var(--text-color);
	background-color: white;
	transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

input::placeholder, textarea::placeholder {
	color: #adb5bd;
}

.select-wrapper {
	position: relative;
}

.select-wrapper::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #6c757d;
	pointer-events: none;
}

select {
	appearance: none;
	padding-right: 40px;
	cursor: pointer;
}

textarea {
	resize: vertical;
	min-height: 120px;
}

/* Submit Button */
.submit-group {
	margin-top: 10px;
}

.submit-btn {
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.submit-btn:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
}

.submit-btn:active {
	transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.form-container {
	animation: fadeIn 0.5s ease-out;
}

input, select, textarea {
	transition: border-color 0.3s, box-shadow 0.3s;
}

.submit-btn {
	position: relative;
	overflow: hidden;
}

.submit-btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 5px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 0;
	border-radius: 100%;
	transform: scale(1, 1) translate(-50%);
	transform-origin: 50% 50%;
}

.submit-btn:focus:not(:active)::after {
	animation: ripple 1s ease-out;
}

@keyframes ripple {
	0% {
		transform: scale(0, 0);
		opacity: 0.5;
	}

	100% {
		transform: scale(20, 20);
		opacity: 0;
	}
}

@media (max-width: 1024px) {
	.container {
		max-width: 800px;
	}

	.form-container {
		padding: 35px;
	}

	.static-form {
		margin-right: -207px;
		margin-top: -54px;
	}

	.about-four {
		padding: 52px 0;
	}

	.funfact-three {
		padding: 60px 0 43px;
	}

	.funfact-three .container {
		max-width: 965px;
	}

	.sec-title {
		padding-bottom: 35px;
	}
}

@media (max-width: 768px) {
	.form-container {
		width: 100%;
		padding: 15px;
		max-height: 65vh;
	}

	.static-form {
		width: 44%;
		height: 54vh;
		top: 38%;
		right: 210px;
		margin-top: -100px;
	}

	.bt .btn-danger {
		margin-top: 2px;
	}
}

.form-header h2 {
	font-size: 23px;
}

header__call {
	margin-right: 10px;
}

.mobile-nav__btn {
	margin-right: 30px;
}

@media (max-width: 425px) {
	.static-form {
		max-width: 100%;
		top: 100%;
		right: 244px;
		width: 345px;
		height: 57vh;
	}

	.form-container {
		width: 308px;
		padding: 12px;
		max-height: 75vh;
	}

	.form-header h2 {
		font-size: 20px;
	}

	.form-group {
		margin-bottom: 10px;
	}

	input, select {
		font-size: 14px;
		padding: 8px;
		height: 35px;
	}

	.about-four {
		margin-top: 405px;
	}

	.about-four__content {
		padding: 0px 0 0;
	}

	.static-form .form-group {
		margin-bottom: 0px;
	}

	.form-container {
		padding: 25px 20px;
		border-radius: 10px;
	}

	.form-header {
		margin-bottom: 25px;
	}

	.form-header h2 {
		font-size: 24px;
	}

	.form-header p {
		font-size: 14px;
	}

	.form-header .icon {
		width: 50px;
		height: 50px;
		margin-bottom: 12px;
	}

	.form-header .icon svg {
		width: 25px;
		height: 25px;
	}

	.form-row {
		flex-direction: row;
		gap: 15px;
	}

	label {
		font-size: 13px;
		margin-bottom: 6px;
	}

	input, select, textarea {
		padding: 10px 14px;
		font-size: 14px;
	}

	textarea {
		min-height: 100px;
	}

	.submit-btn {
		padding: 12px 24px;
		font-size: 15px;
	}
}

@media (max-width: 375px) {
	.form-container {
		width: 309px;
		padding: 10px;
		max-height: 102vh;
	}

	.form-header h2 {
		font-size: 18px;
	}

	input, select {
		font-size: 13px;
		padding: 7px;
		height: 32px;
	}

	.form-group {
		margin-bottom: 8px;
	}
}

@media (max-width: 320px) {
	.form-container {
		width: 285px;
		padding: 8px;
		max-height: 57vh;
	}

	.static-form {
		height: 61vh;
	}

	.form-header h2 {
		font-size: 16px;
	}

	input, select {
		font-size: 12px;
		padding: 6px;
		height: 30px;
	}

	.form-group {
		margin-bottom: 6px;
	}

	.submit-btn {
		font-size: 14px;
		padding: 8px 12px;
	}
}

@media (max-width: 375px) {
	.static-form {
		max-width: 100%;
		top: 101%;
		right: 220px;
		height: 70vh !important;
	}

	.static-form .form-group {
		margin-bottom: 0px;
	}

	.form-container {
		padding: 25px 20px;
		border-radius: 10px;
	}

	.form-header {
		margin-bottom: 25px;
	}

	.form-header h2 {
		font-size: 24px;
	}

	.form-header p {
		font-size: 14px;
	}

	.form-header .icon {
		width: 50px;
		height: 50px;
		margin-bottom: 12px;
	}

	.form-header .icon svg {
		width: 25px;
		height: 25px;
	}

	.form-row {
		flex-direction: row;
		gap: 15px;
	}

	label {
		font-size: 13px;
		margin-bottom: 6px;
	}

	input, select, textarea {
		padding: 3px 14px;
		font-size: 14px;
	}

	textarea {
		min-height: 100px;
	}

	.submit-btn {
		padding: 12px 24px;
		font-size: 15px;
	}
}

@media (max-width: 320px) {
	.static-form .form-group {
		margin-bottom: 0px;
	}

	.form-container {
		padding: 25px 20px;
		border-radius: 10px;
	}

	.form-header {
		margin-bottom: 25px;
	}

	.form-header h2 {
		font-size: 22px;
	}

	.form-header p {
		font-size: 14px;
	}

	.form-header .icon {
		width: 50px;
		height: 50px;
		margin-bottom: 12px;
	}

	.form-header .icon svg {
		width: 25px;
		height: 25px;
	}

	.form-row {
		flex-direction: row;
		gap: 15px;
	}

	label {
		font-size: 13px;
		margin-bottom: 6px;
	}

	input, select, textarea {
		padding: 10px 14px;
		font-size: 14px;
	}

	textarea {
		min-height: 100px;
	}

	.submit-btn {
		padding: 12px 24px;
		font-size: 15px;
	}
}

.main-header__logo img {
	width: 100px !important;
	height: 100px !important;
}

@media (min-width: 768px) {
	.main-header__logo {
		margin-left: 65px;
	}
}

@media (max-width: 320px) {
	.bt {
		margin-left: -58px;
	}
}

@media (max-width: 425px) {
	.bt {
		display: none;
	}

	.bts {
		display: block !important;
	}
}

@media (max-width: 360px) {
	.bt {
		display: none;
	}

	.bts {
		display: block !important;
	}
}

.main-header__inner {
	display: flex;
	align-items: center;
	padding: 1px 0;
	position: relative;
}

/*************** ## Mission and vision *******************/
.mission-vision-section {
	padding: 40px 0;
	position: relative;
	overflow: hidden;
	background-color: #f9f7fe;
}

.mission-vision-section::before {
	content: "";
	position: absolute;
	top: -50px;
	left: -50px;
	width: 200px;
	height: 200px;
	background-image: url("assets/images/shapes/video-shape-1.png");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.5;
	z-index: 0;
	animation: float 8s ease-in-out infinite;
}

.mission-vision-section::after {
	content: "";
	position: absolute;
	bottom: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background-image: url("assets/images/shapes/video-shape-2.png");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.5;
	z-index: 0;
	animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}

	100% {
		transform: translateY(0px);
	}
}

.section-title {
	margin-bottom: 50px;
}

.section-title__title {
	font-size: 40px;
	color: #4527a4;
	font-weight: 700;
	font-family: "Fredoka", sans-serif;
	margin-bottom: 15px;
	animation: fadeIn 1s ease-out forwards;
}

.section-title__line {
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #ff6b6b, #ffbe0b);
	margin: 0 auto;
	border-radius: 4px;
	animation: expandWidth 1.5s ease-out forwards;
}

@keyframes expandWidth {
	0% {
		width: 0;
		opacity: 0;
	}

	100% {
		width: 80px;
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.mission-vision-card {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 40px 30px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	height: 100%;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease;
	overflow: hidden;
}

.mission-vision-card::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 5px;
	bottom: 0;
	left: 0;
	border-radius: 0 0 20px 20px;
	z-index: -1;
	transition: height 0.4s ease;
}

.mission-card::before {
	background: linear-gradient(90deg, #4527a4, #6a3de8);
}

.vision-card::before {
	background: linear-gradient(90deg, #ff6b6b, #ffbe0b);
}

.mission-vision-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mission-vision-card:hover::before {
	height: 10px;
}

.mission-vision-card__icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 30px;
	color: #ffffff;
	position: relative;
	z-index: 1;
}

.mission-card .mission-vision-card__icon {
	background: linear-gradient(135deg, #4527a4, #6a3de8);
	box-shadow: 0 10px 20px rgba(106, 61, 232, 0.3);
	animation: pulse 2s infinite;
}

.vision-card .mission-vision-card__icon {
	background: linear-gradient(135deg, #ff6b6b, #ffbe0b);
	box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
	animation: pulse 2s infinite;
	animation-delay: 1s;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 10px 20px rgba(106, 61, 232, 0.3);
	}

	50% {
		transform: scale(1.1);
		box-shadow: 0 15px 25px rgba(106, 61, 232, 0.4);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 10px 20px rgba(106, 61, 232, 0.3);
	}
}

.mission-vision-card__icon i {
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

.mission-vision-card__title {
	font-size: 24px;
	font-weight: 700;
	font-family: "Fredoka", sans-serif;
	color: #4527a4;
	text-align: center;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
}

.mission-vision-card__title::after {
	content: "";
	position: absolute;
	width: 0;
	height: 3px;
	bottom: -5px;
	left: 0;
	background: linear-gradient(90deg, #4527a4, #6a3de8);
	transition: width 0.4s ease;
}

.vision-card .mission-vision-card__title::after {
	background: linear-gradient(90deg, #ff6b6b, #ffbe0b);
}

.mission-vision-card:hover .mission-vision-card__title::after {
	width: 100%;
}

.mission-vision-card__content p {
	font-size: 16px;
	line-height: 1.7;
	color: #666;
	text-align: center;
	transition: all 0.3s ease;
}

.mission-vision-card:hover .mission-vision-card__content p {
	color: #333;
}

/* Animation Styles */
@keyframes slideInFromLeft {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInFromRight {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.mission-card {
	animation: slideInFromLeft 1s ease-out forwards;
}

.vision-card {
	animation: slideInFromRight 1s ease-out forwards;
}

/* Animation delay for better visual effect */
.mission-card {
	animation-delay: 0.3s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.vision-card {
	animation-delay: 0.6s;
	opacity: 0;
	animation-fill-mode: forwards;
}

/* Card shine effect on hover */
.mission-vision-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
	transform: skewX(-25deg);
	transition: all 0.75s;
}

.mission-vision-card:hover::after {
	left: 100%;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.mission-vision-section {
		padding: 60px 0;
	}

	.section-title__title {
		font-size: 32px;
	}

	.mission-vision-card {
		padding: 30px 20px;
	}
}

@media (max-width: 767px) {
	.mission-vision-section {
		padding: 50px 0;
	}

	.section-title__title {
		font-size: 28px;
	}

	.mission-vision-card__icon {
		width: 70px;
		height: 70px;
		font-size: 26px;
	}

	.mission-vision-card__title {
		font-size: 22px;
	}
}

:root {
	--primary-color: #ff6b6b;
	--secondary-color: #4ecdc4;
	--dark-color: #292f36;
	--light-color: #f7f7f7;
}

.banner-section {
	position: relative;
	padding: 80px 0;
	background-color: #fff;
	overflow: hidden;
}

.curved-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.curved-bg::before {
	content: '';
	position: absolute;
	top: -10%;
	right: -10%;
	width: 70%;
	height: 120%;
	background-color: var(--secondary-color);
	opacity: 0.1;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	z-index: -1;
	animation: morphBackground 15s ease-in-out infinite alternate;
}

.curved-bg::after {
	content: '';
	position: absolute;
	bottom: -10%;
	left: -10%;
	width: 60%;
	height: 110%;
	background-color: var(--primary-color);
	opacity: 0.1;
	border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
	z-index: -1;
	animation: morphBackground 18s ease-in-out infinite alternate-reverse;
}

@keyframes morphBackground {
	0% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	}

	50% {
		border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
	}

	100% {
		border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
	}
}

.form-container {
	background-color: white;
	border-radius: 20px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	padding: 40px;
	transform: translateX(-100%);
	animation: slideInLeft 1s forwards 0.3s;
}

.image-container {
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateX(100%);
	animation: slideInRight 1s forwards 0.3s;
}

.adm {
	margin-top: -18px;
}

.image-container img {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	width: 555px;
	height: 578px;
}

@media(max-width:576px) {
	.image-container img {
		height: 400px;
	}
}

@keyframes slideInLeft {
	to {
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	to {
		transform: translateX(0);
	}
}

.form-title {
	color: var(--dark-color);
	margin-bottom: 14px;
	position: relative;
	padding-bottom: 15px;
}

.form-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background-color: var(--primary-color);
	border-radius: 2px;
}

.form-control {
	border-radius: 10px;
	padding: 9px 15px;
	border: 1px solid #e1e1e1;
	margin-bottom: 17px;
	transition: all 0.3s ease;
}

@media(max-width:576px) {
	.form-control {
		padding: 3px 15px;
	}
}

@media(max-width:425px) {
	.form-control {
		padding: 5px 15px;
	}
}

.form-control:focus {
	box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
	border-color: var(--primary-color);
}

.btn-submit {
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: 10px;
	padding: 12px 30px;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-submit::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.2);
	transition: all 0.4s ease;
	z-index: -1;
}

.btn-submit:hover::before {
	left: 0;
}

.btn-submit:hover {
	background-color: #ff5252;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

@media (max-width: 991px) {
	.image-container {
		margin-top: 40px;
	}

	.form-container, .image-container {
		transform: translateX(0);
		opacity: 0;
		animation: fadeIn 1s forwards 0.3s;
		width: 100%;
	}

	@keyframes fadeIn {
		to {
			opacity: 1;
		}
	}
}

/*************** ## icon bar ****************/
.icon-bara {
	position: fixed;
	top: 50%;
	right: 0; /* Changed from left: 0 */
	width: 50px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 9999;
}

.icon-bara a {
	display: block;
	text-align: center;
	padding: 8px;
	transition: all 0.3s ease;
	color: white;
	font-size: 20px;
}

.facebook {
	background: #3B5998;
	color: white;
}

.twitter {
	background: #55ACEE;
	color: white;
}

.linkedin {
	background: #007bb5;
	color: white;
}

.whatsapp {
	background: green;
	color: white;
}

.instagram {
	background: #fe4d2b;
	color: white;
}

.youtube {
	background: #bb0000;
	color: white;
}

@media (max-width: 1024px), (max-width: 768px), (max-width: 425px), (max-width: 375px), (max-width: 320px) {
	.icon-bara {
		display: none;
	}
}


/************************************ ## Footer *******************************/
.main-footer-three {
	margin-right: 122px;
}

/* Default Styles */
.main-footer-three {
	background-size: cover;
	background-position: center;
}

.footer-widget {
	margin-bottom: 30px;
}

/* Responsive Styling */
@media (max-width: 1024px) {
	.footer-widget__info a {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.main-header__logo img {
		margin-left: -105px !important;
	}

	.footer-widget {
		text-align: center;
	}

	.footer-widget__logo {
		margin-bottom: 0;
	}

	.footer-widget__social {
		justify-content: center;
	}

	iframe {
		width: 100%;
		height: 250px;
	}

	.footer-widget__info a, .footer-widget__links a {
		font-size: 14px;
		text-align: justify;
	}

	.main-footer-three {
		margin-right: 0;
	}

	.main-footer-three {
		padding: 0px 0;
	}

	.footer-widget img {
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 414px) {
	.static-form {
		height: 53vh;
	}
}

@media (max-width: 425px) {
	.main-header__logo img {
		margin-left: 22px !important;
	}

	.footer-widget__title {
		font-size: 18px;
	}

	.footer-widget__info a, .footer-widget__links a {
		font-size: 14px;
		text-align: justify;
	}

	.main-footer-three__bottom {
		text-align: center;
	}

	.main-footer-three__top {
		padding-top: 0px;
	}

	.main-footer-three {
		padding: 0;
	}

	.main-footer-three {
		margin-right: 0;
	}
}

@media (max-width: 375px) {
	.footer-widget__info a, .footer-widget__links a {
		font-size: 14px;
	}

	iframe {
		height: 200px;
	}
}

@media (max-width: 320px) {
	.footer-widget {
		padding: 0 10px;
	}

	.footer-widget__info a, .footer-widget__links a {
		font-size: 12px;
	}

	.main-footer-three__copyright {
		font-size: 12px;
	}
}

/***************** ## funfact-three area *****************/
@media (max-width: 425px) {
	.funfact-three .row {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.funfact-three .gutter-y-30 {
		--bs-gutter-y: -10px;
	}

	.funfact-three__item {
		padding: 10px;
		font-size: 14px;
		max-width: 140px;
		margin: auto;
	}

	.funfact-three__icon span {
		font-size: 50px;
	}

	.funfact-three__count {
		font-size: 22px;
	}

	.funfact-three__title {
		font-size: 13px;
	}
}

@media (max-width: 375px) {
	.funfact-three .row {
		gap: 15px;
	}
}

@media (max-width: 320px) {
	.funfact-three .row {
		gap: 10px;
	}
}

/*************************************/
@media (max-width: 425px) {
	.program-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, auto);
		gap: 10px;
		padding: 0 10px;
		box-sizing: border-box;
	}

	.program-grid>div {
		width: 100%;
		text-align: center;
	}

	.program-one__item {
		padding: 10px;
	}

	.program-one__item__image img {
		max-width: 90%;
		height: auto;
	}

	.program-one__item__title {
		font-size: 14px;
	}

	.program-one__item__age {
		font-size: 12px;
	}
}

@media screen and (max-width: 768px) {
	.main-slider-two__title {
		background: rgba(255, 255, 255, 0.8);
		padding: 10px 15px;
		display: inline-block;
		border-radius: 5px;
		font-size: 50px;
		line-height: 1.2;
	}
}

@media screen and (max-width: 425px) {
	.main-slider-two__title {
		background: rgba(255, 255, 255, 0.8);
		padding: 0px 4px 11px 8px;
		display: inline-block;
		border-radius: 5px;
		font-size: 32px;
		line-height: 1.2;
	}
}

@media screen and (max-width: 375px) {
	.main-slider-two__title {
		font-size: 26px;
	}
}

@media screen and (max-width: 320px) {
	.main-slider-two__title {
		font-size: 20px;
	}

	.main-slider-two__btn .kidearn-btn {
		font-size: 12px;
	}
}

.mobile-nav__content img {
	width: 100px;
}

.client-carousel {
	padding: 0px 0 0px !important;
}

@media (max-width: 425px) {
	.video-one__content__title {
		margin: 34px 0 0px;
	}
}

.con {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.column {
	flex: 1;
	padding: 20px;
	color: white;
	font-size: 18px;
	border-radius: 8px;
}

.column:nth-child(1) {
	background-color: #ff9800;
}

.column:nth-child(2) {
	background-color: #3f51b5;
}

ul {
	list-style: none;
	padding: 0;
}

ul li {
	margin: 1px 0;
}

@media (max-width: 768px) {
	.container {
		flex-direction: column;
	}
}

.product-details {
	position: relative;
	padding: 70px 0;
	padding-top: 50px;
}

@media (max-width: 576px) {
	.service-four__item__icon span {
		font-size: 50px;
	}

	.service-four__item__title {
		font-size: 16px;
	}

	.service-four__item__icon {
		width: 160px !important;
		height: 160px !important;
	}
}

@media (max-width: 768px) {
	.service-four {
		padding: 24px 0;
	}
}

.service-four {
	padding: 35px 0 !important;
}

@media (max-width: 768px) {
	.form-control {
		margin-bottom: 13px;
	}
}

@media (max-width: 576px) {
	.page-header {
		height: 14vh;
		padding-top: 0;
		padding-bottom: 0;
	}

	.page-header__title {
		font-size: 24px;
	}

	.page-header__title {
		margin-top: 4px !important;
		padding-top: 27px;
	}
}

.icon-bara {
	position: fixed;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 999;
}

.icon-bara a {
	display: block;
	text-align: center;
	padding: 8px;
	transition: all 0.3s ease;
	color: white;
	font-size: 20px;
}

.icon-bara a:hover {
	background-color: #000;
}

.facebook {
	background: #3B5998;
	color: white;
}

.twitter {
	background: #55ACEE;
	color: white;
}

.google {
	background: #dd4b39;
	color: white;
}

.linkedin {
	background: #007bb5;
	color: white;
}

.youtube {
	background: #bb0000;
	color: white;
}

.whatsapp {
	background: green;
	color: white;
}

ul.allist {
	list-style: square;
	color: #fff;
}

ul.allista {
	list-style: square;
	color: #000;
}

.allista li {
	list-style: square;
	color: #000;
}

@media (max-width: 768px) {
	.icon-bara {
		display: flex !important;
		flex-direction: column;
	}

	.icon-bara a {
		width: 35px;
		height: 35px;
		font-size: 18px;
	}
}

@media (max-width: 576px) {
	.icon-bara {
		display: flex !important;
		flex-direction: column;
	}

	.icon-bara a {
		width: 35px;
		height: 35px;
		font-size: 18px;
	}
}

@media (max-width: 576px) {
	.blog-one .row {
		display: flex;
		flex-wrap: wrap;
	}

	.blog-one .col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.blog-card {
		margin-bottom: 15px;
	}

	.theimg {
		width: 162px !important;
		height: 300px !important;
		border-radius: 8px;
	}
}

@media (max-width: 425px) {
	.blog-one .row {
		display: flex;
		flex-wrap: wrap;
	}

	.blog-one .col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.blog-card {
		margin-bottom: 15px;
	}

	.theimg {
		width: 175px !important;
		height: 300px !important;
		border-radius: 8px;
	}
}

@media (max-width: 375px) {
	.blog-one .row {
		display: flex;
		flex-wrap: wrap;
	}

	.blog-one .col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.blog-card {
		margin-bottom: 15px;
	}


	.theimg {
		width: 141px !important;
		height: 277px !important;
		border-radius: 8px;
	}

}

.main-header--four {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #ffffff;
	z-index: 9;
}

.testimonial-three {
	position: relative;
	padding: 24px 0 0;
}

.blog-card__title {
	color: var(--kidearn-black, #0B2038);
	font-size: 2vh;
	margin-top: 15px;
	margin-bottom: 14px;
}

.sidebar__posts {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.sidebar__posts__item {
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}

.sidebar__posts__image {
	flex: 0 0 80px;
}

.sidebar__posts__image img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}

.sidebar__posts__content {
	flex: 1;
}

.sidebar__posts__meta a {
	font-size: 14px;
	color: #666;
	text-decoration: none;
}

.sidebar__posts__title a {
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
	display: block;
}

@media (max-width: 768px) {
	.sidebar__posts__item {
		flex-direction: column;
		align-items: flex-start;
	}

	.sidebar__posts__image {
		flex: 0 0 100%;
	}

	.sidebar__posts__image img {
		width: 100%;
		max-height: 150px;
		object-fit: cover;
	}
}

.static-form button:hover {
	background-color: #bdc430;
	;
}

.p {
	text-align: justify;
}

.program-three {
	position: relative;
	padding: 10px 0;
	background-color: var(--kidearn-secondary, #FFAA23);
}

.program-three--home-four .program-three__top-bg {
	height: 105% !important;
}

.program-three {
	padding: 32px 0 !important;
}

@media(max-width:576px) {
	.program-three--home-four .program-three__top-bg {
		height: 96% !important;
	}

	.testimonial-four__area .sec-title__tagline {
		margin-top: -30px;
	}
}

.program-one__item__bg {
	opacity: 0.3;
}

.program-one__item__age {
	color: ghostwhite !important;
}

@media(max-width:425px) {
	.static-form input, .static-form select, .static-form textarea {
		padding: 3px 9px 7px 18px !important;
	}
}

.main-footer-three__bottom {
	padding: 15px 0;
}

.main-footer-three__bottom__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.main-footer-three__copyright {
	margin: 0;
	font-size: 18px;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

@media (max-width: 576px) {
	.main-footer-three_bottom_inner {
		flex-direction: column;
		text-align: center;
	}

	.left, .right {
		text-align: center;
		width: 100%;
		margin-bottom: 5px;
	}
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.blinking-text {
	animation: blink 1s infinite;
}

.wid {
	width: fit-content;
}

.programs-details__info {
	padding: 9px;
	box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
}

.main-footer-three__bottom__inner {
	padding: 1px 0;
	padding-bottom: 1px;
	border-top: 1px solid #D2D2D2;
	max-width: 1045px;
	margin-left: auto;
	margin-right: auto;
}

.footer-widget__links {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-widget__links li {
	width: 50%;
}

.footer-widget__links a {
	display: block;
	text-decoration: none;
	color: #fff;
	font-size: 16px;
}

@media screen and (min-width: 768px) {
	.footer-widget__links {
		display: flex;
		flex-direction: column;
	}

	.footer-widget__links li {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.testimonial-three__carousel-nav {
		display: none !important;
	}
}

@media (max-width: 768px) {
	body, * {
		cursor: none !important;
	}
}

@media (max-width: 720px) {
	.main-header__logo img {
		margin-left: 12px !important;
	}
}

@media (max-width: 720px) {
	.bt {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}

	.bt a {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 1180px) {
	.main-header__logo img {
		margin-left: 8px !important;
	}

	.main-header__inner {
		display: flex;
		align-items: center;
		padding: 1px 0;
		position: relative;
	}
}

@media (max-width: 1180px) {
	.bt {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}

	.bt a {
		width: 100%;
		text-align: center;
	}
}

/*******************************/
@media (max-width: 900px) {
	.main-header__logo img {
		margin-left: -100px !important;
	}

	.main-header__call__number {
		font-size: 14px !important;
	}

	.program-three--home-four .program-three__top-bg {
		height: auto !important;
	}
}

@media (max-width: 425px) {
	.main-header__logo img {
		margin-left: 3px !important;
	}

	.main-footer-three__copyright {
		margin: 0;
		font-size: 1rem !important;
	}

	.main-footer-three__bottom__inner {
		flex-direction: column;
		text-align: center;
	}
}

@media(max-width:375px) {
	.main-footer-three__copyright {
		margin: 0;
		font-size: 0.835rem !important;
	}

	.bt {
		margin-left: -13px;
	}
}

@media(max-width:320px) {
	.main-footer-three__copyright {
		margin: 0;
		font-size: 0.835rem !important;
	}

	.bt {
		margin-left: -60px;
		gap: 7px;
	}

	.static-form {
		max-width: 92%;
		top: 101%;
		right: 220px;
		height: 53vh !important;
	}

	.form-header h2 {
		margin-bottom: -28px;
	}
}

@media (max-width: 344px) {
	.static-form {
		max-width: 100%;
		top: 101%;
		right: 208px;
		height: 53vh !important;
	}

	.bt {
		margin-left: -60px;
		gap: 7px;
	}
}

@media (max-width: 360px) {
	.static-form {
		max-width: 100%;
		top: 101%;
		right: 220px;
		height: 67vh !important;
	}
}

@media (max-width: 390px) {
	.static-form {
		height: 56vh;
		right: 231px;
	}
}

@media (max-width: 430px) {
	.main-header__logo img {
		margin-left: 11px !important;
	}

	.static-form {
		width: 85%;
		height: 60vh;
		top: 100%;
		right: 245px;
		margin-top: -100px;
	}

	.about-four {
		margin-top: 455px;
	}
}

@media (max-width: 412px) {
	.static-form {
		width: 85%;
		height: 53vh;
		top: 100%;
		right: 245px;
		margin-top: -100px;
	}
}

@media(max-width:768px) {
	.program-three--home-four .program-three__top-bg__inner {
		opacity: 0.75 !important;
		background-color: var(--kidearn-secondary, #FFAA23) !important;
	}

	/*.bt {
	   */
	/* display: none !important;
	   */
	/* 
   }
   */
}

@media (max-width: 768px) {
	.bt .btn-danger {
		margin-top: 11px;
	}

	.bt a {
		width: 67%;
		text-align: center;
	}
}

.programs-details__info__title {
	padding-bottom: 16px !important;
	margin-bottom: 13px !important;
	margin-top: 6px !important;
}

.programs-details__info__list__text {
	line-height: 1;
	margin-top: 8px !important;
}

.programs-details__info__list li+li {
	padding-top: 15px !important;
	margin-top: 13px !important;
}

.contact-map {
	margin-top: 45px;
}

/*********************************/
.container-thanks {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: -290px;
}

.thank-you-card {
	background-color: white;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	padding: 40px;
	text-align: center;
	width: 100%;
	max-width: 600px;
	position: relative;
	overflow: hidden;
	animation: fadeIn 1s ease-in-out;
	margin-top: -290px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

h1 {
	color: #2c3e50;
	font-size: 36px;
	margin-bottom: 20px;
	position: relative;
}

h1::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: linear-gradient(to right, #3498db, #2ecc71);
	margin: 15px auto 0;
	border-radius: 2px;
}

.message {
	font-size: 20px;
	color: #555;
	margin-bottom: 30px;
	line-height: 1.6;
}

.franchise-tag {
	display: inline-block;
	background-color: #e8f4fc;
	color: #3498db;
	padding: 8px 16px;
	border-radius: 20px;
	font-weight: 600;
	margin-top: 10px;
	animation: slideIn 1s ease-out;
}

@keyframes slideIn {
	from {
		transform: translateX(-50px);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.decoration {
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: linear-gradient(45deg, rgba(46, 204, 113, 0.1), rgba(52, 152, 219, 0.1));
	z-index: 0;
}

.decoration-1 {
	top: -100px;
	left: -100px;
}

.decoration-2 {
	bottom: -100px;
	right: -100px;
}

.checkmark {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: block;
	stroke-width: 2;
	stroke: #2ecc71;
	stroke-miterlimit: 10;
	margin: 10% auto 20px;
	box-shadow: inset 0px 0px 0px #2ecc71;
	animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke: #2ecc71;
	fill: none;
	animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes scale {
	0%, 100% {
		transform: none;
	}

	50% {
		transform: scale3d(1.1, 1.1, 1);
	}
}

@keyframes fill {
	100% {
		box-shadow: inset 0px 0px 0px 30px rgba(46, 204, 113, 0.1);
	}
}

.back-home {
	display: inline-block;
	margin-top: 30px;
	color: #3498db;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}

.back-home:hover {
	border-bottom: 2px solid #3498db;
}

@media (max-width: 375px) {
	.thank-you-card {
		margin-top: -110px;
	}

	.container-thanks {
		margin-bottom: -135px;
	}
}

@media (max-width: 768px) {
	.main-slider-two__title__anim {
		margin-left: -12px;
	}
}

@media (max-width: 576px) {
	.main-slider-two__title__anim {
		margin-left: -2px;
	}
}


.main-footer__top {
	padding-top: 150px;
	padding-bottom: 1px;
}


.funfact-one__item {
	position: relative;
	padding: -1px 20px;
	transition: 500ms ease;
}


.custom-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 7px;
}



@media (min-width: 360px) {
	.custom-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.custom-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.custom-grid1 {
	display: grid;
	grid-template-columns: 1fr;
	gap: -25px;
	justify-content: center;
}

@media (min-width: 360px) {
	.custom-grid1 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.custom-grid1 {
		grid-template-columns: repeat(4, 1fr);
	}
}



.service-two {
	position: relative;
	padding: 50px 0 37px;
}

.lgimg {
	border-radius: 10px;
	border: 2px solid #ccc;
}

.service-two .sec-title {
	padding-bottom: 3px;
}



.mt-5 {
	margin-top: 3rem !important;
	margin-bottom: 39px !important;
}

.responsive-img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 40px 0;

}


@media (max-width: 576px) {
	.responsive-img {
		margin: 20px 0;
	}
}


@media (min-width: 577px) and (max-width: 768px) {
	.responsive-img {
		margin: 30px 0;
	}
}


@media (min-width: 769px) and (max-width: 992px) {
	.responsive-img {
		margin: 35px 0;
	}
}


@media (min-width: 993px) {
	.responsive-img {
		margin: 40px 0;
	}
}

.blog-four {
	position: relative;
	padding: 50px 0 50px;
}

.contact-two {
	position: relative;
	background-color: var(--kidearn-white, #fff);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 192px 0 3px;
}


.program-two {
	position: relative;
	padding: 60px 0;
}


.gallery-one {
	padding-top: 90px;
	padding-bottom: 90px;
}

.funfact-one {
	position: relative;
	padding: 118px 0 105px !important;
}


.about-two__author__image {
	width: 80px;
	height: 90px;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
}

.abt {
	font-size: 40px;
}

.main-header--four .main-header__call {
	margin-right: 100px;
	padding-right: 0;
}

@media (max-width: 767px) {
	.about-two__author__image {
		width: 83px;
		height: 70px;
	}
}



.no-royalty {
	font-size: 60px;
}

.preschool-chain {
	font-size: 50px;
}

@media (max-width: 768px) {


	.no-royalty {
		font-size: 36px;
	}

	.preschool-chain {
		font-size: 30px;
	}
}

@media (max-width: 480px) {


	.no-royalty {
		font-size: 28px;
	}

	.preschool-chain {
		font-size: 24px;
	}
}


@media (min-width: 1280px) and (max-width: 1365px) {
	.main-header__inner {
		margin-left: -60px;
	}

	.bt {
		display: inline-block;
		width: 100%;
		box-sizing: border-box;
		white-space: nowrap;
	}

	.main-menu .main-menu__list {
		margin-left: -100px;
	}

	.main-header--four .main-header__call {
		margin-right: -2px;
		padding-right: 0;
		margin-left: 15px;
	}

	.main-header__call {
		display: flex;
		align-items: center;
		gap: 8px;
	}
}

@media (min-width: 1366px) and (max-width: 1440px) {
	.main-header__inner {
		margin-left: -70px;
	}

	.bt {
		display: inline-block;
		width: 100%;
		box-sizing: border-box;
		white-space: nowrap;
	}

	.main-menu .main-menu__list {
		margin-left: -125px;
	}

	.main-header--four .main-header__call {
		margin-right: -4px;
		padding-right: 0;
		margin-left: 20px;
	}

	.main-header__call {
		display: flex;
		align-items: center;
		gap: 8px;
	}
}

@media (min-width: 1441px) and (max-width: 1560px) {
	.main-header__inner {
		margin-left: -80px;
	}

	.bt {
		display: inline-block;
		width: 100%;
		box-sizing: border-box;
		white-space: nowrap;
	}

	.main-menu .main-menu__list {
		margin-left: -140px;
	}

	.main-header--four .main-header__call {
		margin-right: -6px;
		padding-right: 0;
		margin-left: 25px;
	}

	.main-header__call {
		display: flex;
		align-items: center;
		gap: 8px;
	}
}

@media (min-width: 1561px) and (max-width: 1715px) {
	.main-header__inner {
		margin-left: -100px;
	}

	.bt {
		display: inline-block;
		width: 100%;
		box-sizing: border-box;
		white-space: nowrap;
	}

	.main-menu .main-menu__list {
		margin-left: -160px;
	}

	.main-header--four .main-header__call {
		margin-right: -10px;
		padding-right: 0;
		margin-left: 35px;
	}

	.main-header__call {
		display: flex;
		align-items: center;
		gap: 8px;
	}
}




.banner-two__content__title2 {
	position: relative;
	font-size: 80px;
	color: var(--kidearn-white, #fff);
	font-weight: 400;
	line-height: 60px;
	margin: 0 0 41px;
	transition: transform 1000ms ease, opacity 1000ms ease;
	opacity: 0;
	transform: translateY(100%);
}


@media (max-width: 1024px) {
	.banner-two__content__title2 {
		font-size: 60px;
		line-height: 50px;
	}
}

@media (max-width: 768px) {
	.banner-two__content__title2 {
		font-size: 40px;
		line-height: 42px;
	}
}


@media (max-width: 480px) {
	.banner-two__content__title2 {
		font-size: 28px;
		line-height: 36px;
	}
}


.corporate {
	background-color: #f0f9ff;
	padding: 60px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.corporate .container {
	background: #ffffff;
	border-radius: 32px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	padding: 40px 30px;
	max-width: 700px;
	width: 100%;
}

.corporate h2 {
	font-size: 32px;
	margin-bottom: 20px;
	color: #00296b;
}

.corporate p {
	font-size: 18px;
	margin-bottom: 10px;
	line-height: 1.6;
}

.corporate a {
	color: #f9a825;
	text-decoration: none;
}

.corporate a:hover {
	text-decoration: underline;
}



.about-two__content__text {
	text-align: justify;
}



.funfact-one__count {
	display: block;
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	color: var(--kidearn-white, #fff);
	font-family: var(--kidearn-heading-font, "Fredoka", serif);
	margin: 0 0 2px;
}



/***********/
@media (max-width: 576px) {
	.team-card__content {
		position: relative;
		margin-left: -8px;

	}

	.team-card__svg-middle {
		display: none !important;
	}
}

.team-details__inner {

	padding-bottom: 0px !important;
}

@media (min-width: 992px) {
	.team-one {
		padding: 0px 0 80px;
	}

}

@media (max-width: 767px) {
	.team-one {
		padding: 0px 0 70px;
	}
}


.team-details {
	padding-top: 0px;
}


/********/
.container-branch {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.form-container-branch {
	background-color: #f7f7f7;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	z-index: 1;
}

/* Branch Header */
.branch-header {
	background: #75C137;
	color: white;
	padding: 1.5rem;
	text-align: center;
}

.branch-header h2 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.branch-header p {
	font-size: 1.125rem;
	opacity: 0.9;
	margin: 0;
}

/* Branch Content */
.branch-content {
	padding: 1.5rem;
}

.branch-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

/* Branch Cards */
.branch-card {
	background-color: #f9fafb;
	border-top: 1px solid red;
	border-right: 1px solid blue;
	border-bottom: 1px solid green;
	border-left: 1px solid orange;
	/* light gray border */
	border-radius: 8px;
	padding: 1.25rem;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.branch-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-header {
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
}

.icon-circle {
	background-color: rgba(14, 165, 233, 0.1);
	color: #0ea5e9;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.75rem;
}

.card-header h3 {
	font-weight: 600;
	color: #1f2937;
	margin: 0;
	font-size: 1.125rem;
}

.card-text {
	margin-left: 0.5rem;
	color: #4b5563;
}

/* Contact Links */
.contact-link {
	color: #0ea5e9;
	text-decoration: none;
	display: block;
	margin-bottom: 0.25rem;
	transition: color 0.2s ease;
}

.contact-link:hover {
	color: #0369a1;
}

/* Social Links */
.social-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.social-link {
	display: flex;
	align-items: center;
	color: #0ea5e9;
	text-decoration: none;
	transition: color 0.2s ease;
}

.social-link:hover {
	color: #0369a1;
}

.social-link i {
	margin-right: 0.5rem;
	font-size: 0.875rem;
}

/* Responsive Styles */
@media (min-width: 640px) {
	.social-grid {
		grid-template-columns: 1fr 1fr;
	}

	.container-branch {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 2rem 0rem;
	}
}

@media (min-width: 768px) {
	.branch-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.address-card {
		grid-column: span 2;
	}
}

@media (min-width: 1024px) {
	.branch-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.address-card {
		grid-column: span 2;
	}

	.social-card {
		grid-column: auto;
	}
}

@media (min-width: 576px) {
	.social-grid {
		grid-template-columns: 1fr 1fr;
	}

	.container-branch {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 2rem 0rem;
	}
}

.video-two__btn {
	height: 300px;
	position: relative;
}

.video-two__btn img {
	width: 100%;
	height: auto;
	max-width: 100%;
	margin-top: -53px;
}

@media (max-width: 768px) {
	.video-two__btn {
		height: 190px;
		position: relative;
	}

	.video-two__btn img {
		height: 100%;
		object-fit: cover;
		margin-top: 0px;
	}
}

@media (max-width: 375px) {
	.video-two__btn {
		height: 160px;
		position: relative;
	}

	.video-two__btn img {
		height: 100%;
		object-fit: cover;
		margin-top: 0px;
	}
}

.service-two__item__title {
	font-size: 2vh;
	line-height: 23px;
	font-weight: 400;
	max-width: 150px;
	margin: 0 auto;
}

.txtsz{
	font-size: 25px
}

/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Fp2ywxg089UriCZa4ET-DNl0.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Fp2ywxg089UriCZa4Hz-D.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Fp2ywxg089UriCZa4ET-DNl0.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Fp2ywxg089UriCZa4Hz-D.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Fp2ywxg089UriCZa4ET-DNl0.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Fp2ywxg089UriCZa4Hz-D.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Fp2ywxg089UriCZa4ET-DNl0.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Fp2ywxg089UriCZa4Hz-D.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Hp2ywxg089UriCZ2IHSeH.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Hp2ywxg089UriCZOIHQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Hp2ywxg089UriCZ2IHSeH.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Hp2ywxg089UriCZOIHQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Hp2ywxg089UriCZ2IHSeH.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Hp2ywxg089UriCZOIHQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Hp2ywxg089UriCZ2IHSeH.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v16/rP2Hp2ywxg089UriCZOIHQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* hebrew */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/fredoka/v16/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiX8E-mKpNk.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/fredoka/v16/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiX8H-mKpNk.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/fredoka/v16/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiX8EemK.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Schoolbell';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIZxUa6w.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}