/* app header school info */
.app_header_sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9;
	background: #fff;
}

.app_header_school_info {
	height: 57px;
	padding: 8px 24px;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}
.app_header_school_info .container {
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	display: flex;
}
.app_header_school_info .school_info {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.app_header_school_info .school_info p {
	color: var(--white);
	font-family: var(--normal-font-family);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.2px;
}
.app_header_school_info .school_info p a{
	color: white;
}

/* header start  responsive*/
.app-header {
	border-bottom: 1px solid var(--primary-color);
	background: var(--White);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
	height: max-content;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 0px;
	position: relative;
}

.brand-logo {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.app-header-logo {
	display: flex;
	justify-content: start;
	align-items: center;
}
.app-header-logo img {
	height: auto;
	width: 100%;
	max-width: 350px;
}

.menu li {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.app-header ul {
	list-style: none;
	background-color: var(--white);
}

.app-header li a {
	display: flex;
	padding: 20px 20px;
	gap: 4px;
	align-items: center;
	text-decoration: none;
	color: var(--primary-color);
	font-size: var(--normal-font-size);
	font-family: var(--normal-font-family);
	color: var(--dark-blue, #162858);
	font-weight: 600;
}

.app-header .logo {
	display: block;
	float: left;
	font-size: 2em;
	padding: 10px 20px 10px 20px;
	text-decoration: none;
}

.app-header .menu {
	clear: both;
	max-height: 0;
	transition: max-height 0.3s ease-out;
	display: inline;
}

.app-header-submenu {
	display: none;
	position: absolute;
	top: 75px;
	z-index: 1;
	transition: all 0.5s ease;
	padding-top: 20px;
	color: white !important;
}

.app-header-submenu-link:hover {
	transition: height 0.3s ease-in-out;
	transition-delay: 0.1s;
	overflow: hidden;
}

.app-header-submenu-link:hover .app-header-submenu {
	display: grid;
	/* height: 200px; */
	opacity: 1;
	transform: translateY(0);
}

.app-header .menu-icon {
	cursor: pointer;
	/* display: inline-block; */
	float: right;
	padding: 28px 20px;
	/* position: relative; */
	user-select: none;
	top: -68px;
}

.app-header .menu-icon .navicon {
	background: #333;
	display: block;
	height: 2px;
	position: relative;
	transition: background 0.2s ease-out;
	width: 18px;
}

.app-header .menu-icon .navicon:before,
.app-header .menu-icon .navicon:after {
	background: #333;
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	transition: all 0.2s ease-out;
	width: 100%;
}

.app-header .menu-icon .navicon:before {
	top: 5px;
}

.app-header .menu-icon .navicon:after {
	top: -5px;
}

.app-header .menu-btn {
	display: none;
}

.app-header .menu-btn:checked ~ .menu {
	max-height: 700px;
}

.app-header .menu-btn:checked ~ .menu-icon .navicon {
	background: transparent;
}

.app-header .menu-btn:checked ~ .menu-icon .navicon:before {
	transform: rotate(-45deg);
}

.app-header .menu-btn:checked ~ .menu-icon .navicon:after {
	transform: rotate(45deg);
}

.app-header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.app-header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
	top: 0;
}
.app-header-submenu {
	padding: 8px 14px !important;
	background: rgba(22, 40, 88, 0.8) !important;
}
.app-header-submenu li a {
	display: flex;
	width: 100%;
	padding: 8px;
	align-items: center;
	justify-content: space-between;
	backdrop-filter: blur(5px);
	align-items: center;
	color: white;
}
.app-header-submenu li a:hover {
	color: var(--primary-color);
	background-color: var(--white);
	transition: all 0.5s;
}
.submenu_arrow {
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 18px 18px 18px;
	border-color: transparent transparent rgba(22, 40, 88, 0.8) transparent;
	transform: rotate(0deg);
	position: absolute;
	top: -18px;
	right: 50%;
}

.app-header-menu-button {
	display: flex;
	width: max-content;
	height: 40px;
	padding: 10px 20px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	border-radius: 8px;
	background: var(--seconder-color);
	color: var(--white);
	border: 1px solid var(--seconder-color);
}
.app-header-menu-button:hover {
	border: 1px solid var(--seconder-color);
	background: var(--White);
	color: var(--seconder-color);
}
.app-header-menu-button-login {
	display: flex;
	width: max-content;
	height: 40px;
	padding: 10px 20px;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	border: 1px solid var(--seconder-color);
	background: var(--White);
	color: var(--seconder-color);
}
.app-header-menu-button-login:hover {
	background: var(--seconder-color);
	color: var(--white);
}

.app-header-menu {
	display: flex;
	gap: 16px;
}

.app-header .container {
	padding: 0 20px;
}
@media (max-width: 1440px) {
	.app-header li a {
		font-size: 14px;
	}
}

@media (max-width: 1370px) {
	.app-header li a {
		padding: 20px 10px;
		transition: all 0.5s;
	}
}
@media (max-width: 1200px) {
	.app-header li a {
		font-size: 14px;
		transition: all 0.5s;
	}
	.app-header .pre-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		transition: all 0.5s;
	}
	.app-header .container {
		padding: 0;
	}
}
@media (max-width: 1024px) {
	.app-header li a {
		padding: 22px 7px;
		transition: all 0.5s;
	}
}

@media (min-width: 1260px) {
	.app-header .menu {
		clear: none;
		float: right;
		max-height: none;
		display: flex;
		transition: all 0.5s;
	}

	.app-header .menu-icon {
		display: none;
		transition: all 0.5s;
	}

	.app-header .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		transition: all 0.5s;
	}
}

@media (max-width: 1260px) {
	.app-header .container {
		padding: 0px 20px;
	}
	.menu li {
		display: block;
		margin-left: 30px;
	}

	.app-header-submenu {
		display: none;
		position: sticky;
		top: 80px;
		z-index: 1;
		padding: 0;
	}
	.app-header-submenu li {
		margin: 0;
	}
	.submenu_arrow {
		display: none !important;
	}
	.app-header-menu span {
		margin-bottom: 10px;
		width: 100%;
	}

	.app-header-menu,
	.app-header-bar {
		display: none;
		transition: all 1s ease-out;
	}
}

.active {
	color: var(--blue-color) !important;
	font-family: var(--normal-font-family);
	font-size: 16px;
	font-weight: var(--font-weight);
}
@media (max-width: 1024px) {
	.app_header_school_info .container {
		flex-direction: column;
		align-items: start;
		gap: 4px;
	}
	.app_header_school_info {
		height: auto;
	}
}
@media (max-width: 500px) {
	.app_header_school_info .container {
		flex-direction: row;
		justify-content: end;
		gap: 10px;
	}
	.app_header_school_info .school_info p {
		display: none;
	}
	.app-header .menu-icon {
		padding: 20px 0px 20px 20px;
	}
	.app-header-logo img {
		height: 62px;
	}
}
/* header end  responsive*/

/* app footer start */
.app-footer {
	background: #fdf8ee;
	width: 100%;
	padding: 50px 20px;
	font-size: 20px;
}
.app-footer .container {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 20px;
}
.app-footer p,
.app-footer a {
	color: #606060;
	font-size: var( --normal-font-size);
	font-weight: var(--light-font-weight);
}
.footer_contect_us {
	display: flex;
	width: 395px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 25px;
}
.app-footer h2 {
	color: var(--primary-color);
	font-size: var(--m-heading-size);
	font-weight: var(--bold--font-weight);
}
.app-footer .footer_contect_us .contect_info {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 25px;
}
.app-footer .footer_contect_us .contect_info .contect_info_box  {
	display: flex;
	align-items: start;
	gap: 10px;
}

.app-footer .school_about {
	display: flex;
	width: 318px;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}
.app-footer .school_about img {
    height: auto;
    width: 100%;
}
.app-footer .school_about p {
	text-align: justify;
	line-height: 31px;
}
.app-footer .footer_menus {
	display: flex;
	width: 556px;
	flex-direction: column;
	align-items: flex-start;
	gap: 29px;
}
.app-footer .footer_menus .menus_section {
	display: flex;
	align-items: flex-start;
	gap: 64px;
	align-self: stretch;
}
.app-footer .footer_menus .menus_section div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 19px;
}
.app-footer-brand {
	border-top: 1px solid #b7b7b7;
	background: #fdf8ee;
	width: 100%;
	padding: 6px 20px;
}
.app-footer-brand .brand_info {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 6px;
}
.app-footer-brand .brand_info .footer-brand {
	display: flex;
	gap: 10px;
}

.app-footer-brand p,
.app-footer-brand a {
	color: #606060;
	font-size: 18px;
	font-weight: var(--light-font-weight);
}
@media (max-width: 1440px) {
	.app-footer .container {
		padding: 0 20px;
	}
	.app-footer .footer_menus {
		width: 380px;
	}
	.app-footer .footer_menus .menus_section {
		gap: 30px;
	}

}
@media (max-width: 1024px) {
	.app-footer .container {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
	.app-footer .school_about {
		grid-column: 1;
		grid-row: 1;
		width: 330px;
	}
	.app-footer .footer_menus {
		grid-column: 1 / span 3;
		grid-row: 2;
		width: 100%;
	}
	.footer_contect_us {
		grid-column: 3;
		grid-row: 1;
		width: 100%;
	}
}
@media (max-width: 900px) {
	.app-footer {
		padding: 30px 0;
	}
	.app-footer-brand .brand_info .footer-brand {
		width: 100%;
		justify-content: end;
	}
	.app-footer .school_about {
		width: 300px;
	}
}
@media (max-width: 768px) {
	.app-footer .container {
		display: flex;
		flex-direction: column;
	}
	.app-footer .school_about {
		width: 100%;
	}
}
@media (max-width: 500px) {
	.app-footer p,
	.app-footer a,
	.app-footer-brand p,
	.app-footer-brand a {
		font-size: var(--normal-font-size);
	}
	.app-footer .footer_menus .menus_section div {
		gap: 10px;
	}
	.app-footer .footer_contect_us .contect_info {
		gap: 14px;
	}
	.app-footer {
		padding: 20px 0;
	}
	.app-footer .footer_menus {
		gap: 18px;
	}
	.app-footer-brand .brand_info,
	.app-footer-brand .brand_info .footer-brand {
		justify-content: center;
	}
}
/* app footer end */
/* not found data */
.not_data_found .data_content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.not_data_found {
	display: flex;
	align-items: center;
	justify-content: center;
}

.not_data_found .data_content h3 {
	color: var(--primary-color);
	font-size: var(--heading-size);
	font-weight: var(--bold--font-weight);
	text-align: center;
}
.not_data_found .data_content h5 {
	color: var(--seconder-color);
	font-size: 20px;
	font-weight: 500;
	text-align: center;
}
