.section-notice {
  background-color: var(--purple);
}




.notice {
  text-align: center;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.notice p {
  color: var(--white);
  font-weight: 400;
  font-size: 0.8rem;
}

/* NAVIGATION BAR */
.section-nav {
  position: sticky;
  top: 0; /* Adjust this value based on your design */
  z-index: 100; /* Adjust the z-index as needed */
  background-color: var(--white);
}
.section-nav .container {
  padding: 1rem 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navigation-menu-mobile{
    display: none;
}
.nav-bar img {
  width: 200px;
}

.nav-bar svg {
  max-width: 10rem;
  height: auto;
  }

.navigation-menu ul {
  list-style: none;
  display: flex;
  font-size: 0.9rem;
  gap: 2rem;
  font-weight: 500;
  cursor: pointer;
}
.navigation-menu ul a {
  text-decoration: none;
  color: var(--black);
}
.navigation-menu ul li:hover {
  color: var(--purple);
  /* text-decoration: underline 2px var(--purple); */
}
/* Add a class to highlight the active link */
.active {
  color: var(--purple);
  border-bottom: 2px solid var(--purple);
}

/* Hero Header */
.section-hero {
  background-color: var(--white);
    max-width: 100vw;
    overflow: hidden;
}
.h-100 {
  height: 100%;
}
.hero-heading {
  line-height: 3rem;
  letter-spacing: -0.08rem;
  font-weight: 700;
}

.hero-header {
  min-height: 80vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
}

.image img {
  width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* NOTICE SECTION */
.section-notices {
  text-align: center;
}
.notices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  min-height: 100vh;
}

.notice-content {
  text-align: left;
}
.notice-section-heading {
  font-weight: 600;
  line-height: 2.8rem;
  font-size: 2.9rem;
}
.notice-highlight {
  margin-top: 1rem;
}
.recent-notice {
  background-color: #ffffff;
  text-align: left;
  padding: 1rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-left: 1rem solid var(--purple);
  border-radius: 0.6rem;
  margin-top: 1rem;
}
.recent-notice p a {
  text-decoration: none;
  color: var(--purple);
  font-weight: 600;
}
.notice-heading {
  font-size: 2rem;
}

/* LEAVE SECTION */
.section-leave {
  padding: 4rem 0 0 0;
  text-align: center;
  background: rgba(76, 175, 80, 0.3) url(/resources/images/praava-icon.png)
    no-repeat;
  background-size: 8%;
  background-color: var(--white);
}

/* OFFERS SECTION */
.section-corporate-offers {
  padding-bottom: 5rem;
}
.corporate-offers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  justify-content: space-between;
  align-items: center;
}

/* SECTION APPLICATION LIST */
.application-list{
  text-align: center;
}
.application-cards{
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
    /*align-items: flex-start;*/
}
.application-card{
  background-color: #ffffff;
  padding-bottom: 1rem;
  border-radius:  0.8rem 0.8rem;
  overflow: hidden;
  border-bottom: .7rem solid var(--purple);
  cursor: pointer;
  transition: all 60ms ease-in-out;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);

}
.application-card:hover{
  border-bottom: .7rem solid var(--purple-hover);
}
.application-card img{
  max-width: 100%;
}
.card-content{
    margin: 0 auto;
    max-width: 80%;
    text-wrap: normal;
    overflow-wrap: break-word;
}
.application-card p{
  font-size: 0.8rem;
  /*margin-bottom: 1rem;*/
    text-justify: auto;
}

.lineheight{
    line-height: 1rem;
    margin-bottom: 0;
}
.application-card a{
  /* margin-bottom: 1rem; */
  text-decoration: none;
  font-size: 0.8rem;
  color: var(--purple);
  font-weight: 600;
}
.application-card a:hover{
  text-decoration: underline;
}
/* FOOTER */
.section-footer {
  /* height: 10rem; */
  border-top: 1px rgba(0, 0, 0, 0.561) solid;
}
.footer {
  max-width: 1250px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.footer a {
  text-decoration: none;
  font-size: 1rem;
  color: var(--black);
  font-weight: 400;
  line-height: 0;
}

.footer a:hover {
  color: var(--purple);
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.application-card a{
  text-decoration: none !important;
}
@media screen and (max-width: 450px) {
  /* NAVIGATION BAR */
  .nav-bar {
    padding: 0.8rem 1rem !important;
  }
  .nav-bar img {
    width: 130px;
  }
  .nav-bar svg {
    max-width: 10rem;
    }
  /* HERO SECTION */
  .hero-header {
    display: block;
    text-align: center;
    padding: 1rem 1rem;
    min-height: 100vh;
  }

  .hero-heading {
    line-height: 2rem;
  }

  .image {
    margin-top: 1rem;
  }
  /* FOOTER */
  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  /* NOTICE SECTION */
  .section-notices {
    text-align: center;
  }
  .notices {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding-top: 3rem;
  }

  .notice-content {
    text-align: center;
  }
  .notice-section-heading {
    font-weight: 600;
    line-height: 1.8rem;
    font-size: 2rem;
  }
  .notice-highlight {
    margin-top: 2rem;
  }
  .recent-notice {
    background-color: #ffffff;
    text-align: left;
    padding: 1rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-left: 1rem solid var(--purple);
    border-radius: 0.6rem;
    margin-top: 1rem;
  }
  .recent-notice p a {
    text-decoration: none;
    color: var(--purple);
    font-weight: 600;
  }
  .notice-heading {
    font-size: 2rem;
  }

  .section-leave {
    padding: 2rem 0 0 0;
    text-align: center;
    background: url(/resources/images/praava-icon.png) no-repeat center;
    background-size: 30%;
  }
  .section-leave .leave-application h2 {
    line-height: 2rem;
  }

  /* OFFERS SECTION */
  .corporate-offers {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    justify-content: space-between;
    align-items: center;
  }
  .navigation-menu {
    display: none;
  }
  .application-cards{
    grid-template-columns: repeat(1,1fr);
  }
    .navigation-menu-mobile{
        display: block;
        justify-content: center;
        padding-bottom: 1rem;
    }
    .navigation-menu-mobile ul{
        justify-content: center;
    }
    .navigation-menu-mobile li{
        font-size: 0.7rem;
    }

}

@media screen and (max-width: 1150px) and (min-width: 500px) {
  .hero-heading {
    line-height: 2.2rem;
  }
  .nav-bar svg {
    max-width: 10rem;
    height: auto;
    }
  .hero-header {
    min-height: 70vh;
  }
  .notices {
    min-height: 80vh;
  }
  .notice-section-heading {
    font-size: 2rem;
    line-height: 2rem;
  }
  .section-leave {
    background: rgba(76, 175, 80, 0.3) url(/resources/images/praava-icon.png)
      no-repeat;
    background-size: 10%;
    background-color: var(--white);
  }
  .application-cards{
    grid-template-columns: repeat(2,1fr);
  }
  .navigation-menu-mobile{
      display: none;
  }
}
