.landing-title,
.landing-para,
.nav-item-top,
.about-nav-item {
  visibility: hidden;
}

:root {
  --color-primary: #003366;
  --color-primary-light: #004488;
  --color-primary-lighter: #3377aa;
  --color-primary-bg: #001a33;
  --color-accent: #fcc735;
  --color-accent-light: #fdd866;
  --color-accent-lighter: #ffeeba;
  --color-bg-light: #f8f9fa;
  --color-bg-section: #e9ecef;
  --color-bg-warm: #fff8e6;
  --color-bg-warm-light: #fffdf5;
  --color-bg-cream: #fdf6e3;
  --color-bg-membership: #f5f7fa;
  --color-bg-history: #f0f4f8;
  --color-bg-gallery: #f8f9fa;
  --color-bg-gallery-hover: #e9ecef;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 3px 10px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 3px 20px rgba(0, 0, 0, 0.2);
  --border-thin: 1px;
  --border-medium: 2px;
  --border-thick: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

section {
  overflow: hidden;
}

#navigation-bar {
  overflow: visible;
}

ul {
  list-style-type: none;
  list-style-position: outside;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 2.441rem;
}

h2 {
  font-size: 1.953rem;
}

h3 {
  font-size: 1.563rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.8rem;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 1.953rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.4rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  h5 {
    font-size: 0.95rem;
  }
}
@media (max-width: 575.98px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.563rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1rem;
  }
  h5 {
    font-size: 0.875rem;
  }
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
}
a:hover {
  color: var(--color-primary-light);
}

b, strong {
  font-weight: bolder;
}

img, svg {
  vertical-align: middle;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

li {
  margin-bottom: 0;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  border-radius: 0;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

small {
  font-size: 0.875em;
}

blockquote {
  margin: 0 0 1rem;
}

.site-nav {
  position: fixed;
  z-index: 15;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease;
  text-transform: uppercase;
}
.site-nav.nav-dark {
  background: var(--color-primary) !important;
}

.site-nav--solid {
  position: relative;
  z-index: 1000;
  background: var(--color-primary);
}
.site-nav--solid .about-nav-item {
  color: white;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.site-nav--light .site-nav__item,
.site-nav--light .site-nav__dropdown-toggle {
  color: black;
  text-shadow: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.site-nav--light .site-nav__toggle .bi-list {
  color: black;
}
.site-nav--light.nav-dark .site-nav__item,
.site-nav--light.nav-dark .site-nav__dropdown-toggle {
  color: white !important;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}
.site-nav--light.nav-dark .site-nav__toggle .bi-list {
  color: white;
}

.site-nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.site-nav__brand {
  padding-left: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-nav__logo {
  height: 38px;
  width: 75px;
}

.site-nav__toggle {
  background: transparent;
  border: none;
  padding: 1.25rem 1rem;
  cursor: pointer;
  line-height: 1;
}
.site-nav__toggle:focus {
  outline: none;
  box-shadow: none;
}
.site-nav__toggle .bi-list {
  color: white;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.site-nav__collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  display: none;
}
.site-nav__collapse.show {
  display: flex;
}

.site-nav__links {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  padding: 0.25rem;
}

.site-nav__item {
  padding-right: 1rem;
  color: white;
  text-decoration: none;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 6px 13px rgba(0, 0, 0, 0.1), 0px 10px 23px rgba(0, 0, 0, 0.1);
  transition: color 0.2s ease;
}
.site-nav__item:hover {
  color: var(--color-accent);
}

.nav-dark-item.site-nav__item {
  color: white !important;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown-toggle {
  padding-right: 1rem;
  color: white;
  text-decoration: none;
  cursor: pointer;
}
.site-nav__dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.site-nav__dropdown-toggle {
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 6px 13px rgba(0, 0, 0, 0.1), 0px 10px 23px rgba(0, 0, 0, 0.1);
  transition: color 0.2s ease;
}
.site-nav__dropdown-toggle:hover {
  color: var(--color-accent);
}

.site-nav__dropdown-menu {
  display: none;
}
.site-nav__dropdown-menu.show {
  display: block;
}
.site-nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 12rem;
  padding: 0.5rem 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  list-style: none;
}

.site-nav__dropdown-item {
  display: block;
  padding: 0.35rem 1rem;
  color: #212529;
  text-decoration: none;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.9rem;
}
.site-nav__dropdown-item:hover {
  background-color: var(--color-bg-section);
  color: var(--color-primary);
}

.navbar-top {
  position: fixed;
  z-index: 15;
  background: transparent;
  transition: background 0.4s ease;
}

.nav-item-top {
  color: white;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 6px 13px rgba(0, 0, 0, 0.1), 0px 10px 23px rgba(0, 0, 0, 0.1);
}

.nav-dark {
  background: var(--color-primary) !important;
}

.navbar-half-top {
  position: fixed;
  z-index: 15;
  background: transparent;
  transition: background 0.4s ease;
}

.about-nav-item {
  color: black;
  text-shadow: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-dark-item {
  color: white !important;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.bi-list {
  color: black;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.nav-dark .bi-list {
  color: white;
}

@media (min-width: 992px) {
  .site-nav__collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .site-nav__links {
    flex-direction: row;
    align-items: center;
    margin-left: auto;
  }
  .site-nav__toggle {
    display: none;
  }
}
@media (max-width: 992px) {
  .navbar-top,
  .site-nav--transparent {
    position: fixed;
    z-index: 15;
    background-color: var(--color-primary);
  }
}
@media (max-width: 1200px) {
  .navbar-half-top,
  .site-nav--overlay,
  .site-nav--light {
    position: fixed;
    z-index: 15;
    background-color: var(--color-primary);
  }
  .about-nav-item {
    color: white !important;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  }
  .bi-list {
    color: white;
  }
  .site-nav--light .site-nav__item,
  .site-nav--light .site-nav__dropdown-toggle {
    color: white !important;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  }
  .site-nav--light .site-nav__toggle .bi-list {
    color: white;
  }
}
@media (max-width: 992px) {
  .site-nav__logo {
    display: none;
  }
}
.site-footer {
  background-color: var(--color-primary);
}

.site-footer__container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.site-footer__inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.site-footer__nav-link {
  display: block;
  padding: 0.5rem;
  color: white;
  text-decoration: none;
}
.site-footer__nav-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.site-footer__copyright {
  text-align: center;
  color: white;
  margin-bottom: 0;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 51, 102, 0.25);
}
.btn:disabled {
  opacity: 0.65;
  cursor: default;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.btn-primary {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  color: #fff;
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 51, 102, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}

.membership-btn {
  background-color: var(--color-primary);
  border-color: white;
  color: white;
  transition: all 0.3s ease-in;
}
.membership-btn:hover {
  background-color: white !important;
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: scale(1.03);
  transition: all 0.3s ease-in;
}

.form__row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.form__field {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .form__field--half {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .form__field--quarter {
    width: 25%;
  }
}

.form__label, .form-label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.form__input, .form-control,
.form__select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form__input:focus, .form-control:focus,
.form__select:focus {
  color: #212529;
  background-color: #fff;
  border-color: var(--color-primary-lighter);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(51, 119, 170, 0.25);
}
.form__input.is-invalid, .is-invalid.form-control,
.form__select.is-invalid {
  border-color: #dc3545;
}
.form__input.is-invalid:focus, .is-invalid.form-control:focus,
.form__select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

textarea.form__input, textarea.form-control {
  resize: none;
  height: auto;
}

.form__submit-row {
  display: grid;
  margin-top: 1rem;
}

.is-invalid {
  border-color: #dc3545 !important;
}
.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

.invalid-feedback,
.invalid-feedback.custom-error {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.form-container {
  max-width: 500px;
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-xl);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  .form-container {
    margin: 0 100px;
  }
}

.form__optional-label {
  font-weight: 400;
  color: #6c757d;
  font-size: 0.875em;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background-color: #000;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1055;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal.show {
  display: block;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
}
@media (min-width: 992px) {
  .modal-dialog.modal-lg {
    max-width: 800px;
  }
}
.modal-dialog.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
@media (min-width: 576px) {
  .modal-dialog.modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
}
.modal-dialog.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
@media (min-width: 576px) {
  .modal-dialog.modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
}
.modal-dialog.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: all;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em;
  color: #000;
  /* stylelint-disable */
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  /* stylelint-enable */
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
  cursor: pointer;
}
.btn-close:hover {
  opacity: 0.75;
}

.membership-form-section-title {
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

#membershipModal .modal-header,
#contactModal .modal-header,
#eduSignUpModal .modal-header {
  background-color: var(--color-primary);
  color: white;
}

#membershipModal .btn-close,
#contactModal .btn-close,
#eduSignUpModal .btn-close {
  filter: invert(1);
}

#membershipModal .modal-body,
#contactModal .modal-body,
#eduSignUpModal .modal-body {
  padding: var(--spacing-xl);
}

#membership-success .text-primary {
  color: var(--color-primary) !important;
}

.page-header {
  padding: 3rem 1.5rem 0;
  text-align: center;
}

.page-header__title {
  font-size: 3.5rem;
}

@media (max-width: 576px) {
  .page-header__title {
    font-size: 2rem;
  }
}
.container {
  --gutter-x: 1.5rem;
  width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-lg {
  width: 100%;
  padding-right: calc(var(--gutter-x, 1.5rem) * 0.5);
  padding-left: calc(var(--gutter-x, 1.5rem) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-lg {
    max-width: 1140px;
  }
}

.container-fluid {
  --gutter-x: 1.5rem;
  width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.row {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-0.5 * var(--gutter-x));
  margin-left: calc(-0.5 * var(--gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--gutter-y);
}

.g-0 {
  --gutter-x: 0;
  --gutter-y: 0;
}

.g-1 {
  --gutter-x: 0.25rem;
  --gutter-y: 0.25rem;
}

.g-2 {
  --gutter-x: 0.5rem;
  --gutter-y: 0.5rem;
}

.g-3 {
  --gutter-x: 1rem;
  --gutter-y: 1rem;
}

.g-4 {
  --gutter-x: 1.5rem;
  --gutter-y: 1.5rem;
}

.g-5 {
  --gutter-x: 3rem;
  --gutter-y: 3rem;
}

@media (min-width: 768px) {
  .g-md-1 {
    --gutter-x: 0.25rem;
    --gutter-y: 0.25rem;
  }
  .g-md-2 {
    --gutter-x: 0.5rem;
    --gutter-y: 0.5rem;
  }
  .g-md-3 {
    --gutter-x: 1rem;
    --gutter-y: 1rem;
  }
  .g-md-4 {
    --gutter-x: 1.5rem;
    --gutter-y: 1.5rem;
  }
  .g-md-5 {
    --gutter-x: 3rem;
    --gutter-y: 3rem;
  }
}
.col {
  flex: 1 0 0%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.landing-holder {
  position: relative;
  background: var(--color-primary-bg);
  overflow: hidden;
}
.landing-holder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.55) 0%, rgba(0, 30, 60, 0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

.landing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/photos/coastbg5.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.landing-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.landing-title {
  font-size: 3.5rem;
}

.landing-text {
  color: white;
  text-shadow: 1px 1px 10px black;
  z-index: 5;
  position: relative;
  left: 0;
}

#home-main-section {
  background-color: white;
}

.home-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  grid-template-areas: "join" "sidebar" "content";
}

.home-grid__sidebar {
  grid-area: sidebar;
}

.home-grid__join {
  grid-area: join;
}

.home-grid__content {
  grid-area: content;
}

@media (max-width: 992px) {
  .home-grid__sidebar,
  .home-grid__join {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .events-home,
  .article-home {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .home-grid {
    grid-template-columns: 5fr 8fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "sidebar join" "sidebar content";
    gap: 0;
    align-items: start;
  }
}
.join-container {
  background: var(--color-bg-light);
  border: var(--border-thick) solid var(--color-primary-light);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.edu-sign-up-section {
  min-height: 50vh;
}

.annual-container {
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-xl);
  background: var(--color-bg-warm);
  border: var(--border-thick) solid var(--color-accent);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.annual-container-sm {
  width: 75%;
}

.heading-annual {
  text-align: center !important;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 18px;
}

.annual-sub {
  text-align: start;
  font-size: 1.15rem;
  margin: 0;
  padding: 0;
}

.annual-sub-1 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 8px;
  padding: 0;
  color: var(--color-primary);
}

.annual-sub-2 {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 12px;
}

.annual-free {
  display: inline-block;
  margin-top: 1rem;
}

#newsEvents {
  background-color: var(--color-bg-warm-light);
}

#events-articles-section {
  background-color: var(--color-bg-section);
}

.peri-1 {
  padding-top: 4rem;
}

.advantages-inline {
  padding-top: 3rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  text-align: center;
}

.advantages-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages-item--full {
  grid-column: 1/-1;
  max-width: 250px;
  margin: 0 auto;
}

.advantages-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .home-grid__join,
  .home-grid__content {
    padding-left: 4rem;
  }
}
@media (max-width: 576px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .landing-title {
    font-size: 2.25rem;
    text-align: center;
  }
  .landing-para {
    display: none;
  }
  .annual-container-sm {
    width: 100%;
    margin-top: 5rem;
  }
}
#mission-section {
  background-color: var(--color-bg-section);
}

.mission-container {
  padding: var(--spacing-3xl) 0;
}

.mission-holder {
  background-color: white;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.mission-title {
  font-size: 2.25rem;
  border-bottom: var(--border-medium) solid var(--color-accent);
}

.exec-container {
  padding: var(--spacing-2xl) 0;
}

#exec-section {
  background-color: var(--color-bg-section);
}

.exec-title {
  font-size: 2.25rem;
  border-bottom: var(--border-medium) solid var(--color-accent);
}

#history-section {
  background-color: var(--color-bg-history);
}

.history-container {
  padding: var(--spacing-3xl) 0;
}

.history-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.history-title {
  font-size: 2.25rem;
  border-bottom: var(--border-medium) solid var(--color-primary-lighter);
}

@media (max-width: 576px) {
  .mission-holder {
    background-color: var(--color-bg-section);
    border-radius: 0px;
    box-shadow: none;
  }
  .mission-title {
    font-size: 1.5rem;
  }
  .history-title {
    font-size: 1.5rem;
  }
  .exec-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 992px) {
  .exec-title {
    text-align: center;
  }
}
.membership-landing-holder {
  position: relative;
  background: var(--color-primary-bg);
  overflow: hidden;
}
.membership-landing-holder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.55) 0%, rgba(0, 30, 60, 0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

.membership-landing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/photos/coastbg3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.membership-landing-container {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem 3rem;
}

.membership-landing-text {
  color: white;
  text-shadow: 1px 1px 10px black;
  z-index: 5;
  position: relative;
  left: 0;
}

#membership-section {
  background: var(--color-bg-membership);
}

.membership-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 0.75rem;
}
@media (min-width: 768px) {
  .membership-container {
    padding: 3rem 0.75rem;
  }
}

.membership__benefits-col {
  max-width: 900px;
  margin: 0 auto;
}

.membership__benefits-grid {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}
@media (min-width: 768px) {
  .membership__benefits-grid {
    padding-top: 1.5rem;
  }
}

.membership__benefits-col-half {
  width: 100%;
}
@media (min-width: 1200px) {
  .membership__benefits-col-half {
    width: 50%;
  }
}

.membership__benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .membership__benefit-item {
    margin-bottom: 0.35rem;
  }
}

.membership-title {
  text-align: center;
}

.fee-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.fee-text-2 {
  color: var(--color-primary-light);
  font-size: 1rem;
  font-weight: 700;
}

.pp-icon {
  font-size: 2rem;
  padding-right: 0.5rem;
  flex-shrink: 0;
}

.sign-up-container {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.sign-up__centered {
  width: 100%;
  max-width: 665px;
}

.sign-up {
  background: var(--color-bg-light);
  border: var(--border-thick) solid var(--color-primary-light);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .sign-up {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .pp-icon {
    font-size: 1rem;
  }
  .sign-up {
    background: var(--color-bg-light);
    border: 4px solid var(--color-primary-light);
    border-radius: 0;
    box-shadow: none;
  }
}
.contact-landing-section {
  min-height: 100vh !important;
  max-height: none !important;
}

.contact-landing__cols {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.contact-col {
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-landing__content {
  text-align: center;
  padding: 3rem;
  width: 100%;
}

.contact-landing__cta {
  margin-top: 1rem;
}

.contact-subtitle {
  font-size: 1.1rem;
  font-weight: bold;
}

.message-text {
  font-size: 1.5rem;
}

.days-landing-title {
  font-size: 3.5rem;
  border-bottom: 3px solid var(--color-accent);
}

#days-main-section {
  min-height: 100vh;
  background-color: var(--color-bg-cream);
}

.day-item {
  border-bottom: 1.5px solid var(--color-primary-lighter);
}

.days-list {
  list-style-type: square !important;
}

@media (max-width: 576px) {
  .days-landing-title {
    font-size: 2rem;
  }
}
.event-landing-section {
  max-height: 50vh;
  min-height: 50vh;
}

.event-landing__cols {
  display: flex;
  width: 100%;
  min-height: 50vh;
  max-height: 50vh;
}

.event-col {
  flex: 1;
  min-height: 50vh;
  max-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-landing__content {
  padding: 3rem;
  width: 100%;
}

.event-col-bg {
  flex: 1;
  overflow: hidden;
  padding: 0;
  position: relative;
  min-height: 50vh;
}

.event-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  max-width: 100%;
}

.events-main-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 0.75rem;
}
@media (min-width: 768px) {
  .events-main-container {
    padding: 3rem 0.75rem;
  }
}

.past-education {
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .past-education {
    padding-top: 1rem;
  }
}

.event-list {
  border-bottom: 1.5px solid var(--color-accent);
  padding-bottom: 25px;
  margin-bottom: 1.5rem;
}

#events-main-section {
  min-height: 100vh;
  background-color: var(--color-bg-light);
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.side-nav > * {
  border: var(--border-medium) solid var(--color-primary-lighter);
  border-radius: 10px;
  background-color: white;
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.side-title {
  border-bottom: 3px solid var(--color-primary-lighter);
}

.side-ul {
  list-style-type: circle !important;
}

.side-date {
  border-bottom: 1.5px solid var(--color-accent);
}

#upcoming-section {
  background-color: var(--color-bg-cream);
}

.upcoming-container {
  min-height: 100vh;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0.75rem;
}
@media (min-width: 768px) {
  .upcoming-container {
    padding: 3rem;
  }
}

.upcoming__meetings-box {
  display: flex;
  justify-content: center;
  padding-bottom: 3rem;
}
.upcoming__meetings-box .next-meeting {
  width: 100%;
  max-width: 760px;
}

.upcoming__events-list {
  max-width: 570px;
  margin: 0 auto;
}

.upcoming__events-header {
  padding: 1.5rem 0.25rem 0.5rem;
}
@media (min-width: 768px) {
  .upcoming__events-header {
    padding: 1.5rem 0.5rem 0.5rem;
  }
}

.upcoming__event-item {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .upcoming__event-item {
    padding: 0 1.5rem;
  }
}

.next-meeting {
  background-color: var(--color-bg-section);
  border: 3px solid var(--color-primary-lighter);
  border-radius: 15px;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .next-meeting {
    padding: 2.5rem;
  }
}

.date-text {
  padding: 0px !important;
}

.meeting-title {
  border-bottom: 2px solid var(--color-accent);
}

.meeting {
  font-size: 1.3rem;
}

.cancelled {
  font-size: 1.2rem;
}

.days-landing-title {
  font-size: 3.5rem;
  border-bottom: 3px solid var(--color-accent);
}

#days-main-section {
  min-height: 100vh;
  background-color: var(--color-bg-cream);
}

.day-item {
  border-bottom: 1.5px solid var(--color-primary-lighter);
  padding-top: 1.25rem;
}

.days-list {
  list-style-type: square !important;
}

@media (max-width: 576px) {
  .date-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
  }
  .meeting {
    font-size: 1.25rem;
  }
  .cancelled {
    font-size: 1rem;
  }
  .event-landing-title {
    font-size: 2rem;
  }
  .side-ul {
    list-style-type: none !important;
    padding-left: 15px !important;
    padding-right: 10px !important;
  }
  .side-nav {
    border: none;
    background-color: transparent;
  }
  .days-landing-title {
    font-size: 2rem;
  }
  .event-landing__content {
    padding: 1.5rem;
  }
}
@media (max-width: 1200px) {
  .event-landing-section {
    min-height: 45vh;
  }
  .event-landing__cols {
    min-height: 45vh;
    max-height: 45vh;
  }
  .event-col {
    min-height: 45vh;
    max-height: 45vh;
    flex: 0 0 100%;
  }
  .event-col-bg {
    display: none;
  }
}
#photo-section {
  background-color: var(--color-bg-light) !important;
}

.photos-spacer {
  height: 3rem;
  background-color: var(--color-bg-light);
}

.gallery {
  background: var(--color-bg-gallery);
  display: none;
}

.photo-container > .row:not(.gallery) {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.photo-container > .row:not(.gallery) > .col-lg-2 {
  display: none;
}
.photo-container > .row:not(.gallery) > .col-10,
.photo-container > .row:not(.gallery) > [class^=col-10] {
  order: 2;
  flex: 0 1 auto;
  width: auto;
}
.photo-container > .row:not(.gallery) > .col-2,
.photo-container > .row:not(.gallery) > [class^=col-2] {
  order: 1;
  flex: 0 0 auto;
  width: auto;
  margin-right: 0.25rem;
}

.photo-container {
  max-width: 100%;
  padding: 0.25rem 1rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .photo-container {
    padding: 0.25rem 2rem;
  }
}
@media (min-width: 992px) {
  .photo-container {
    padding: 0.25rem 4rem 0.25rem 8rem;
  }
}

.gallery-title {
  border-bottom: none;
  margin: 0;
}

.gallery img:hover {
  filter: grayscale(70%);
  transform: scale(1.01);
}

.bi-photo-holder {
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all 0.2s ease;
}
.bi-photo-holder:hover {
  color: var(--color-primary-light);
  border-color: var(--color-primary-lighter);
  background: var(--color-bg-section);
}

.bi-photo {
  font-size: 1.75rem;
  -webkit-text-stroke: 1px;
}

.bi-chevron-up {
  display: none;
}

.bursary-section {
  max-width: 850px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}

.article-container {
  padding: var(--spacing-xl);
  padding-top: 0.5rem;
}
@media (min-width: 992px) {
  .article-container {
    padding: 150px;
    padding-top: 1.5rem;
  }
}

.article__header {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .article__header {
    padding-bottom: 2rem;
  }
}

.about-author {
  background-color: var(--color-bg-light);
  padding: 0;
}
@media (min-width: 768px) {
  .about-author {
    padding: 1.5rem;
  }
}

.article__author-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 576px) {
  .article__author-layout {
    flex-direction: row;
    align-items: center;
  }
}

.article__author-image {
  display: flex;
  justify-content: center;
  width: 100%;
}
.article__author-image img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 576px) {
  .article__author-image {
    flex: 0 0 41.67%;
    max-width: 41.67%;
  }
}

.article__author-text {
  width: 100%;
}
@media (min-width: 576px) {
  .article__author-text {
    flex: 0 0 58.33%;
  }
}

.article-para {
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .article-img-left {
    padding: 20px;
    float: left;
  }
}
@media (max-width: 767px) {
  .article-img-left {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .article-img-right {
    padding: 20px;
    float: right;
  }
}
@media (max-width: 767px) {
  .article-img-right {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.icon-lg {
  font-size: 2rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-altdark {
  color: var(--color-primary) !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-success {
  color: #198754 !important;
}

.bg-white {
  background-color: #fff !important;
}

.fs-1 {
  font-size: 2.5rem !important;
}

.fs-2 {
  font-size: 2rem !important;
}

.fs-3 {
  font-size: 1.75rem !important;
}

.fs-4 {
  font-size: 1.5rem !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}

.display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: clamp(1.875rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
}

.display-5 {
  font-size: clamp(1.625rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}

.display-6 {
  font-size: clamp(1.375rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline {
  display: inline !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-auto {
  margin-right: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.position-relative {
  position: relative !important;
}

.position-static {
  position: static !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.w-100 {
  width: 100% !important;
}

.w-75 {
  width: 75% !important;
}

.w-50 {
  width: 50% !important;
}

.h-100 {
  height: 100% !important;
}

@media (min-width: 768px) {
  .h-md-250 {
    max-height: 250px;
  }
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
.nav-link:hover {
  color: var(--color-primary-light);
}

.me-3 {
  margin-right: 1rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

@media (min-width: 768px) {
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .fs-md-5 {
    font-size: 1.25rem !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
