/* [project]/src/components/ContactCard/ContactCard.module.css [app-client] (css) */
.ContactCard-module__oggJdG__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.ContactCard-module__oggJdG__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.ContactCard-module__oggJdG__imageWrapper {
  flex-shrink: 0;
}

.ContactCard-module__oggJdG__userImage {
  border: 2px solid var(--color-accent-500);
  object-fit: cover;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.ContactCard-module__oggJdG__content {
  flex: 1;
}

.ContactCard-module__oggJdG__name {
  color: var(--color-primary-700);
  margin: 0 0 .25rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.ContactCard-module__oggJdG__title {
  color: var(--color-text-primary);
  margin: 0 0 .25rem;
  font-size: 1rem;
  font-weight: 600;
}

.ContactCard-module__oggJdG__place, .ContactCard-module__oggJdG__tele, .ContactCard-module__oggJdG__email {
  color: var(--color-text-secondary);
  margin: .25rem 0;
  font-size: .95rem;
  line-height: 1.4;
}

.ContactCard-module__oggJdG__link {
  color: var(--color-primary-700);
  cursor: pointer;
  font-size: inherit;
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
}

.ContactCard-module__oggJdG__link:hover {
  color: var(--color-accent-500);
}

@media (max-width: 600px) {
  .ContactCard-module__oggJdG__card {
    text-align: center;
    flex-direction: column;
  }

  .ContactCard-module__oggJdG__imageWrapper {
    margin-bottom: .75rem;
  }
}

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

.page-module__OSLHOG__main {
  flex: 1;
}

.page-module__OSLHOG__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.page-module__OSLHOG__pageTitle {
  text-align: center;
  color: var(--color-primary-700);
  margin: 1.5rem 0 2.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.page-module__OSLHOG__section {
  margin-bottom: 3rem;
}

.page-module__OSLHOG__sectionTitle {
  color: var(--color-primary-700);
  border-bottom: 2px solid var(--color-accent-500);
  margin-bottom: 1.5rem;
  padding-bottom: .4rem;
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
}

.page-module__OSLHOG__grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  display: grid;
}

@media (max-width: 600px) {
  .page-module__OSLHOG__container {
    padding: 0 1.25rem;
  }

  .page-module__OSLHOG__grid {
    grid-template-columns: 1fr;
  }
}

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