/* Importing FOnt family  */
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #FF4500 ;
  --secondary-color: #017bff;
  --third-color: #05c8dd;
  --erp-color: #FF4500;
  --border-color: #000000;
  --light-border-color: #dadce0;
  --p-size: 16px;
  --sm-p-size: 12px;
  --heading-size: 48px;
  --m-heading-size: 24px;
  --s-heading-size: 16px;
  --white: #ffffff;
  --black: #000000;
  --p--gray: #444444;
  --p-black: #000000;
  --p-primary: #6f1348;
  --max-width: 1400px;
  --popins: "Poppins", sans-serif;
  --montserrat: "Montserrat", sans-seri;
  --box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  --gray-bg: #f6f6f6;
}

a {
  text-decoration: none;
  line-height: 30px;
}

img {
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
  overflow-x: hidden;
}

.d-none {
  display: none;
}

.app-container {
  width: 100%;
}

p {
  line-height: 30px;
}

body::-webkit-scrollbar {
  width: 6px !important;
  height: 8px;
}

body::-webkit-scrollbar-thumb {
  border-radius: 6px;
  border: 3px solid #ccc !important;
}

.error {
  color: tomato;
}
.primary-text {
  color: var(--primary-color) !important;
  font-weight: bold;
}

.primary-button {
  padding: 0.5rem 3rem;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-weight: 700;
  font-family: var(--montserrat);
  margin-bottom: 1rem;
  gap: 1rem;
  font-size: 1rem;
  width: max-content;
}

.primary-button-outline {
  padding: 0.5rem 3rem;
  background: var(--white);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-weight: 700;
  font-family: var(--montserrat);
  margin-bottom: 1rem;
  gap: 1rem;
  font-size: 1rem;
  width: max-content;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.primary-button-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.read-more-button {
  padding: 0.5rem 3rem;
  background: var(--white);
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-weight: 700;
  font-family: var(--montserrat);
  margin-bottom: 1rem;
  gap: 1rem;
  font-size: 1rem;
  width: max-content;
}

/** Header  */

.app-header {
  width: 100%;
  border-bottom: 1px solid var(--light-border-color);
  box-shadow: var(--box-shadow);
  background: var(--white);
}

.app-header-logo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1rem;
}

.app-header-container {
  width: 100%;
}

.app-header-logo-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.app-header-logo-link img {
  width: 100%;
  max-width: 300px;
}

.app-header-menu-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  padding: 0.4rem;
  border-radius: 5px;
}

.app-header-menu-toggle svg {
  font-size: 1.6rem;
}

.app-header-menus {
  width: 100%;
  display: none;
}

.app-header-link {
  display: block;
  padding: 1rem;
  color: var(--p-black);
  font-family: var(--montserrat);
  border-bottom: 1px solid var(--light-border-color);
  font-weight: 500;
  letter-spacing: 0.2px;
  font-size: 0.8rem;
}

.app-header-link:last-child {
  border: none;
}

.app-header-link-button {
  display: block;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 25px 10px 25px;
  text-align: center;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}

.app-header-erp-button {
  padding: 0.5rem 1rem;
  background: var(--erp-color);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-weight: 700;
  font-family: var(--montserrat);
  /* margin-bottom: 1rem; */
  gap: 1rem;
  font-size: 1rem;
}

.active {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
  font-weight: 700 !important;
}

.show-more-content {
  cursor: pointer;
  font-size: 1.2rem;
}

@media screen and (min-width: 1320px) {
  .app-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .app-header-menu-toggle {
    display: none;
  }

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

  .app-header-logo {
    width: 45%;
    padding: 0;
  }

  .app-header-menus {
    display: block;
  }

  .app-header-menu-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    font-size: 13px;
  }

  .app-header-link {
    display: inline;
    padding: 0;
    border-bottom: none;
  }

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

  .lg-erp {
    display: inline-block;
  }

  .app-header-logo {
    width: auto;
  }

  .app-header-erp-link {
    margin-left: 4rem;
  }
}

/** Header Ends */

/** Banner  */

.bx-wrapper {
  margin-bottom: 1rem;
  border: none;
}

.bx-wrapper .bx-pager {
  display: none;
}

.bx-wrapper img {
  width: 100%;
}

.slider-container {
  margin-bottom: 2rem;
}

/** Banner Ends  */

/** notice board  */

.notification-board {
  width: 90%;
  margin: 0 auto;
}

.notification-board-card {
  background: var(--white);
  width: 100%;
}

.notification-board-card-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--primary-color);
}

.notification-board-card-header h5 {
  font-size: 1rem;
  font-family: var(--montserrat);
  color: var(--white);
}

.notification-board-card-header svg {
  font-size: 1rem;
  color: var(--white);
  display: none;
}

.notification-board-card-body {
  width: 100%;
  border: 1px solid var(--light-border-color);
  box-shadow: var(--box-shadow);
  padding: 1rem;
}

.notice-board-content {
  width: 100%;
  background: #f7f7f7;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.notification-board-card-body marquee {
  min-height: 300px;
  max-height: 300px;
}

.notice-board-content p,
.notice-board-content a p {
  font-family: var(--montserrat);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: var(--black);
  line-height: 20px;
}

.notice-board-content h6 {
  font-family: var(--montserrat);
  font-size: 0.8rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--primary-color);
}

.notice-board-content h6::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  border-bottom: 1px solid var(--primary-color);
}

@media screen and (min-width: 1100px) {
  .slider-container {
    position: relative;
  }

  .notification-board {
    position: absolute;
    top: 60%;
    left: 250px;
    transform: translate(-60%, -50%);
    max-width: 300px;
  }

  .notification-board-card {
    border-radius: 10px;
  }

  .notification-board-card-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .notification-board-card-body marquee {
    min-height: 250px;
    max-height: 250px;
  }

  .notification-board-card-body {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .notification-board-card-header svg {
    display: block;
  }
}

/** notice board Ends */

/** Footer  */

.app-footer {
  width: 100%;
  background: var(--primary-color);
}
.footer {
  width: 100%;
  padding: 2rem 0;
}

.footer-link-section {
  width: 100%;
}

.footer-links-wrapper {
  width: 100%;
}

.footer-link {
  width: 100%;
  margin-bottom: 2rem;
}

.footer-link h5 {
  color: var(--white);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 2rem;
}

.footer-link h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 00%;
  width: 50px;
  margin-bottom: 1rem;
  border-bottom: 2px solid #fff;
}

.footer-link a {
  display: block;
  width: 100%;
  font-size: 14px;
  font-family: var(--montserrat);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.foote-social-media {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.foote-social-media a img {
  width: 100%;
  max-width: 25px;
}

.footer-contact-info-section {
  width: 100%;
}

.footer-contact-info-section h6 {
  font-size: 1rem;
  font-family: var(--montserrat);
  color: var(--white);
  margin-bottom: 1rem;
  text-decoration: underline;
}

.footer-contact-info {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-info a,
.footer-contact-info p {
  display: block;
  width: 100%;
  font-size: 0.8rem;
  font-family: var(--montserrat);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.app-footer-brand {
  width: 100%;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.copy-right {
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copy-right p {
  font-family: var(--montserrat);
  font-size: 1rem;
  font-weight: 700;
}

.footer-brand {
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-brand p {
  font-family: var(--montserrat);
  font-size: 1rem;
  font-weight: 700;
}

.footer-brand img {
  max-width: 150px;
}

@media screen and (min-width: 768px) {
  .footer {
    display: grid;
    grid-template-columns: 65% 35%;
    grid-template-rows: auto;
  }

  .footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
  }

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

  .footer-contact-info-section h6 {
    text-align: right;
  }

  .footer-contact-info {
    justify-content: space-between;
  }

  .footer-contact-info a {
    width: auto;
    display: inline-block;
  }

  .footer-contact-info img {
    padding-left: 3rem;
  }

  .footer-contact-info p,
  .footer-contact-info a {
    margin-bottom: 0;
    text-align: right;
  }

  .app-footer-brand {
    flex-direction: row;
  }
}

@media screen and (min-width: 1100px) {
  .footer-contact-info a,
  .footer-contact-info p {
    font-size: 1.1rem;
  }
}
/** Footer Ends  */
/** Footer Ends  */

/** social-media */

.app-social-media-section {
  width: 100%;
  max-width: 50px;
  overflow: hidden;
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 99;
}

.social-media-continer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.social-card img {
  width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 1099px) {
  .app-social-media-section {
    display: none;
  }
}

/** social-media Ends*/

/** modal css  */
.app-modal {
  width: 100%;
  position: fixed;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.app-modal-card {
  width: 100%;
  background: rgba(0, 35, 123, 0.75);
  backdrop-filter: blur(50px);
  border-radius: 20px;
  min-height: 500px;
  max-height: 750px;
  overflow-x: hidden;
  overflow-y: auto;
}

.app-modal-controls {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.app-modal-close-button {
  cursor: pointer;
}
.app-modal-controls .app-modal-close-button svg {
  color: var(--white);
  font-size: 2rem;
}

.app-modal-head {
  width: 100%;
  padding: 1rem;
}

.app-modal-head h5 {
  font-size: 1.4rem;
  text-align: center;
  font-family: var(--montserrat);
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.app-modal-head h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  transform: translateX(-50%);
  border-bottom: 3px solid #6f1348;
}

.app-modal-content {
  width: 100%;
  padding: 1rem;
}

.app-modal-content p {
  font-size: 1rem;
  text-align: justify;
  font-family: var(--montserrat);
  color: var(--white);
}

.chairman p:first-child {
  padding-bottom: 1rem;
}

.director p:nth-child(2),
.director p:nth-child(3) {
  padding-bottom: 1rem;
}

@media screen and (min-width) {
  .app-modal-content p {
    text-align: center;
  }
}

/** modal css Ends */

/** Why us Section */

.why-us-section {
  width: 100%;
  background: #f4f5f6;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.why-us-container {
  width: 100%;
}

.why-us-content {
  width: 100%;
  margin-bottom: 2rem;
}

.why-us-content h3 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.why-us-content h3 span {
  color: var(--secondary-color);
}

.why-us-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100px;
  border: 2px solid var(--secondary-color);
}

.why-us-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
}

.why-us-image {
  width: 100%;
}

.why-us-image-card.content {
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 36px;
  box-shadow: var(--box-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  margin-bottom: 1rem;
}

.why-us-image-card.content h5,
.why-us-image-card.content p {
  font-family: var(--montserrat);
  font-size: 1.6rem;
}

.why-us-image-card.content p {
  font-weight: 500;
}

.why-us-image-card:nth-child(1).content p {
  color: #ffbf00;
  font-weight: 700;
}

.why-us-image-card.content:nth-child(3) p,
.why-us-image-card.content:nth-child(3) h5 {
  color: #05dd28;
  font-weight: 600;
}

.why-us-image-card.content:nth-child(5) p {
  color: var(--secondary-color);
  font-weight: 600;
}

.why-us-image-card.content:nth-child(8) p {
  color: #9c27b0;
  font-weight: 800;
}

.why-us-image-card.content:nth-child(8) {
  padding: 2rem 1rem;
}

.why-us-image-card.content:nth-child(10) p,
.why-us-image-card.content:nth-child(10) h5 {
  color: #f44336;
  font-weight: 800;
}

.why-us-sub-image-card {
  position: absolute;
  right: -30px;
  top: -40px;
  width: 100px;
  height: 100px;
}

.why-us-sub-image-card img {
  width: 100%;
  max-width: 60px;
  margin: 0 auto;
}

.why-us-image-card {
  width: 100%;
  margin-bottom: 2rem;
}

.why-us-image-card img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .why-us-image {
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: grid;
    grid-template-columns: 32% 32% 32%;
    gap: 1rem;
  }

  .why-us-image-card.content {
    padding: 0.5rem 1rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .why-us-image-card {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1330px) {
  .why-us-content h3 {
    font-size: 3rem;
  }

  .why-us-container {
    width: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 2rem;
    padding-top: 2rem;
  }

  .why-us-image {
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: grid;
    grid-template-columns: 32% 32% 32%;
    gap: 1rem;
  }

  .why-us-image-card.content {
    padding: 3rem 1rem;
    width: 100%;
    margin-bottom: 0rem;
    height: max-content;
  }

  .why-us-image-card {
    margin-bottom: 0rem;
  }

  .why-us-image {
    grid-template-columns: 23% 23% 23% 23%;
    padding: 0.8rem;
  }

  .why-us-image-card.content:nth-child(8) p {
    text-align: center;
  }

  .why-us-sub-image-card {
    position: absolute;
    right: -34px;
    top: -30px;
  }

  .why-us-image-card:nth-child(1).content p {
    text-align: center;
  }
}

/** Why us Section Ends */

/** Aim & Objective  */

.aim-objective-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.aim-objective-container {
  width: 100%;
}

.admin-objective-image {
  width: 100%;
}

.admin-objective-image img {
  width: 100%;
}

.admin-objective-content {
  width: 100%;
  padding-top: 1rem;
}

.admin-objective-content h3 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.admin-objective-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100px;
  border: 2px solid var(--primary-color);
}

.admin-objective-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
  .admin-objective-content h3 {
    font-size: 2.4rem;
  }

  .aim-objective-container {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 1rem;
  }

  .admin-objective-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

/** Aim & Objective Ends */

/** Mission Vision  */

.mission-vision-section {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
}

.mission-vision-container {
  width: 100%;
}

.mission-vision-card {
  width: 100%;
  position: relative;
}

.mission-vision-image {
  width: 100%;
  overflow: hidden;
}

.mission-vision-image img {
  width: 100%;
}

.mission-vision-content {
  display: none;
}

/* .mission-vision-content img {
  max-width: 40px;
} */

.mission-vision-content svg {
  font-size: 1.6rem;
  color: var(--secondary-color);
  background: var(--white);
  padding: 0.5rem;
  clip-path: polygon(
    50% 0%,
    90% 20%,
    100% 60%,
    75% 100%,
    25% 100%,
    0% 60%,
    10% 20%
  );
}

.mission-vision-content h4 {
  font-family: var(--montserrat);
  font-size: 1.6rem;
  color: var(--white);
}

@media screen and (min-width: 768px) {
  .mission-vision-content h4 {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .mission-vision-container {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 1rem;
  }

  .mission-vision-content h4 {
    font-size: 3rem;
  }

  .mission-vision-content {
    position: absolute;
    bottom: 20%;
    left: 5%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: translateX(-5%);
    gap: 2rem;
  }
}

/** Mission Vision Ends */

/** Student Spotlight */

.student-spotlight-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #f3f3f3;
}

.student-spotlight-container {
  width: 100%;
}

.student-spotlight-card {
  background: var(--white);
  width: 100%;
  box-shadow: var(--box-shadow);
  border-radius: 25px;
  margin-bottom: 3rem;
}

.student-spotlight-card-image {
  width: 100%;
}

.student-spotlight-card-image img {
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.student-spotlight-card-content {
  width: 100%;
  padding: 1rem;
}

.student-spotlight-section h3 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  color: #00237b;
  text-align: center;
  margin-bottom: 2rem;
}

.student-spotlight-card-content p {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 0.7rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.student-spotlight-card-content p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100px;
  border: 1px solid #ed1c24;
}

.student-spotlight-card-content h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  line-height: 30px;
}

.join-us-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .student-spotlight-container {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .student-spotlight-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4rem;
  }

  .core-value-card-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .student-spotlight-section h3 {
    font-size: 2.4rem;
  }
}

/** Student Spotlight */

/** NHS Core Value  */

.cour-value-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.cour-value-section h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-align: center;
}

.cour-value-section p {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.core-value-container {
  width: 100%;
}

.core-value-card {
  width: 100%;
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border-radius: 26px;
  margin-bottom: 1rem;
}

.core-value-card-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.core-value-card-content h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.core-value-card-content h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 50px;
  transform: translateX(-50%);
  border: 1px solid #ed1c24;
}

.core-value-card-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .core-value-container {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .cour-value-section h4 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
  }

  .core-value-container {
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    gap: 1rem;
  }

  .core-value-card-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
  }
}

/** NHS Core Value Ends */

/** About us Page  */

.about-us-banner {
  width: 100%;
}

.about-us-banner-image {
  width: 100%;
}

.about-us-banner-image img {
  width: 100%;
}

.about-us-intro-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.about-us-intro-container {
  width: 100%;
  padding: 1rem;
  box-shadow: var(--box-shadow);
  margin-top: 2rem;
  margin-bottom: 3rem;
  border-radius: 10px;
}

.about-us-intro-content h4 {
  font-size: 1.6rem;
  font-family: var(--montserrat);
  color: #00237b;
  position: relative;
  margin-bottom: 1rem;
  text-align: center;
}

.about-us-intro-content h4::after {
  content: "";
  bottom: 0;
  left: 50%;
  position: absolute;
  width: 100px;
  border-bottom: 3px solid #00237b;
  transform: translateX(-50%);
}

.about-us-intro-content p {
  font-size: 1rem;
  font-family: var(--montserrat);
  text-align: justify;
  margin-bottom: 1rem;
}

.about-us-intro-container .about-us-banner-content {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.about-us-banner-content h2 {
  font-size: 1.6rem;
  font-family: var(--montserrat);
  color: var(--white);
  position: relative;
  margin-bottom: 1rem;
}

.about-us-banner-content h2::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100px;
  border-bottom: 1px solid var(--white);
}

.about-us-banner-content p {
  font-size: 1rem;
  font-family: var(--montserrat);
  color: var(--white);
  text-align: justify;
  margin-bottom: 2rem;
}

.pta-section {
  width: 100%;
  padding-top: 2rem;
  background: var(--white);
}

.pta-section h6 {
  font-size: 0.9rem;
  font-family: var(--montserrat);
  margin-bottom: 1rem;
  text-align: center;
  color: #ff6551;
}

.pta-section h4 {
  font-size: 1.6rem;
  font-family: var(--montserrat);
  margin-bottom: 2rem;
  text-align: center;
  color: #252b42;
}

.pta-container {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pta-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.pta-image {
  width: 100%;
}

.pta-image img {
  width: 100%;
}

.pta-content {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  position: relative;
  z-index: 1;
}

.pta-content h6 {
  font-size: 1.4rem;
  font-family: var(--montserrat);
  margin-bottom: 1rem;
  text-align: center;
  color: var(--white);
}

.nhs-pta-info-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--gray-bg);
}

.nhs-pta-info-container {
  width: 100%;
}

.nhs-pta-info-content {
  width: 100%;
  margin-bottom: 1rem;
}

.nhs-pta-info-content h3 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.nhs-pta-info-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 50px;
  border: 2px solid #514a33;
}

.nhs-pta-info-content p {
  font-size: 1rem;
  font-family: var(--montserrat);
  text-align: justify;
}

.nhs-pta-image {
  width: 100%;
}

.nhs-pta-image img {
  width: 100%;
}

.nhs-team-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.nhs-team-container {
  width: 100%;
  margin-bottom: 1rem;
}

.nhs-team-container h5 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #00237b;
  text-align: center;
}

.nhs-team-container p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: center;
}

.nsh-head-container {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.nhs-head-card {
  width: 100%;
  box-shadow: var(--box-shadow);
  border-radius: 20px;
  margin-bottom: 1rem;
}

.nhs-head-card-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.nhs-head-card-image img {
  width: 207px;
  height: 207px;
  border-radius: 100%;
  object-fit: cover;
}

.nhs-head-card-content {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.nhs-head-card-content h6 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.2rem;
  /* margin-bottom: 1rem; */
  color: var(--primary-color);
  text-align: center;
}

.nhs-head-card-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: center;
  /* margin-bottom: 1rem; */
}

.nsh-director-container {
  width: 100%;
  padding-top: 2rem;
}

.nhs-director-card {
  width: 100%;
}

.show-on-mobile {
  display: block;
}

.nhs-director-card-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.nhs-director-card-image img {
  width: 207px;
  height: 207px;
  border-radius: 100%;
  object-fit: cover;
}

.nhs-director-card-content {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.nhs-director-card-content h6 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--black);
  text-align: center;
}

.nhs-director-card-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.nhs-group-section {
  width: 100%;
  padding-top: 2em;
  padding-bottom: 2rem;
}

.nhs-group-container {
  width: 100%;
}

.nhs-group-card {
  width: 100%;
}

.nhs-group-card-image {
  width: 100%;
  margin-bottom: 1rem;
}

.nhs-group-card-image img {
  width: 100%;
}

.nhs-group-card-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.nhs-group-card-content h4 {
  font-size: 1.6rem;
  color: var(--primary-color);
}

.show-on-mobile {
  display: block;
}

.hide-on-mobile {
  display: none;
}

.nsh-head-container {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .pta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    margin-bottom: 5rem;
  }

  .nhs-pta-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nhs-pta-image img {
    width: auto;
  }

  .nsh-head-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .nsh-director-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nhs-head-card {
    width: max-content;
    margin: 0 auto;
  }

  .show-on-mobile {
    display: none;
  }

  .hide-on-mobile {
    display: block;
  }
}

@media screen and (min-width: 1100px) {
  .pta-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    margin-bottom: 5rem;
  }

  .pta-section h4 {
    font-size: 3rem;
    font-weight: 700;
  }

  .nhs-pta-info-container {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 1rem;
  }

  .nhs-pta-info-content h3 {
    font-size: 3rem;
    font-weight: bold;
  }

  .nhs-team-container h5 {
    font-size: 2.4rem;
    font-weight: bold;
  }

  .about-us-intro-content h4 {
    font-size: 2.4rem;
    font-weight: bold;
  }

  .team-new-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .nsh-director-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .nsh-head-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  /* .nhs-head-card:first-child {
    grid-column: 2;
  } */

  .nhs-group-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .nhs-group-card{
    margin-bottom: 20px;
  }

  .nhs-director-card {
    width: 40%;
  }

}
/** About us Page Ends */

/** Career us  */

.career-wrapper {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(
      90.02deg,
      rgba(0, 0, 0, 0.5) 20.7%,
      rgba(0, 0, 0, 0.215) 52.26%
    ),
    url("../images/career/career-banner.png") top left no-repeat;
  background-size: cover;
  background-position: left;
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.contact-form-container {
  width: 100%;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  padding: 2rem 1rem;
}

.career-opening-section {
  width: 100%;
  padding-top: 3rem;
  margin-bottom: 3rem;
}

.career-opening-container {
  width: 100%;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: 10px;
}

.table {
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  border: none;
  border-collapse: collapse;
}

.table thead {
  background: var(--primary-color);
}

.table thead tr th {
  color: var(--white);
}

.table thead tr th,
.table tbody tr td {
  min-width: 100px;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid var(--light-border-color);
  font-family: var(--montserrat);
  font-size: 1rem;
}

.table tbody tr td a {
  font-family: var(--montserrat);
  font-size: 1rem;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.carrer-form-section {
  width: 100%;
}

.carrer-form-container {
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1rem;
}

.carrer-form-container h4 {
  font-family: var(--montserrat);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.career-form-submit-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.job-description-section {
  width: 100%;
}
.job-description-container {
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
}

.job-description-container h5 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: #00237b;
}

.job-description-container h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 50px;
  border: 2px solid #00237b;
}

.job-description-container p {
  font-size: 1rem;
  font-family: var(--montserrat);
  text-align: justify;
}

@media screen and (min-width: 920px) {
  .carrer-form-container .row {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
}

/** Career us Ends */

/** form css */
.form-group {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-self: flex-start;
  flex-direction: column;
}
label {
  font-family: var(--montserrat);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

input {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  padding-left: 1rem;
  font-family: var(--montserrat);
  outline: none;
}

select {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  font-family: var(--montserrat);
  outline: none;
}

input[type="file"] {
  width: 100%;
  height: auto;
  padding: 1rem 0;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  padding-left: 1rem;
  font-family: var(--montserrat);
  outline: none;
}

textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  padding: 1rem;
  font-family: var(--montserrat);
  outline: none;
}

/** form css Ends */

/** Academics  */

.academic-section {
  width: 100%;
}

.academic-container {
  width: 100%;
}

.academic-card {
  width: 100%;
  background: var(--white);
}

.academic-image {
  width: 100%;
}

.academic-image img {
  width: 100%;
}

.academic-content {
  width: 100%;
  padding: 1rem;
  background: var(--white);
}

.academic-content h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color);
}

.academic-content h4:nth-child(2) {
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.academic-content h4:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100px;
  border: 2px solid var(--primary-color);
}

.academic-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 1rem;
}

.academic-special-program {
  width: 100%;
  background: url("../images/academic/academic-4.png") top left no-repeat;
  background-size: cover;
  background-position: right;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.academic-special-program-container {
  width: 100%;
}

.academic-special-program-content {
  width: 100%;
}
.academic-special-program-content-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.99);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 1rem;
}

.academic-special-program-content-card h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color);
}

.academic-special-program-content-card h4:nth-child(2) {
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.academic-special-program-content-card h4:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100px;
  border: 2px solid var(--primary-color);
}

.academic-special-program-content-card p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 1rem;
}

.curriculum-section {
  width: 100%;
  background: url("../images/academic/curriculum.png") top left no-repeat;
  background-size: cover;
  background-position: right;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.curriculum-section::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.curriculum-container {
  width: 100%;
}

.curriculum-content {
  width: 100%;
}

.curriculum-content h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.curriculum-content h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100px;
  border: 2px solid var(--white);
  transform: translateX(-50%);
}

.curriculum-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
  color: var(--white);
}

.curriculum-section::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.technology-partner-section {
  width: 100%;
  width: 100%;
  background: #f0e5dc;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.technology-partner-container {
  width: 100%;
  padding: 1rem;
}

.technology-partner-card {
  width: 100%;
}

.technology-partner-content-header {
  width: 100%;
}

.technology-partner-card-header img {
  display: none;
}

.technology-partner-card-header h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--black);
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.technology-partner-card-header h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100px;
  border: 2px solid var(--black);
}

.technology-partner-card-body,
.technology-partner-card-body-content,
.technology-partner-card-body-image {
  width: 100%;
}

.technology-partner-card-body-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 1rem;
  color: var(--black);
}

.technology-partner-card-body-image img {
  width: 100%;
}

/** Solution Banner  */

.solution-partner-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--white);
}

.solution-partner-container,
.solution-partner-content-card,
.solution-partner-content,
.solution-partner-content-header {
  width: 100%;
}

.solution-partner-content {
  margin-bottom: 2rem;
}

.solution-partner-content-header h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.solution-partner-content-header h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100px;
  border: 2px solid var(--primary-color);
}

.solution-partner-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 1rem;
  color: var(--black);
}

.solution-partner-header-image,
.solution-partner-banner {
  width: 100%;
}

.solution-partner-header-image img,
.solution-partner-banner img {
  width: 100%;
}

/** Solution Banner Ends */

@media screen and (min-width: 768px) {
  .technology-partner-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  .technology-partner-card-header img {
    display: block;
    max-width: 250px;
  }

  .solution-partner-header-image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1024px) {
  .academic-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .academic-content {
    padding: 1rem 3rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .academic-content h4 {
    font-size: 2.4rem;
  }

  .academic-card:nth-child(2) .academic-image {
    order: 2;
  }

  .academic-card:nth-child(2) .academic-content {
    order: 1;
    background: var(--gray-bg);
  }

  .academic-card:nth-child(4) .academic-image {
    order: 2;
  }

  .academic-card:nth-child(4) .academic-content {
    order: 1;
  }

  .academic-special-program {
    min-height: 500px;
  }

  .academic-special-program-container,
  .academic-special-program-content {
    max-width: 700px;
    height: 500px;
  }

  .academic-special-program-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .academic-special-program-content-card h4 {
    font-size: 2rem;
  }

  .academic-special-program {
    background-position: center;
  }

  .curriculum-section {
    min-height: 900px;
    background-position: center;
  }

  .curriculum-content h4 {
    font-size: 2.4rem;
  }

  .curriculum-content p {
    font-weight: 700;
    font-size: 1.4rem;
  }

  .technology-partner-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 4rem;
  }

  .technology-partner-card-header h4 {
    font-size: 3rem;
  }
  .technology-partner-section p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 40px;
  }

  .solution-partner-container {
    display: grid;
    grid-template-columns: 70% 30%;
    grid-template-rows: auto;
  }

  .solution-partner-content-header h4 {
    font-size: 2.4rem;
  }

  .solution-partner-content p {
    font-size: 1.4rem;
  }
}

/** Academics Ends  */

/** gallery */

.album-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.album-section h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.album-container {
  width: 100%;
}

.album-card {
  width: 100%;
  display: block;
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--light-border-color);
  box-shadow: var(--box-shadow);
}

.album-content {
  width: 100%;
  /* background: linear-gradient(
    2.63deg,
    #192857 2.56%,
    rgba(0, 35, 123, 0) 98.19%
  ); */

  background: var(--primary-color);
  padding: 2rem 1rem;
}

.album-content h5 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  text-align: center;
}

.album-image {
  width: 100%;
  overflow: hidden;
}

.album-image img {
  width: 100%;
  max-height: 306px;
  object-fit: cover;
  object-position: top;
}

@media screen and (min-width: 768px) {
  .album-section h4 {
    font-size: 2.4rem;
  }

  .album-container {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 1rem;
  }
}

@media screen and (min-width: 1100px) {
  .album-container {
    grid-template-columns: 32% 32% 32%;
  }
}

/** gallery Ends */

/** Gallery Images */

.album-images-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.album-images-section h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
  text-align: center;
}

.album-images-container {
  width: 100%;
}

.album-images-card {
  width: 100%;
  display: block;
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--light-border-color);
  box-shadow: var(--box-shadow);
}

.gallery-image {
  width: 100%;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
}

.album-images-header {
  margin-bottom: 3rem;
}

.album-images-header a {
  display: none;
}

@media screen and (min-width: 768px) {
  .album-images-section h4 {
    font-size: 1.4rem;
  }

  .album-images-header a {
    display: block;
  }

  .album-images-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
  }

  .album-images-container {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 1rem;
  }
}

@media screen and (min-width: 1100px) {
  .album-images-section h4 {
    font-size: 1.8rem;
  }

  .album-images-container {
    grid-template-columns: 32% 32% 32%;
  }

  .gallery-image img {
    height: 100%;
    min-height: 250px;
    max-height: 250px;
    object-position: center;
    object-fit: cover;
  }
}

/** Gallery Images Ends*/

/** Nurture Css  */

.nhs-nurture-section {
  width: 100%;
}

.nhs-nurture-container {
  width: 100%;
}

.nhs-nurture-card {
  width: 100%;
}

.nhs-nurture-card-image {
  width: 100%;
}

.nhs-nurture-card-image img {
  width: 100%;
}

.nhs-nurture-card-content {
  width: 100%;
  padding: 1rem;
}

.nhs-nurture-card-content h3 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color);
}

.nhs-nurture-card-content h3:nth-child(2) {
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.nhs-nurture-card-content h3:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100px;
  border: 2px solid var(--primary-color);
}

.nhs-nurture-card-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 1rem;
}

.extra-curricular-section {
  width: 100%;
  padding-top: 2rem;
  background: var(--gray-bg);
}

.extra-curricular-section h3 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color);
  text-align: center;
  padding-bottom: 2rem;
}

.extra-curricular-container {
  width: 100%;
}

.extra-curricular-card {
  width: 100%;
}

.extra-curricular-content {
  width: 100%;
  padding: 1rem;
  background: var(--white);
}

.extra-curricular-content h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.extra-curricular-content h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100px;
  border: 2px solid var(--primary-color);
}

.extra-curricular-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
}

.extra-curricular-image {
  width: 100%;
  background: var(--white);
}

.extra-curricular-image img {
  width: 100%;
}

.sport-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.sport-info {
  width: 100%;
}

.sport-info h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.sport-info p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
}

.sport-info h6 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1rem;
  padding-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.sport-container {
  width: 100%;
}

.sport-card {
  width: 100%;
  display: block;
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
}

.sport-content {
  width: 100%;
  /* background: linear-gradient(
    2.63deg,
    #192857 2.56%,
    rgba(0, 35, 123, 0) 98.19%
  ); */

  background: var(--primary-color);
  padding: 2rem 1rem;
}

.sport-content h5 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  text-align: center;
}

.sport-card-image {
  width: 100%;
  overflow: hidden;
}

.sport-card-image img {
  width: 100%;
}

.club-section {
  width: 100%;
  padding-top: 2rem;
  background: var(--gray-bg);
}

.club-info {
  width: 100%;
  padding-bottom: 2rem;
}

.club-info h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.club-info p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: center;
}

.club-container {
  width: 100%;
}

.club-card {
  width: 100%;
}

.club-image {
  width: 100%;
  background: var(--white);
}

.club-image img {
  width: 100%;
}

.club-content {
  width: 100%;
  padding: 1rem;
  background: var(--white);
}

.club-content h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: var(--primary-color);
}

.club-content h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100px;
  border: 2px solid var(--primary-color);
}

.club-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .sport-container {
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
}

@media screen and (min-width: 1100px) {
  .sport-container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .nhs-nurture-card {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
  }

  .nhs-nurture-card-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .nhs-nurture-card-content h3,
  .sport-info h4 {
    font-size: 2.4rem;
  }

  .extra-curricular-card {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
  }

  .extra-curricular-section h3 {
    font-size: 2.4rem;
  }

  .extra-curricular-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .extra-curricular-content h4 {
    font-size: 2rem;
  }

  .extra-curricular-card:nth-child(2) .extra-curricular-content,
  .extra-curricular-card:nth-child(4) .extra-curricular-content {
    order: 2;
  }

  .extra-curricular-card:nth-child(2) .extra-curricular-image,
  .extra-curricular-card:nth-child(4) .extra-curricular-image {
    order: 1;
  }

  .club-info h4 {
    font-size: 2.4rem;
  }

  .club-card {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
  }

  .club-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .club-content h4 {
    font-size: 2.4rem;
  }

  .club-card:nth-child(2) .club-image {
    order: 2;
  }
  .club-card:nth-child(2) .club-content {
    order: 1;
  }
}

/** Nurture Css Ends */

/** contact  */

.contact-section {
  width: 100%;
}

.contact-container {
  width: 100%;
}

.contact-card {
  width: 100%;
}

.contact-card-content {
  width: 100%;
  padding: 1rem;
}

.contact-card-content h4 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 1.6rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact-card-content h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100px;
  border: 2px solid var(--black);
}

.contact-card-content p,
.contact-card-content a {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
  color: var(--black);
  display: block;
  margin-bottom: 1rem;
}

.location-iframe {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.location-iframe iframe {
  width: 100%;
  height: 170px;
  box-shadow: var(--box-shadow);
}

.contact-card-image {
  width: 100%;
}

.contact-card-image img {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1100px) {
  .contact-card {
    display: grid;
    grid-template-columns: 50% 50%;
  }

  .contact-card:nth-child(2) .contact-card-content {
    order: 2;
  }

  .contact-card-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 3rem;
  }

  .location-iframe iframe {
    width: 100%;
  }

  .contact-card-content h4 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .contact-card-content p,
  .contact-card-content a {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  @media screen and (min-width: 1920px) {
    .location-iframe iframe {
      width: 80%;
    }
  }
}

/** contact Ends  */

/** admission  */

.admission-banner {
  width: 100%;
  min-height: 500px;
  background: url("../images/admission/banner.png") top left no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.admission-banner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(267.41deg, #00237b 1.94%, rgba(0, 0, 0, 0.5));
  z-index: -1;
}

.admission-content {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.admission-content h5 {
  font-size: 1.6rem;
  font-family: var(--montserrat);
  color: var(--white);
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}

.admission-content h5::after {
  content: "";
  bottom: 0;
  left: 50%;
  position: absolute;
  width: 100px;
  border-bottom: 3px solid var(--white);
  transform: translateX(-50%);
}

.admission-content p {
  font-size: 1rem;
  font-family: var(--montserrat);
  color: var(--white);
  text-align: justify;
  margin-bottom: 2rem;
}

.admission-procedure-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.admission-form-section {
  width: 100%;
}

.all-admission-content-section {
  width: 100%;
  padding-bottom: 2rem;
}

.all-admission-content-container {
  width: 100%;
  border: 1px solid var(--light-border-color);
  box-shadow: var(--box-shadow);
  background: var(--white);
  border-radius: 20px;
  padding: 1rem;
}

.admission-procedur-container {
  width: 100%;
}

.admission-procedur-container h5 {
  font-size: 1.3em;
  font-family: var(--montserrat);
  color: var(--primary-color);
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.admission-procedur-container h3 {
  font-size: 1.5em;
  font-family: var(--montserrat);
  color: var(--primary-color);
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.admission-procedur-container h5::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100px;
  border-bottom: 3px solid var(--primary-color);
}

.admission-procedur-container p {
  font-size: 1rem;
  font-family: var(--montserrat);
  text-align: justify;
}

.admission-test-section {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.admission-test-container {
  width: 100%;
}

.admission-test-container h5 {
  font-size: 1.2rem;
  font-family: var(--montserrat);
  color: var(--primary-color);
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.admission-test-container h5::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100px;
  border-bottom: 3px solid var(--primary-color);
}

.admission-test-container p {
  font-size: 1rem;
  font-family: var(--montserrat);
  text-align: justify;
}

.admission-test-container ul {
  width: 100%;
  padding: 1rem;
  list-style: disc;
}

.admission-test-container ul li {
  font-size: 1rem;
  font-family: var(--montserrat);
  text-align: justify;
  line-height: 30px;
  margin-bottom: 1rem;
}

.admission-form-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--white);
}

.admission-form-container {
  width: 100%;
  background: var(--white);
  padding: 2rem 1rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.admission-form-container h5 {
  margin: 0 auto;
  font-size: 18px;
  font-family: var(--montserrat);
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
  background: var(--primary-color);
  padding:10px 20px ;
  border-radius: 10px;
}

.admission-form {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .admission-form-container h5 {
    width: max-content;
  }
}

@media screen and (min-width: 1024px) {
  .admission-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 2rem;
  }

  /* .admission-test-container h5,
  .admission-procedur-container h5,
  .admission-content h5 {
    font-size: 2rem;
  } */

  .admission-banner {
    min-height: 600px;
  }

  .admission-banner::after {
    background: none;
  }

  .admission-content p {
    font-size: 1.2rem;
  }

  .admission-form-container {
    width: 80%;
    margin: 0 auto 3rem auto;
  }

  .all-admission-content-container {
    width: 80%;
    margin: 0 auto;
  }
}

/** admission Ends */

/** facilities  */

.facilities-intro-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--gray-bg);
  overflow: hidden;
}

.facilities-intro-container {
  width: 100%;
}

.facilities-intro-container h3 {
  font-size: 1.6rem;
  font-family: var(--montserrat);
  margin-bottom: 2rem;
  text-align: center;
}

.facilities-intro-container p {
  font-size: 1rem;
  font-family: var(--montserrat);
  text-align: center;
}

.facilities-section {
  width: 100%;
}

.facilities-container {
  width: 100%;
}

.facilities-row {
  width: 100%;
}

.facilities-card {
  width: 100%;
  min-height: 500px;
}

.facilities-card.safety {
  width: 100%;
  background: url("../images/facilities/safety.png?v1") top left no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.facilities-card.classroom {
  width: 100%;
  background: url("../images/facilities/classrooms.png?v2") top left no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.facilities-card.library {
  width: 100%;
  background: url("../images/facilities/library.png?v1") top left no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.facilities-card.computer {
  width: 100%;
  background: url("../images/facilities/computer.png?v2") top left no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.facilities-card.science {
  width: 100%;
  background: url("../images/facilities/science.png?v2") top left no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.facilities-card.medical {
  width: 100%;
  background: url("../images/facilities/medical.png?v2") top left no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.facilities-content {
  width: 100%;
  padding: 1rem;
  overflow: hidden;
}

.facilities-content h5 {
  font-size: 1.6rem;
  font-family: var(--montserrat);
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.facilities-content h5::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100px;
  border-bottom: 3px solid var(--white);
}

.facilities-content p {
  font-size: 1rem;
  font-family: var(--montserrat);
  color: var(--white);
  text-align: justify;
  font-weight: 600;
}

.top {
  position: absolute;
  top: 10%;
  left: 0;
}

.bottom {
  position: absolute;
  bottom: 5%;
  left: 0;
}

.top-right {
  position: absolute;
  top: 0%;
  right: 10px;
  text-align: right;
  max-width: 100%;
}

.bottom-right {
  position: absolute;
  bottom: 0%;
  right: 10px;
  text-align: right;
  max-width: 100%;
}

.top-right h5::after {
  right: 0;
  left: 100%;
  transform: translateX(-100%);
}

.bottom-right h5::after {
  right: 0;
  left: 100%;
  transform: translateX(-100%);
}

.facilities-card-full {
  width: 100%;
  background: url("../images/facilities/sport.png?v1") top left no-repeat;
  background-size: cover;
  min-height: 500px;
  position: relative;
  z-index: 1;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .facilities-card {
    min-height: 700px;
    overflow: hidden !important;
  }

  /* .facilities-content {
    max-width: 500px;
  } */
}

@media screen and (min-width: 1100px) {
  .facilities-row {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
  }

  .bottom {
    left: 30%;
    transform: translateX(-30%);
  }

  .top {
    left: 20%;
    transform: translateX(-30%);
  }

  .top-right,
  .bottom-right {
    max-width: 90%;
  }

  .facilities-content h5,
  .facilities-intro-container h3 {
    font-size: 3rem;
  }

  .facilities-card-full {
    min-height: 700px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }

  .facilities-card-full .facilities-content {
    max-width: 650px;
  }

  .facilities-card.safety .facilities-content {
    max-width: 60%;
  }
}

/** facilities Ends  */

/** mission vision Overlay css  */

/* .mission-content {
  position: relative;
  z-index: 1;
} */

.overlay {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 35, 123, 0.65),
    rgba(0, 35, 123, 0.65)
  );
}

.overlay-content {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  /* height: 100%; */
  width: 100%;
  padding: 5rem 1rem;
}

.overlay-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.overlay-head h4 {
  font-family: var(--montserrat);
  font-size: 1.6rem;
  color: var(--white);
  max-width: 500px;
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

/* .overlay-head img {
  max-width: 30px;
} */

.overlay-head h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  border-bottom: 3px solid var(--white);
}

.overlay-body p {
  font-family: var(--montserrat);
  font-size: 0.8rem;
  color: var(--white);
}

.overlay svg {
  font-size: 1.6rem;
  color: var(--secondary-color);
  background: var(--white);
  padding: 0.5rem;
  clip-path: polygon(
    50% 0%,
    90% 20%,
    100% 60%,
    75% 100%,
    25% 100%,
    0% 60%,
    10% 20%
  );
}

.overlay-head img {
  display: none;
}

@media screen and (min-width: 475px) {
  .overlay-content {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .overlay-head h4 {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .mission:hover .mission-content {
    display: none;
  }
  .mission:hover .mission-overlay {
    display: block;
  }

  .vision:hover .vision-content {
    display: none;
  }
  .vision:hover .vision-overlay {
    display: block;
  }
  .overlay {
    display: none;
  }

  .overlay-body p {
    font-size: 1.6rem;
    padding-left: 5rem;
  }

  .overlay-head img {
    display: block;
  }
}

/** mission vision  Overlay css Ends */

/** Core value orverlay */
.core-value-card {
  position: relative;
}
.core-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

.core-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (min-width: 1024px) {
  .core-value-card:hover .core-overlay {
    display: block;
  }
}

/** Core value orverlay Ends */

/** Notices Container */

.notices-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.notices-container {
  width: 100%;
  border: 1px solid var(--light-border-color);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}

.notices-title {
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid var(--light-border-color);
}

.notices-title h5 {
  font-family: var(--montserrat);
  font-size: 1rem;
  color: var(--primary-color);
  max-width: 500px;
}

.notices-images {
  width: 100%;
}

.notices-images img {
  width: 100%;
}

.notices-content {
  width: 100%;
  padding: 1rem;
}

.notices-content p {
  font-family: var(--montserrat);
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .notices-title h5 {
    font-size: 2rem;
    max-width: 100%;
  }

  .notices-images img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: top;
  }
}

/** Notices Container Ends */

/* Accordian */

.accordion {
  width: 100%;
  margin: 2rem auto;
}

.accordion-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 1.6rem;
}

.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}

.accordion-item-header.accordian-active::after {
  content: "\2212";
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

/* Public DIsclosure  */

.public-disclosure-section {
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.information-container {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.information-container h6 {
  font-size: 1rem;
  font-family: var(--popins);
  margin-bottom: 1rem;
  color: var(--erp-color);
}

.other-information {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.other-information h6 {
  font-size: 1rem;
  font-family: var(--popins);
  margin-bottom: 1rem;
  color: dodgerblue;
}

/* Public DIsclosure Ends */

/* Blink ANimation  */
.blink {
  animation: blink 1s linear infinite;
  transition: all 0.5s;
}

@keyframes blink {
  from {
    opacity: 0.2;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Admission OPen Container  */
.admission_open_container {
  width: 100%;
  position: absolute;
  max-width: 500px;
  top: 0;
  right: 0;
  height: 100%;

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  box-sizing: border-box;
  z-index: 1;
}

.admission_open_card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  background: rgba(1, 56, 79, 0.3);
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  box-sizing: border-box;
}

.admission_open_card:hover {
  background: rgba(1, 56, 79, 0.38);
}

.admission_open_card h4 {
  font-size: 40px;
  color: var(--white);
  font-family: var(--popins);
  margin-bottom: 32px;
}

.admission_open_card p {
  font-size: 20px;
  color: var(--white);
  font-family: var(--montserrat);
}

.admission_open_card p:last-child {
  font-size: 20px;
  color: var(--white);
  font-family: var(--montserrat);
  margin-top: 100px;
}

.slider-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

@media (min-width: 320px) and (max-width: 1100px) {
  .admission_open_container {
    position: static;
    margin: 0 auto 16px auto;
    max-width: 90%;
  }

  .admission_open_card {
    background: rgba(1, 56, 79, 0.6);
  }

  .admission_open_card h4 {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .admission_open_card p:last-child {
    margin-top: 16px;
  }
}

.why-us-img {
  height: 180px;
  border-radius: 50px;
  object-fit: cover;
}
