.navBar a {
  text-decoration: none;
}

.navBar a[aria-current="page"] {
  color:  #C2652A;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.material-symbols-outlined.menu_icon {
  display: none;
}

.brla_letters {
  color: #953e06;
}

.brla-paragraph {
  width: 650px;
  color: #4e250b;
  font-size: 1.7rem;
  font-weight: 600;
}

.menu_icon {
  color: #C2652A;
  font-variation-settings:
  'FILL' 0,
  'wght' 700,
  'GRAD' 0,
  'opsz' 24
}

.brla-txt {
  color: #C2652A;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 2px;
}

.menu_icon:hover {
  color: #F48F8C;
}

.sidebar {
  display: none;
}


/* makes the sidebar (menu) for mobile devices */
@media (max-width: 700px) {
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    z-index: 999;
    background-color: white;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  

  .material-symbols-outlined.menu_icon {
    display: inline-block;
  }

  .navBar a {
    display: none;
  }
  .navBar button {
    display: none;
  }

  .sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sidebar li {
    margin: 0;
    padding: 0;
  }

  .sidebar li a,
  .sidebar li span {
    display: block;
    width: 100vh;
    padding: 1rem 1rem 1rem 45px; /* top right bottom left */
    box-sizing: border-box;
  }

  .sidebar li:hover {
    background-color: #fed7aa;
  }
}

@media (min-width: 701px) {
  .sidebar {
    display: none !important;
  }
}

/* style for BRLA logo and h1 element witht the tile */
.logo-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brla-logo {
  width: 50%;
  height: auto;
  object-fit: scale-down;
}

/* CSS for membership page membership form container */
.form-section {
  padding: 20px;
  background-color: white;
  border-radius: 15px;
  display: flex;
  height: max-content;
}



.form-logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  flex-basis: 35%;
}



.form-section hr {
  display: none;
}

@media (max-width: 700px) {
  .form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-section hr {
    margin-left: 20px;
    margin-right: 20px;
    opacity: 20%;
    display: block;
    border-color: #B95E23;
    border-style: solid;
    border-width: 1px;
  }

}

/* makes the form wider for wider screens */
@media (min-width: 701px) {
  .form-container iframe {
    width: 600px;
  }
}

/* CSS for index - 'Upcoming Events' section */

.ue-container {
  margin-top: 100px;
}

@media (max-width: 700px) {
  .about-logo {
    width: 200px;
    height: auto;
  }

}

@media (max-width: 700px) {
  div.ancmnt-container {
    height: 8rem;
  }
}

.pres-brdr-color {
  background-color: #f2df96d1 !important;
}

.qr-code {
  width: 250px;
  height: auto;
  background-color: rebeccapurple;
}


.paypal-container {
    align-self: stretch;   /* or width: 100%; */
}

.reg-instrct {
  list-style: decimal !important;
  margin-left: 25px;
}

.reg-instrct li {
  margin-top: 10px;
}

.reg-instrct li:nth-child(5) {
  font-weight: 700;
}

/* awards, scholarship css */
 .sw-ul {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

html {
  scroll-behavior: smooth;
}

.page-aside.sticky {
  top: 5rem;
  z-index: 1;
  align-self: flex-start;
  max-height: calc(100vh - 5rem);
  overflow-y: auto;
}

.emails {
  color: #B95E23;
  text-decoration: underline;
}

.mem-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 1rem;
}

.mem-flex div {
  flex: 0 0 180px;
  height: 200px;
}

@media (max-width: 800px) {
  .mem-flex {
    display: flex;
  }

  .mem-flex div {
    flex: 1 1 200px;
    /* width: 200px; */
  }

}

.new-banner {
    background-color: #ffc600;
    padding: 6px;
    border-radius: 5px;
}

.register-btn {
  display: flex;
  gap: 5px;
  width: fit-content;
  padding: 10px;
  background-color: #ffc600;
  border-radius: 5px;
}

.register-btn:hover {
  color: white;
  background-color: #F99051;
}