/*****************************************/
/* Screen width below 75rem/1200px */
/*****************************************/

@media screen and (max-width: 75rem) {
  nav {
    display: none;
  }

  .toggle-icon {
    display: block;
    cursor: pointer;
  }

  #menu-checkbox:checked ~ nav {
    display: block;
  }

  .nav-list {
    flex-direction: column;
  }

  header {
    position: relative;
  }

  .nav-list {
    position: absolute;
    top: 8rem;
    right: 0;
    left: 0;
    align-items: center;
    background-color: rgba(40, 117, 30, 0.947);
    padding: 2rem 0;
    gap: 0.5rem;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
    line-height: 2;
  }

  .nav-list li a {
    width: 100%;
    display: block;
  }

  /* FOOTER */

  .footer-container {
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }

  .icon-container {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  /*******************************************************************/
  /* HOMEPAGE */
  /*******************************************************************/

  /* Special events and exhibitions */

  .specials-features {
    flex-direction: column;
    max-width: 23rem;
    margin: 0 auto;
    margin-bottom: 3rem;
  }

  .specials-features-reverse {
    flex-direction: column-reverse;
  }

  .specials-img {
    border-radius: var(--br-top);
    max-width: 23rem;
  }

  .specials-H3 {
    font-size: 1.3rem;
    margin-top: 1rem;
  }

  .specials-txt {
    padding: 0 1.5rem 2rem 1.5rem;
  }

  /*******************************************************************/
  /* EXHIBITIONS PAGE */
  /*******************************************************************/

  .exhibition-cont {
    justify-content: center;
    margin: 0 3rem 5rem 3rem;
  }

  .exhib-reverse {
    flex-direction: column-reverse;
    align-items: center;
  }

  /*******************************************************************/
  /* VISIT PAGE */
  /*******************************************************************/

  .visit-card-row_1,
  .visit-card-row_2 {
    column-gap: 1rem;
    row-gap: 2rem;
  }

  .visit-card {
    width: 20rem;
  }

  .visit-img {
    height: 13rem;
  }

  /*******************************************************************/
  /* GET INVOLVED PAGE */
  /*******************************************************************/

  .involved-flex-cont {
    gap: 1rem;
  }

  .involved-reverse {
    /* flex-direction: column-reverse; */
    align-items: center;
  }

  /*******************************************************************/
  /* FOR KIDS, FOR TEACHERS + FOR RESEARCHERS PAGE (Shared styling) */
  /*******************************************************************/

  .explore-txt-cont {
    order: -1;
  }

  .explore-feature-images {
    align-items: center;
    order: 1;
  }

  .explore-contact-btn {
    order: -0;
  }
}

/*****************************************/
/* Screen width below 37rem/600px */
/*****************************************/
@media screen and (max-width: 37rem) {
  /*******************************************************************/
  /* HOMEPAGE */
  /*******************************************************************/

  .hero-heading-container {
    padding: 0;
    margin: 2rem 2rem;
  }

  /*******************************************************************/
  /* EXHIBITIONS PAGE */
  /*******************************************************************/

  .exhibition-cont {
    max-width: 23rem;
    margin: 4rem auto;
  }

  .exhib-img {
    max-width: 23rem;
  }

  .exhib-txt-cont {
    max-width: 23rem;
  }

  /*******************************************************************/
  /* GET INVOLVED PAGE */
  /*******************************************************************/

  .involved-container {
    margin: 4rem 1rem;
  }

  /*******************************************************************/
  /* ABOUT PAGE */
  /*******************************************************************/

  .about-card {
    margin: 4rem 1rem;
  }
}
