/* app header school info */
.app_header_school_info {
  height: auto;
  padding: 0px 0px 8px 0;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app_header_sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
}

.app_header_school_info .container {
  justify-content: space-between;
  align-items: start;
  align-self: stretch;
  display: flex;
}

.app_header_school_info .header_left_container {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
}

.app_header_school_info .header_right_container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.app_header_school_info .school_info {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.app_header_school_info .header_left_container .school_info:not(:last-child) {
  padding-right: 20px;
  border-right: 1px solid var(--white);
}

.app_header_school_info .school_info p,
.app_header_school_info .school_info p a {
  color: var(--white);
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: var(--light-font-weight);
  letter-spacing: 0.2px;
}

.header_right_container a {
  color: var(--black);
  font-family: var(--heading-font-family);
  font-size: var(--normal-font-size);
  font-weight: 500;
  background-color: white;
  padding: 2px 16px;
  border-radius: 0 0 6px 6px;

}

@media (max-width: 1380px) {

  .app_header_school_info .school_info p,
  .app_header_school_info .school_info p a,
  .header_right_container a {
    font-size: 14px;
  }
}


/* header start  responsive*/
.app-header {
  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: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--black);
  font-size: var(--normal-font-size);
  font-family: var(--heading-font-family);
  font-weight: 500;
}

.app-header li a :hover {
  color: var(--secondary-color);
}

.app-header li .active_page {
  color: var(--secondary-color);
}

.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: 22px 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: var(--primary-color) !important;
  backdrop-filter: blur(5px);
}

.app-header-submenu li a {
  display: flex;
  width: 100%;
  padding: 8px;
  align-items: center;
  justify-content: space-between;
  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 var(--primary-color) 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(--tertiary-color);
  color: var(--black);
  border: 1px solid var(--tertiary-color);
  font-family: var(--heading-font-family);
}

.app-header-menu-button:hover {
  border: 1px solid var(--seconder-color);
  background: var(--primary-color);
  color: var(--white);
}

.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;
}



@media (max-width: 1440px) {
  .app-header li a {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .app-header li a {
    font-size: 14px;
    transition: all 0.5s;
    padding: 20px 12px;
  }

  .app-header .pre-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s;
  }

  .app_header_school_info .school_info p,
  .app_header_school_info .school_info p a,
  .header_right_container a {
    font-size: 14px;
  }
}

@media (max-width: 1120px) {
  .app-header li a {
    padding: 20px 12px;
    transition: all 0.5s;
  }
}

@media (max-width: 1100px) {
  .app-header li a {
    padding: 22px 7px;
    transition: all 0.5s;
  }

  .app-header-submenu-link:hover {
    overflow: visible;
  }

  .app-header-submenu-link:hover .app-header-submenu {
    position: unset;
  }

  .menu li {
    justify-content: start;
    flex-direction: column;
    align-items: start;
  }
}

@media (min-width: 1100px) {
  .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: 1023px) {

  /* .app-header .container {
    padding: 5px 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: 1100px) {
  .app_header_school_info {
    height: auto;
  }

  .app_header_school_info .header_left_container {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .app_header_school_info .header_right_container {
    flex-direction: column;
    gap: 10px;
    align-items: end;
  }

  .app_header_school_info .header_left_container .school_info:not(:last-child) {
    padding: 0;
    border: none;
  }
}

@media (max-width: 500px) {
  .app_header_school_info .container {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    padding: 0 14px;
  }

  .header_right_container a {
    padding: 4px 4px !important;
    font-size: 10px;
    font-weight: 400;
    border-radius: 6px;
  }

  .app_header_school_info .school_info p,
  .app_header_school_info .school_info p a {
    font-size: 12px;
  }

  .app_header_school_info .header_right_container {
    flex-direction: row;
  }

  .app-header-logo img {
    height: 50px;
  }

  .app-header .menu-icon {
    padding: 22px 10px;
  }
}

/* header end  responsive*/

/* app footer start */
.app-footer {
  background: var(--secondary-color);
  width: 100%;
  padding: 50px 0;
  font-size: 20px;
}

.app-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
  padding: 0 20px;
}

.app-footer p,
.app-footer a {
  color: var(--white);
  font-size: var(--normal-font-size);
  font-weight: var(--light-font-weight);
}

.footer_contect_us {
  display: flex;
  width: 342px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
}

.app-footer h2 {
  color: var(--tertiary-color);
  font-size: 24px;
  font-weight: 500;
  font-family: var(--heading-font-family);
}

.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,
.app-footer .footer_contect_us .contect_info .contect_info_box a {
  display: flex;
  align-items: start;
  gap: 10px;
}

.app-footer .footer_contect_us .contect_info .contect_info_box p {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2px;
}

.app-footer .school_about {
  display: flex;
  width: 380px;
  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 var(--yellow);
  background: var(--secondary-color);
  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: var(--white);
  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;
  }

  .footer_contect_us {
    width: 300px;
  }
}

@media (max-width: 1200px) {
  .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: 380px;
  }

  .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 */
/* website pop up section start */
.website_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  font-family: var(----normal-font-family);
  z-index: 9999999;
}

.showing_popup {
  background-color: #F8F3E5;
  display: inline-flex;
  padding: 26px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  max-width: 950px;
  width: 100%;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 60%;
  transition: all 0.5s;
}


.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0px 8px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 24px;
}

.school_adm_pop {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 35px;
  align-self: stretch;
}

.website_popup .school_adm_pop {
  display: flex;
  align-items: start;
  gap: 35px;
}

.website_popup .school_adm_pop img {
  width: 100%;
  height: auto;
  max-width: 439px;
}

.website_popup .school_adm_pop .content_area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  justify-content: space-evenly;
}

.website_popup .school_adm_pop .content_area h1 {
  color: #144474;
  font-family: var(--second-font-family);
  font-size: 34px;
  font-weight: 600;
  line-height: 131.595%;
  letter-spacing: -0.72px;
}

.website_popup .school_adm_pop .content_area h1 span {
  color: var(--primary-color);
}

.website_popup .school_adm_pop .content_area p {
  color: #636978;
  font-family: var(--second-font-family);
  font-size: var(--normal-font-size);
  font-weight: 500;
  line-height: 153%;
  letter-spacing: -0.32px;
}

.website_popup .school_adm_pop .content_area h3 {
  color: var(--seconder-color);
  text-align: justify;
  font-size: 18px;
  font-weight: var(--bold--font-weight);
}

.website_popup .school_adm_pop .content_area .conntent_website {
  display: flex;
  align-items: center;
  gap: 19px;
}

.website_popup .school_adm_pop .content_area .conntent_website span {
  display: flex;
  padding: 8.038px 16.076px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-family: var(--second-font-family);
  width: 160px;
}

.website_popup .school_adm_pop .content_area .conntent_website span a {
  color: var(--white);
  font-size: var(--normal-font-size);
  font-weight: 600;
}

.school_adm_pop_img {
  width: 100%;
}

@media (max-width: 768px) {
  .website_popup {
    padding: 20px;
  }

  .website_popup .alpha_admission img {
    width: 50%;
  }

  .website_popup .alpha_admission {
    flex-direction: column;
    gap: 8px;
  }

  .website_popup .school_adm_pop {
    flex-direction: column;
  }

  .website_popup .school_adm_pop img {
    max-width: 310px;
  }

  .showing_popup {
    top: 50%;
  }
}

@media (max-width: 500px) {
  .website_popup .school_adm_pop .content_area h1 {
    font-size: 16px;
  }

  .website_popup .school_adm_pop .content_area p {
    font-size: 14px;
  }

  .website_popup .school_adm_pop .content_area h3 {
    font-size: 14px;
  }

  .website_popup .school_adm_pop .content_area {
    gap: 8px;
  }

  .showing_popup {
    top: 50%;
    transform: translate(-50%, -40%);
  }

  .website_popup .school_adm_pop .content_area .conntent_website span {
    width: max-content;
  }

  .website_popup .school_adm_pop {
    flex-direction: column;
    gap: 15px;
  }

}

/* website pop up section end */