/* [project]/src/components/CharterOfDuties/CharterOfDuties.module.css [app-client] (css) */
.CharterOfDuties-module__8n1FcG__loaderWrapper {
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 2rem 0;
  display: flex;
}

.CharterOfDuties-module__8n1FcG__charterSection {
  background: var(--color-surface);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(5, 18, 32, .05);
}

.CharterOfDuties-module__8n1FcG__title {
  color: var(--color-primary-700);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.CharterOfDuties-module__8n1FcG__introduction {
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.CharterOfDuties-module__8n1FcG__dutiesList {
  margin: 0;
  padding-left: 1.5rem;
  list-style-type: lower-alpha;
}

.CharterOfDuties-module__8n1FcG__dutyItem {
  color: var(--color-text-primary);
  margin-bottom: .8rem;
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .CharterOfDuties-module__8n1FcG__charterSection {
    padding: 3rem;
  }

  .CharterOfDuties-module__8n1FcG__title {
    font-size: 2.4rem;
  }

  .CharterOfDuties-module__8n1FcG__introduction {
    font-size: 1.25rem;
  }

  .CharterOfDuties-module__8n1FcG__dutyItem {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .CharterOfDuties-module__8n1FcG__charterSection {
    padding: 1.75rem;
  }

  .CharterOfDuties-module__8n1FcG__title {
    font-size: 1.8rem;
  }

  .CharterOfDuties-module__8n1FcG__introduction {
    font-size: 1rem;
  }
}

/* [project]/src/app/about/page.module.css [app-client] (css) */
.page-module__NfDiEG__pageWrapper {
  background-color: var(--color-bg);
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.page-module__NfDiEG__main {
  flex: 1;
}

.page-module__NfDiEG__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

/* [project]/src/components/Footer/Footer.module.css [app-client] (css) */
.Footer-module__Grjkva__container {
  background: linear-gradient(90deg, var(--color-primary-700), #1a2a4a);
  text-align: center;
  height: auto;
  padding: 1.6rem 2rem;
  overflow: hidden;
}

.Footer-module__Grjkva__container h1 {
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.Footer-module__Grjkva__container h2 {
  color: var(--orange);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
}

.Footer-module__Grjkva__linksContainer {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  display: flex;
}

.Footer-module__Grjkva__importantLink {
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 1rem;
  padding: .6rem 1.2rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform .3s, background-color .3s, box-shadow .5s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.Footer-module__Grjkva__importantLink:before {
  content: "";
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 30%, rgba(255, 255, 255, .2));
  width: 100%;
  height: 100%;
  transition: all .5s;
  position: absolute;
  top: -50%;
  left: -50%;
  transform: rotate(-45deg);
}

.Footer-module__Grjkva__importantLink:hover {
  background-color: rgba(255, 255, 255, .1);
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(255, 255, 255, .3);
}

.Footer-module__Grjkva__importantLink:hover:before {
  opacity: 1;
  transform: rotate(-45deg)translateY(100%);
}

.Footer-module__Grjkva__loader {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10vh;
  display: flex;
}

.Footer-module__Grjkva__newsContainer {
  border: 1px solid var(--foreground);
  background: var(--background);
  border-radius: 8px;
  max-height: 70vh;
  padding: 1rem;
  overflow-y: auto;
}

.Footer-module__Grjkva__newsItem {
  border-bottom: 1px solid var(--foreground);
  justify-content: space-between;
  align-items: center;
  padding: .75rem;
  display: flex;
}

.Footer-module__Grjkva__newsText {
  flex: 1;
  margin-right: 1rem;
  font-size: 1.4rem;
}

.Footer-module__Grjkva__controls {
  gap: .5rem;
  display: flex;
}

.Footer-module__Grjkva__newsForm {
  gap: 1rem;
  margin-top: 1.5rem;
  display: flex;
}

.Footer-module__Grjkva__newsForm h3 {
  text-align: center;
  color: var(--foreground);
  font-size: 1.2rem;
}

.Footer-module__Grjkva__input {
  flex: 1;
  padding: .5rem;
}

.Footer-module__Grjkva__controls button {
  border: rgba(0, 0, 0, 0);
  border-radius: 50%;
  padding: .2rem;
  cursor: pointer !important;
}

.Footer-module__Grjkva__newsButton {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: var(--background);
  cursor: pointer;
  border-radius: 1rem;
  align-items: center;
  width: auto;
  padding: .2rem .8rem;
  font-size: 1.2rem;
  display: flex;
}

.Footer-module__Grjkva__newsButton :hover {
  transform: scale(1.05);
}

.Footer-module__Grjkva__newsInput {
  background-color: var(--background);
  width: 100%;
  color: var(--foreground);
  border-radius: 1rem;
  width: 80%;
  padding: 1rem;
}

@media (max-width: 768px) {
  .Footer-module__Grjkva__container h1 {
    font-size: 1.6rem;
  }

  .Footer-module__Grjkva__importantLink {
    padding: .5rem 1rem;
    font-size: 1rem;
  }

  .Footer-module__Grjkva__container h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .Footer-module__Grjkva__linksContainer {
    gap: 1rem;
  }

  .Footer-module__Grjkva__importantLink {
    text-align: center;
    width: 100%;
  }
}

/* [project]/src/components/Banner/Banner.module.css [app-client] (css) */
.Banner-module__AkIBaq__container {
  background: linear-gradient(90deg, var(--color-primary-700), #1a2a4a);
  justify-content: space-between;
  align-items: center;
  min-height: 15vh;
  padding: 0 .5rem;
  display: flex;
}

.Banner-module__AkIBaq__content {
  flex-direction: column;
  gap: .1rem;
  display: flex;
}

.Banner-module__AkIBaq__content h1 {
  text-align: center;
  color: var(--white);
  font-size: 3rem;
}

.Banner-module__AkIBaq__content h2 {
  text-align: center;
  color: var(--white);
  font-size: 1.6rem;
}

.Banner-module__AkIBaq__content p {
  text-align: right;
  color: var(--white);
  font-size: 1.6rem;
}

.Banner-module__AkIBaq__imageLeft {
  cursor: pointer;
  height: auto;
  padding: .5rem;
}

.Banner-module__AkIBaq__imageRight {
  height: 95%;
}

@media screen and (max-width: 726px) {
  .Banner-module__AkIBaq__container {
    justify-content: space-between;
  }

  .Banner-module__AkIBaq__content h1 {
    font-size: 1.8rem;
  }

  .Banner-module__AkIBaq__content h2, .Banner-module__AkIBaq__content p {
    text-align: center;
    font-size: 1rem;
  }

  .Banner-module__AkIBaq__imageLeft {
    width: 15vw;
  }

  .Banner-module__AkIBaq__imageRight {
    width: 25vw;
    height: auto;
  }
}

/* [project]/src/components/Header/Header.module.css [app-client] (css) */
.Header-module__ldgnoG__container {
  background-color: var(--color-primary-700);
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 1rem;
  display: flex;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.Header-module__ldgnoG__hamburger {
  color: var(--color-text-on-primary);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  display: none;
}

.Header-module__ldgnoG__navigation {
  gap: 2rem;
  margin-left: 1rem;
  display: flex;
}

.Header-module__ldgnoG__navItem {
  align-items: center;
  display: flex;
}

.Header-module__ldgnoG__navLink, .Header-module__ldgnoG__navLinks {
  color: var(--color-text-on-primary);
  border-radius: 4px;
  align-items: center;
  padding: .4rem .6rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s, transform .2s;
  display: flex;
}

.Header-module__ldgnoG__navLink h2, .Header-module__ldgnoG__navLinks h2 {
  margin-left: .5rem;
  font-size: 1rem;
}

.Header-module__ldgnoG__navLink:hover, .Header-module__ldgnoG__navLinks:hover {
  color: var(--color-accent-500);
  transform: translateY(-1px);
}

.Header-module__ldgnoG__activeLink {
  position: relative;
  color: var(--color-accent-500) !important;
}

.Header-module__ldgnoG__activeLink:after {
  content: "";
  background-color: var(--color-accent-500);
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.Header-module__ldgnoG__loginLink {
  align-items: center;
  display: flex;
}

@media (max-width: 768px) {
  .Header-module__ldgnoG__hamburger {
    display: block;
  }

  .Header-module__ldgnoG__navigation {
    background-color: var(--color-primary-700);
    z-index: 1001;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
  }

  .Header-module__ldgnoG__hideMenu {
    display: none;
  }

  .Header-module__ldgnoG__showMenu {
    display: flex;
  }

  .Header-module__ldgnoG__loginLink {
    display: none;
  }
}

.Header-module__ldgnoG__navLink:focus, .Header-module__ldgnoG__navLinks:focus {
  outline: 2px solid var(--color-accent-500);
  outline-offset: 2px;
}

/* [project]/src/components/FixedTopLayout/FixedTopLayout.module.css [app-client] (css) */
.FixedTopLayout-module__ZRXM3a__fixedTopContainer {
  z-index: 1000;
  flex-direction: column;
  width: 100vw;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.FixedTopLayout-module__ZRXM3a__scrollContent {
  margin-top: calc(15vh + 50px);
}

/*# sourceMappingURL=src_b10dfac2._.css.map*/