/* [project]/src/components/News/News.module.css [app-client] (css) */
.News-module__3l9Lla__welcomeContainer {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent-500) transparent;
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  width: 90%;
  height: 100%;
  padding: 2rem;
  transition: all .3s ease-in-out;
  display: flex;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.News-module__3l9Lla__welcomeText {
  color: var(--color-primary-700);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.News-module__3l9Lla__infoText {
  color: var(--color-text-primary);
  text-align: start;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.News-module__3l9Lla__loader {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
  display: flex;
}

.News-module__3l9Lla__errorCard {
  border: 1px solid var(--color-border);
  text-align: center;
  background-color: #fef2f2;
  border-radius: 8px;
  padding: 1rem;
}

.News-module__3l9Lla__errorMessage {
  color: var(--color-error);
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.News-module__3l9Lla__noDataCard {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  text-align: center;
  border-radius: 8px;
  padding: 1.5rem;
}

.News-module__3l9Lla__noDataMessage {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
}

.News-module__3l9Lla__welcomeContainer::-webkit-scrollbar {
  width: 6px;
}

.News-module__3l9Lla__welcomeContainer::-webkit-scrollbar-thumb {
  background: var(--color-accent-500);
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .News-module__3l9Lla__welcomeContainer {
    width: 95%;
    height: 100%;
    padding: 1.5rem;
  }

  .News-module__3l9Lla__welcomeText {
    font-size: 1.75rem;
  }

  .News-module__3l9Lla__infoText {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .News-module__3l9Lla__welcomeContainer {
    gap: 1rem;
    width: 100%;
    height: auto;
    padding: 1.25rem;
  }

  .News-module__3l9Lla__welcomeText {
    margin-bottom: .75rem;
    font-size: 1.5rem;
  }

  .News-module__3l9Lla__infoText {
    font-size: .95rem;
    line-height: 1.5;
  }
}

/* [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/Carousel/Carousel.module.css [app-client] (css) */
.Carousel-module__kvvB0q__carousel {
  z-index: 0;
  cursor: grab;
  border-radius: 16px;
  width: 100%;
  max-width: 60vw;
  height: 100%;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.Carousel-module__kvvB0q__carouselInner {
  width: 100%;
  height: 100%;
  position: relative;
}

.Carousel-module__kvvB0q__carouselItem {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.Carousel-module__kvvB0q__carouselControls {
  z-index: 10;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.Carousel-module__kvvB0q__carouselControl {
  background: var(--color-primary-700);
  color: var(--color-accent-500);
  cursor: pointer;
  z-index: 10;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: 2.4rem;
  transition: background-color .3s ease-in-out;
  display: flex;
}

.Carousel-module__kvvB0q__carouselControl:hover {
  background: var(--color-primary-600);
}

@media (max-width: 768px) {
  .Carousel-module__kvvB0q__carousel {
    border-radius: 12px;
    max-width: 90vw;
    height: 40vh;
    margin-top: 20vh;
  }

  .Carousel-module__kvvB0q__carouselControl {
    padding: .8rem;
    font-size: 1.8rem;
  }
}

@media (max-width: 426px) {
  .Carousel-module__kvvB0q__carouselControl {
    padding: .6rem;
    font-size: 1.5rem;
  }
}

/* [project]/src/app/page.module.css [app-client] (css) */
.page-module___8aEwW__main {
  background: var(--theme);
}

.page-module___8aEwW__splashScreen {
  background: linear-gradient(135deg, var(--color-primary-700) 0%, #0a1e3a 50%, #1a2a4a 100%);
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.page-module___8aEwW__splashImageWrapper {
  justify-content: center;
  align-items: center;
  width: 25%;
  height: auto;
  padding: 25px;
  display: flex;
  position: relative;
}

.page-module___8aEwW__splashImageWrapper:before {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: -1rem;
  bottom: -1rem;
  left: -1rem;
  right: -1rem;
}

.page-module___8aEwW__splashImageWrapper img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  position: relative;
  box-shadow: 0 0 15px rgba(255, 255, 255, .4);
}

.page-module___8aEwW__splashContent {
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  display: flex;
}

.page-module___8aEwW__splashText {
  color: #f5f5f5;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 255, 255, .4);
  font-size: 3.4rem;
  font-weight: 700;
}

.page-module___8aEwW__heroSection {
  align-items: center;
  gap: 2rem;
  height: 57.5vh;
  margin-top: 20vh;
  padding: 1rem;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .page-module___8aEwW__splashImageWrapper {
    width: 40%;
    padding: 20px;
  }

  .page-module___8aEwW__splashText {
    font-size: 2.5rem;
  }

  .page-module___8aEwW__heroSection {
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
    margin-top: 5vh;
  }
}

@media only screen and (max-width: 426px) {
  .page-module___8aEwW__splashImageWrapper {
    width: 60%;
    padding: 1.5rem;
  }

  .page-module___8aEwW__splashText {
    font-size: 2rem;
  }

  .page-module___8aEwW__splashContent {
    gap: .75rem;
    margin-top: 2rem;
  }

  .page-module___8aEwW__heroSection {
    gap: 1rem;
    padding: .5rem;
  }
}

/* [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_0180bc12._.css.map*/