@charset "UTF-8";
/* cyrillic-ext */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../font/Inter-Regular.ttf") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Inter-SemiBold";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../../font/Inter-SemiBold.ttf") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Inter-Bold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../font/Inter-Bold.ttf") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../font/Jost-Regular.ttf") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* cyrillic */
@font-face {
  font-family: "Jost-Bold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../font/Jost-Bold.ttf") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Jost-SemiBold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../font/Jost-SemiBold.ttf") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
.accordion {
  width: 100%;
  padding-bottom: 5rem;
}
@media (max-width: 767.98px) {
  .accordion {
    padding-bottom: 3rem;
  }
}

.accordion-collapse {
  display: flex;
  transition-duration: 0.35s;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
@media (max-width: 767.98px) {
  .accordion-collapse {
    padding: 0;
  }
}

.accordion-item {
  border-radius: 0.75rem;
  background: var(--Color-Neutral-white, #FFF);
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.08), 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
  border: none;
  margin-bottom: 1rem;
}
.accordion-item:first-of-type {
  border-radius: 0.75rem;
  background: var(--Color-Neutral-white, #FFF);
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.08), 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
}
.accordion-item .accordion-button {
  border-radius: 0.75rem;
  background: var(--Color-Neutral-white, #FFF);
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.08), 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
}
.accordion-item .accordion-header {
  color: var(--Color-Neutral-neutral800, #2A3341);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 1.5rem */
}

.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-radius: 0.75rem;
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-radius: 0.75rem;
}

.accordion-button:not(.collapsed) {
  color: var(--Color-Brand-brand500, #F05740);
  /* Text/Body R Bold */
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 1.5rem */
}

* {
  scroll-margin-top: 140px;
}

/*body {

  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;

  @include md {

    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }

}*/
.lang-menu {
  column-count: 5; /* Három oszlop */
  column-gap: 20px; /* Köz közöttük */
  list-style: none; /* eltávolítja a pontokat, ha akarod */
  padding: 0;
  margin: 0;
}

.lang-menu li {
  break-inside: avoid; /* Ne vágjon át egy li-t oszlopban */
  margin-bottom: 5px;
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: -420px;
  margin-top: var(--bs-dropdown-spacer);
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  transform: scale(1);
}
#bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url("../../images/piros2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  #bg:after {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url("../../images/piros-mobil.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
}

@media screen and (max-width: 350px) {
  html {
    width: 350px;
    overflow: auto;
  }
}
h1 {
  color: var(--Color-Neutral-neutral800, #2A3341);
  text-align: center;
  /* Headline Desktop/H1 */
  font-family: Jost-Bold, sans-serif;
  font-size: 4.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 4.8rem */
}
@media (max-width: 767.98px) {
  h1 {
    /* Headline Mobile/H1 */
    font-family: Jost-Bold, sans-serif;
    font-size: 3.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 3.6rem */
  }
}
h1 span {
  color: var(--Color-Brand-brand500, #F05740);
}

h2 {
  color: var(--Color-Neutral-neutral800, #2A3341);
  text-align: center;
  /* Headline Desktop/H2 */
  font-family: Jost-SemiBold, sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 767.98px) {
  h2 {
    color: var(--Color-Neutral-neutral800, #2A3341);
    text-align: center;
    /* Headline Mobile/H2 */
    font-family: Jost-SemiBold, sans-serif;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 2.7rem */
  }
}

h4 {
  color: var(--Color-Neutral-neutral800, #2A3341);
  /* Headline Desktop/H4 */
  font-family: Jost-SemiBold, sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 2.6rem */
}
@media (max-width: 767.98px) {
  h4 {
    color: var(--Color-Neutral-neutral800, #2A3341);
    /* Headline Mobile/H4 */
    font-family: Jost-SemiBold, sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 2.1rem */
  }
}

h5 {
  color: var(--Color-Neutral-neutral700, #3F4A59);
  text-align: center;
  /* Headline Desktop/H5 */
  font-family: Jost-SemiBold, sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.hero {
  display: flex;
  padding: 5rem 0;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(180deg, #FDD2CA 0%, rgba(255, 255, 255, 0) 100%);
}

section {
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767.98px) {
  section {
    padding: 0rem 1.25rem 3rem 1.25rem;
  }
}
section .box {
  display: flex;
  max-width: 71.25rem;
  width: 100%;
  padding: 5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}
@media (max-width: 767.98px) {
  section .box {
    display: flex;
    padding: 3rem 1.25rem;
    flex: 1 0 0;
  }
}
section .box ul li {
  color: var(--Color-Neutral-neutral700, #3F4A59);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.5rem */
}
section .box p {
  /* Text/Body R Normal */
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.5rem */
}
section .box img {
  border-radius: 1.5rem;
  border: 6px solid var(--Color-Brand-brand200, #F05740);
  width: 100%;
  margin-bottom: 2rem;
}

.none-list {
  list-style: none;
}

.leaflet-card-icon {
  background: url("../../images/icons/Ytexa-leaflet-icon(doodle).svg");
  width: 6rem;
  height: 6rem;
}

.patient-card-icon {
  background: url("../../images/icons/Ytexa-patient-card-icon(doodle).svg");
  width: 6rem;
  height: 6rem;
}

.instructions-for-use {
  background: url("../../images/icons/instructions-icon.svg");
  width: 4rem;
  height: 4rem;
}

.video-icon {
  background: url("../../images/icons/videos-icon.svg");
  width: 4rem;
  height: 4rem;
}

.arrow {
  background: url("../../images/icons/chevron-right.svg");
  width: 1.5rem;
  height: 1.5rem;
}

.download {
  background: url("../../images/icons/download-ytexa.svg");
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}

.high-contrast {
  background: url("../../images/icons/sun.svg");
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}

.minustext-icon {
  background: url("../../images/icons/text-.svg");
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}

.plustext-icon {
  background: url("../../images/icons/text+.svg");
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}

.phase {
  display: flex;
  width: 3rem;
  height: 3rem;
  padding: 0.5rem 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.75rem;
  background: var(--Color-Brand-brand200, #FDD2CA);
  color: var(--Color-Neutral-neutral800, #963122);
  /* Text/Body R Bold */
  font-family: Inter-Bold, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 1.5rem */
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .phase {
    margin-bottom: 1.25rem;
  }
}

.btn-dwnload {
  display: flex;
  min-height: 3.5rem;
  padding: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background: var(--Color-Brand-brand200, #FDD2CA);
}
.btn-dwnload a {
  color: var(--Color-Brand-brand800, #963122);
  font-family: Inter-SemiBold, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 1.5rem */
  text-decoration: none;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
}

.underline-orange {
  display: inline-grid;
}
.underline-orange:after {
  content: "";
  background-image: url("../../images/highlight-orange.svg?ver=101");
  height: 11px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

article {
  padding-top: 112px;
}

.Yaxwer {
  background-image: url("../../images/logo/Yaxwer_logo.svg");
  width: 8.44594rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: contain;
}

section .box img.no-style {
  border-radius: 0 !important;
  border: none !important;
  width: auto !important;
  margin-bottom: 0 !important;
}

.list-style-none {
  list-style: none;
}

.mobile-menu .dropdown-item.active {
  background-color: transparent;
}
.mobile-menu .dropdown-item.active::before {
  content: "✔"; /* Pipa szimbólum */
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px; /* A pipa mérete */
  color: black; /* A pipa színe */
}

body.menu-open {
  overflow: hidden;
}

#menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#side-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-x: hidden;
}

#side-menu.active {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.menu-level {
  list-style: none;
  padding: 10px;
  margin: 0;
}

.menu-level li {
  margin-bottom: 8px;
}

.menu-level li.has-sub > a::after {
  content: "›";
  float: right;
}

.menu-level[data-level] {
  position: absolute;
  top: 50px; /* header magasság */
  left: 100%;
  width: 100%;
  background: #fff;
  transition: left 0.3s ease;
}

.menu-level.active {
  left: 0;
}

.breadcrumb {
  display: flex;
  min-height: 3rem;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  border-top: 1px solid var(--Color-Neutral-neutral200, #E3E8EE);
  background: var(--Color-Neutral-neutral50, #F7F9FA);
  padding: 0 4rem;
  margin: 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  .breadcrumb {
    padding: 0 1rem;
  }
}
.breadcrumb p {
  margin: 0;
}
.breadcrumb p.green {
  color: var(--Color-Brand-brand600, #DA4429);
}

#navbarNav {
  height: 4.5rem;
  padding: 0 4rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.menu {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.logo {
  background-image: url("../../images/logo/junosum.svg");
  width: 136px;
  height: 32px;
  display: none;
}
@media (max-width: 991.98px) {
  .logo {
    display: none;
  }
}

.navbar {
  padding: 0;
}

.nav-item .language-selector {
  color: var(--Color-Neutral-neutral800, #2A3341);
  /* Text/Body R Bold */
  font-family: Inter-Bold, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 150%; /* 1.5rem */
  text-decoration: none;
}
.nav-item .nav-link {
  color: var(--Color-Neutral-neutral800, #2A3341);
  /* Text/Body R Normal */
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.5rem */
  padding: 0;
}

.mobile-menu {
  display: none;
}
@media (max-width: 991.98px) {
  .mobile-menu {
    width: 100%;
    display: flex;
    height: 4rem;
    padding: 0rem 0.5rem 0rem 1.25rem;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
  }
}

#languageOffcanvas {
  width: 100%;
}

.hamburger {
  display: block;
  float: right;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  position: relative;
  z-index: 10;
}
.hamburger span {
  margin: -2px 0 0;
  position: absolute;
  top: 50%;
  width: 24px;
  height: 3px;
  background-color: #F87F6C;
  display: none;
  transition-duration: 0s;
  transition-delay: 0.2s;
  display: block;
}
.hamburger span:before, .hamburger span:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 3px;
  background-color: #F87F6C;
  display: block;
}
.hamburger span:before {
  margin-top: -10px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0s;
}
.hamburger span:after {
  margin-top: 10px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0s;
}
.hamburger:hover {
  border: none;
}
.hamburger.active span {
  background-color: rgba(0, 0, 0, 0);
  transition-delay: 0.2s;
}
.hamburger.active span:before {
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.2s;
}
.hamburger.active span:after {
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.2s;
}

.main-menu-wrap {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 58px;
  background: #eef2f5;
  height: 0;
  overflow: auto;
  transition: height 0.6s cubic-bezier(0.5, 1, 0.22, 1);
  z-index: 100;
}
.main-menu-wrap .lang {
  background: var(--Color-Neutral-neutral200, #E3E8EE);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.25rem;
}

.offcanvas a {
  border-bottom: 1px solid var(--Color-Neutral-neutral300, #CFD6DF);
}

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
  background: var(--Color-Neutral-neutral100, #EEF2F5);
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height);
  width: 100%;
}

.offcanvas-header {
  display: flex;
  height: 3.5rem;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  background: var(--Color-Neutral-neutral200, #E3E8EE);
}

.main-menu {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.menu-active .main-menu {
  opacity: 1;
  transition: opacity 0.2s 0.2s ease-in-out;
}
.main-menu span {
  color: var(--Color-Neutral-neutral500, #707B8A);
  font-family: Inter-SemiBold, sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 1.6875rem */
  padding: 1rem 1.25rem;
}
.main-menu button {
  display: contents;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--Color-Neutral-neutral800, #2A3341);
  font-family: Inter-SemiBold, sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 1.6875rem */
}
.main-menu button:hover, .main-menu button:active {
  color: #004d67;
}
.main-menu a {
  display: block;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--Color-Neutral-neutral800, #2A3341);
  font-family: Inter-SemiBold, sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 1.6875rem */
}
.main-menu a:hover, .main-menu a:active {
  color: #004d67;
}

.dropdown-item.active {
  position: relative;
  color: #000000;
  text-decoration: none;
  background-color: white;
}

.dropdown-item.active::before {
  content: "✔"; /* Pipa szimbólum */
  position: absolute;
  left: 75px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px; /* A pipa mérete */
  color: green; /* A pipa színe */
}

.list-style-none {
  list-style: none;
  padding: 0;
}

.mobile-menu .dropdown-item.active {
  background-color: transparent;
}
.mobile-menu .dropdown-item.active::before {
  content: "✔"; /* Pipa szimbólum */
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px; /* A pipa mérete */
  color: black; /* A pipa színe */
}

footer {
  display: flex;
  padding: 2rem 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--Color-Neutral-neutral200, #E3E8EE);
}
footer p {
  color: var(--Color-Neutral-neutral800, #2A3341);
  /* Text/Body S Normal */
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.top-button {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.5rem 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  right: 5%;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
  border-radius: 0.75rem;
  background: var(--Color-Neutral-white, #FFF);
  /* medium */
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.08), 0px 4px 6px -2px rgba(0, 0, 0, 0.03);
}
.top-button.visible {
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 0.3s;
}

nav {
  background-color: white;
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.08), 0px 4px 6px -2px rgba(0, 0, 0, 0.03);
}

/*# sourceMappingURL=main.css.map */
