@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: normal;
  background: none;
  border: none;
  outline: none;
}

@font-face {
  font-family: "Inter";
  src: url("../../gyorsnyeremeny-Inter-variablefont_opsz,wght.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  font-family: "Inter";
  background-color: #0c2529;
}

:root {
  --gyorsnyeremeny-bg: #0e2629;
  --gyorsnyeremeny-white: #fff;
  --gyorsnyeremeny-black: #000;
  --gyorsnyeremeny-green: #006533;
  --gyorsnyeremeny-radius: 40px;
  --gyorsnyeremeny-gap: 28px;
  --gyorsnyeremeny-font: 15px;
}

.header-gyorsnyeremeny {
  background: var(--gyorsnyeremeny-bg);
  padding: 10px 0;
}

.header__in-gyorsnyeremeny {
  display: flex;
  justify-content: center;
}

.nav__list-gyorsnyeremeny {
  background: var(--gyorsnyeremeny-white);
  border-radius: var(--gyorsnyeremeny-radius);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: var(--gyorsnyeremeny-gap);
  list-style: none;
  margin: 0;
}

.nav__link-gyorsnyeremeny {
  font-size: var(--gyorsnyeremeny-font);
  font-weight: 500;
  color: var(--gyorsnyeremeny-black);
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav__link-gyorsnyeremeny:hover {
  background: #f4f4f4;
}

.nav__link-gyorsnyeremeny.is-active-gyorsnyeremeny {
  background: var(--gyorsnyeremeny-green);
  color: var(--gyorsnyeremeny-white);
  font-weight: 600;
}

.nav__lang-gyorsnyeremeny {
  position: relative;
}

.nav__langBtn-gyorsnyeremeny {
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--gyorsnyeremeny-black);
  border-radius: 20px;
  padding: 6px 14px;
  background: var(--gyorsnyeremeny-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__langList-gyorsnyeremeny {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: var(--gyorsnyeremeny-white);
  border: 1px solid #ccc;
  border-radius: 10px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  min-width: 100%;
  z-index: 50;
}

.nav__langList-gyorsnyeremeny li {
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
}

.nav__langList-gyorsnyeremeny li:hover {
  background: #f2f2f2;
}

/* адаптив */
@media (max-width: 768px) {
  .nav__list-gyorsnyeremeny {
    gap: 16px;
    padding: 8px 14px;
  }
}
@media (max-width: 480px) {
  .nav__list-gyorsnyeremeny {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .nav__link-gyorsnyeremeny {
    font-size: 14px;
    padding: 6px 10px;
  }
  .nav__langBtn-gyorsnyeremeny {
    font-size: 13px;
    padding: 6px 10px;
  }
}
:root {
  --hero-bg-gyorsnyeremeny: #0e2629;
  --hero-radius-gyorsnyeremeny: 18px;
  --hero-text-color-gyorsnyeremeny: #fff;
}

.hero-gyorsnyeremeny {
  background: var(--hero-bg-gyorsnyeremeny);
  padding: 80px 20px;
}

.hero__in-gyorsnyeremeny {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.hero__card-gyorsnyeremeny {
  position: relative;
  border-radius: var(--hero-radius-gyorsnyeremeny);
  padding: 36px 32px;
  color: var(--hero-text-color-gyorsnyeremeny);
  max-width: 540px;
  background: linear-gradient(
      135deg,
      rgba(0, 117, 73, 0.88) 0%,
      rgba(1, 116, 73, 0.88) 100%
    ),
    url("/assets/img/hero-bar.webp") center/cover no-repeat;
}

.hero__title-gyorsnyeremeny {
  font-size: 64px;
  font-weight: 800;
  margin: 0 0 14px;
}

.hero__subtitle-gyorsnyeremeny {
  font-size: 20px;
  margin: 0 0 20px;
  font-weight: 600;
}

.hero__text-gyorsnyeremeny {
  font-size: 17px;
  line-height: 1.7;
}

.hero__text-gyorsnyeremeny strong {
  font-weight: 700;
}

.hero__image-gyorsnyeremeny img {
  max-width: 500px;
  height: auto;
  display: block;
}

@media (max-width: 670px) {
  .hero__image-gyorsnyeremeny img {
    max-width: 100%;
  }
}
@media (max-width: 1078px) {
  .hero__in-gyorsnyeremeny {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* адаптив */
@media (max-width: 1024px) {
  .hero__in-gyorsnyeremeny {
    gap: 40px;
  }
  .hero__title-gyorsnyeremeny {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .hero__in-gyorsnyeremeny {
    flex-direction: column;
    text-align: center;
  }
  .hero__card-gyorsnyeremeny {
    max-width: 100%;
  }
  .hero__image-gyorsnyeremeny img {
    margin: 0 auto;
  }

  .nav__burger-gyorsnyeremeny.active_menu .bar:first-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 1px;
    -ms-transform-origin: 1px;
    transform-origin: 1px
  }

  .nav__burger-gyorsnyeremeny.active_menu .bar:nth-child(2) {
    opacity: 0
  }

  .nav__burger-gyorsnyeremeny.active_menu .bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 1px;
    -ms-transform-origin: 1px;
    transform-origin: 1px
  }


}
:root {
  --live-bg-gyorsnyeremeny: #0e2629;
  --live-text-color-gyorsnyeremeny: #e6e6e6;
}

.live-gyorsnyeremeny {
  background: var(--live-bg-gyorsnyeremeny);
  padding: 80px 20px;
}

.live__in-gyorsnyeremeny {
  max-width: 1400px;
  margin: 0 auto;
}

.live__title-gyorsnyeremeny {
  font-size: 32px;
  font-weight: 700;
  color: var(--live-text-color-gyorsnyeremeny);
  margin: 0 0 20px;
}

.live__text-gyorsnyeremeny {
  font-size: 16px;
  line-height: 1.7;
  color: var(--live-text-color-gyorsnyeremeny);
  margin: 0;
  max-width: 1000px;
}

/* адаптив */
@media (max-width: 768px) {
  .live__title-gyorsnyeremeny {
    font-size: 26px;
  }
  .live__text-gyorsnyeremeny {
    font-size: 15px;
  }
}
:root {
  --menu-bg-gyorsnyeremeny: #0e2629;
  --menu-text-color-gyorsnyeremeny: #e6e6e6;
  --menu-radius-gyorsnyeremeny: 18px;
}

.menu-gyorsnyeremeny {
  background: var(--menu-bg-gyorsnyeremeny);
  padding: 80px 20px;
}

.menu__in-gyorsnyeremeny {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.menu__content-gyorsnyeremeny {
  flex: 1 1 50%;
  color: var(--menu-text-color-gyorsnyeremeny);
}

.menu__title-gyorsnyeremeny {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
}

.menu__text-gyorsnyeremeny {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

.menu__image-gyorsnyeremeny {
  display: flex;
  justify-content: center;
}

.menu__image-gyorsnyeremeny img {
  width: 100%;
  width: 560px;
  border-radius: var(--menu-radius-gyorsnyeremeny);
  display: block;
}

/* адаптив */
@media (max-width: 900px) {
  .menu__in-gyorsnyeremeny {
    flex-direction: column;
    text-align: center;
  }
  .menu__text-gyorsnyeremeny {
    max-width: 100%;
  }
  .menu__image-gyorsnyeremeny img {
    max-width: 100%;
  }
}
:root {
  --events-bg-gyorsnyeremeny: #0e2629;
  --events-text-color-gyorsnyeremeny: #e6e6e6;
  --events-green-gyorsnyeremeny: #007549;
  --events-green-dark-gyorsnyeremeny: #017449;
}

.events-gyorsnyeremeny {
  background: var(--events-bg-gyorsnyeremeny);
  padding: 80px 20px;
}

.events__in-gyorsnyeremeny {
  max-width: 1400px;
  margin: 0 auto;
  color: var(--events-text-color-gyorsnyeremeny);
}

.events__title-gyorsnyeremeny {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
}

.events__intro-gyorsnyeremeny {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.events__tags-gyorsnyeremeny {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.events__tag-gyorsnyeremeny {
  background: linear-gradient(
    135deg,
    var(--events-green-gyorsnyeremeny),
    var(--events-green-dark-gyorsnyeremeny)
  );
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.events__text-gyorsnyeremeny {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.events__text-gyorsnyeremeny strong {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 700;
}

/* адаптив */
@media (max-width: 768px) {
  .events__title-gyorsnyeremeny {
    font-size: 26px;
  }
  .events__tag-gyorsnyeremeny {
    font-size: 14px;
    padding: 6px 14px;
  }
}
:root {
  --about-text-color-gyorsnyeremeny: #e6e6e6;
  --about-radius-gyorsnyeremeny: 18px;
}

.about-gyorsnyeremeny {
  position: relative;
  background: url("/assets/img/about-bg.webp") center/cover no-repeat;
}

.about__overlay-gyorsnyeremeny {
  background: rgba(14, 38, 41, 0.92); /* затемняющий слой */
  padding: 80px 20px;
}

.about__in-gyorsnyeremeny {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about__image-gyorsnyeremeny {
  flex: 1 1 50%;
}

.about__image-gyorsnyeremeny img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--about-radius-gyorsnyeremeny);
  display: block;
}

.about__content-gyorsnyeremeny {
  flex: 1 1 50%;
  color: var(--about-text-color-gyorsnyeremeny);
}

.about__title-gyorsnyeremeny {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
}

.about__text-gyorsnyeremeny {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
}

/* адаптив */
@media (max-width: 900px) {
  .about__in-gyorsnyeremeny {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .about__image-gyorsnyeremeny img {
    margin: 0 auto;
  }
  .about__title-gyorsnyeremeny {
    font-size: 26px;
  }
  .about__text-gyorsnyeremeny {
    font-size: 15px;
  }
}
:root {
  --legal-bg-gyorsnyeremeny: #fff;
  --legal-title-color-gyorsnyeremeny: #007549;
  --legal-text-color-gyorsnyeremeny: #01523a;
}

.legal-gyorsnyeremeny {
  background: var(--legal-bg-gyorsnyeremeny);
  padding: 80px 20px;
}

.legal__in-gyorsnyeremeny {
  max-width: 1000px;
  margin: 0 auto;
}

.legal__title-gyorsnyeremeny {
  font-size: 30px;
  font-weight: 700;
  color: var(--legal-title-color-gyorsnyeremeny);
  margin: 0 0 24px;
}

.legal__text-gyorsnyeremeny {
  font-size: 16px;
  line-height: 1.7;
  color: var(--legal-text-color-gyorsnyeremeny);
  margin: 0 0 18px;
}

/* адаптив */
@media (max-width: 768px) {
  .legal__title-gyorsnyeremeny {
    font-size: 24px;
  }
  .legal__text-gyorsnyeremeny {
    font-size: 15px;
  }
}
:root {
  --footer-bg-gyorsnyeremeny: #0e2629;
  --footer-text-color-gyorsnyeremeny: #e6e6e6;
  --footer-link-color-gyorsnyeremeny: #fff;
}

.footer-gyorsnyeremeny {
  background: var(--footer-bg-gyorsnyeremeny);
  padding: 60px 20px 30px;
  color: var(--footer-text-color-gyorsnyeremeny);
  font-size: 16px;
}

.footer__in-gyorsnyeremeny {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top-gyorsnyeremeny {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer__col-gyorsnyeremeny {
  flex: 1 1 30%;
  min-width: 260px;
}

.footer__info-gyorsnyeremeny {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
}

.footer__link-gyorsnyeremeny {
  color: var(--footer-link-color-gyorsnyeremeny);
  font-weight: 600;
  text-decoration: underline;
}

.footer__nav-gyorsnyeremeny {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer__navLink-gyorsnyeremeny {
  color: var(--footer-link-color-gyorsnyeremeny);
  font-size: 15px;
  text-decoration: none;
}

.footer__navLink-gyorsnyeremeny:hover {
  text-decoration: underline;
}

.footer__subtitle-gyorsnyeremeny {
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 16px;
}

.footer__contactLink-gyorsnyeremeny {
  color: var(--footer-link-color-gyorsnyeremeny);
  text-decoration: none;
}

.footer__contactLink-gyorsnyeremeny:hover {
  text-decoration: underline;
}

.footer__bottom-gyorsnyeremeny {
  display: flex;
  flex-direction: column; /* всегда колонкой */
  align-items: center;
  text-align: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 14px;
}

.footer__legal-gyorsnyeremeny {
  margin: 0;
  max-width: 800px;
  line-height: 1.6;
}

.footer__socials-gyorsnyeremeny {
  display: flex;
  gap: 20px;
}

.footer__icon-gyorsnyeremeny svg {
  width: 28px;
  height: 28px;
  color: var(--footer-link-color-gyorsnyeremeny);
  transition: opacity 0.2s;
}

.footer__icon-gyorsnyeremeny:hover svg {
  opacity: 0.7;
}

/* PRIVACY POLICY PAGE (DARK THEME) */
.privacy-gyorsnyeremeny {
  padding: 80px 20px;
  background: #0e2629; /* тот самый фон, как в секциях */
  color: #fff;
}

.privacy-gyorsnyeremeny .container-gyorsnyeremeny {
  max-width: 960px;
  margin: 0 auto;
}

.privacy__head-gyorsnyeremeny {
  text-align: center;
  margin-bottom: 60px;
}

.privacy__head-gyorsnyeremeny h1 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.privacy__intro-gyorsnyeremeny {
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
  color: #d4d4d4;
}

.privacy__block-gyorsnyeremeny {
  margin-bottom: 48px;
}

.privacy__block-gyorsnyeremeny h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #f2f2f2;
}

.privacy__block-gyorsnyeremeny p {
  font-size: 17px;
  line-height: 1.7;
  color: #cccccc;
}

/* MOBILE */
@media (max-width: 768px) {
  .privacy-gyorsnyeremeny {
    padding: 50px 16px;
  }
  .privacy__head-gyorsnyeremeny h1 {
    font-size: 28px;
  }
  .privacy__block-gyorsnyeremeny h2 {
    font-size: 22px;
  }
  .privacy__block-gyorsnyeremeny p {
    font-size: 16px;
  }
}
.cookies-gyorsnyeremeny {
  padding: 80px 20px;
  background: #0e2629;
  color: #fff;
}

.cookies-gyorsnyeremeny .container-gyorsnyeremeny {
  max-width: 960px;
  margin: 0 auto;
}

.cookies__head-gyorsnyeremeny {
  text-align: center;
  margin-bottom: 60px;
}

.cookies__head-gyorsnyeremeny h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cookies__intro-gyorsnyeremeny {
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
  color: #d4d4d4;
}

.cookies__block-gyorsnyeremeny {
  margin-bottom: 48px;
}

.cookies__block-gyorsnyeremeny h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #f2f2f2;
}

.cookies__block-gyorsnyeremeny p {
  font-size: 17px;
  line-height: 1.7;
  color: #cccccc;
}

/* Mobile */
@media (max-width: 768px) {
  .cookies-gyorsnyeremeny {
    padding: 50px 16px;
  }
  .cookies__head-gyorsnyeremeny h1 {
    font-size: 28px;
  }
  .cookies__block-gyorsnyeremeny h2 {
    font-size: 22px;
  }
  .cookies__block-gyorsnyeremeny p {
    font-size: 16px;
  }
}
/* Бургер */
.nav__burger-gyorsnyeremeny {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav__burger-gyorsnyeremeny span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

/* Адаптив */
@media (max-width: 768px) {
  .nav__burger-gyorsnyeremeny {
    display: flex;
    z-index: 1001;
  }
  .nav-gyorsnyeremeny {
    background: #111;
    width: 94%;
    transition: transform 0.3s ease;
  }
  .nav-gyorsnyeremeny.is-open-gyorsnyeremeny {
    transform: translateX(0);
  }
  .nav__list-gyorsnyeremeny {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .hero-gyorsnyeremeny{
    padding: 40px 20px;
  }

  .hero__card-gyorsnyeremeny{
    padding: 20px;
  }

  .hero__title-gyorsnyeremeny{
    text-align: left;
    font-size: 40px;
  }

  .hero__subtitle-gyorsnyeremeny{
    font-size: 15px;
    text-align: left;
    color: #F2F2F2;
  }

  .hero__text-gyorsnyeremeny{
    text-align: left;
    font-size: 15px;
    line-height: normal;
  }
}
/* базовое */
.header-gyorsnyeremeny {
  background: #0e2629;
  padding: 10px 0;
}

.header__in-gyorsnyeremeny {
  display: flex;
  justify-content: center;
}

.nav__list-gyorsnyeremeny {
  background: #fff;
  border-radius: 40px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
}

.nav__link-gyorsnyeremeny {
  font-size: 15px;
  font-weight: 500;
  color: #0e2629;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.nav__link-gyorsnyeremeny.is-active-gyorsnyeremeny {
  background: #006533;
  color: #fff;
  font-weight: 600;
}

.nav__lang-gyorsnyeremeny {
  position: relative;
}

.nav__langBtn-gyorsnyeremeny {
  font-size: 14px;
  border: 1px solid #0e2629;
  border-radius: 20px;
  padding: 6px 14px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__langList-gyorsnyeremeny {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  min-width: 100%;
  z-index: 50;
}

.nav__langList-gyorsnyeremeny li {
  padding: 6px 12px;
  cursor: pointer;
}

/* бургер */
.nav__burgerWrap-gyorsnyeremeny {
  display: none;
  margin-left: auto;
}

.nav__burger-gyorsnyeremeny {
  width: 28px;
  height: 22px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav__burger-gyorsnyeremeny span {
  height: 3px;
  background: #0e2629;
  border-radius: 2px;
  display: block;
}

/* мобильная «пилюля» как на референсе */
@media (max-width: 768px) {
  /* белая пилюля */
  .nav__list-gyorsnyeremeny {
    width: calc(
      100% - 32px
    ); /* отступы слева/справа, чтобы совпало как на скрине */
    border-radius: 40px;
    padding: 12px 18px;
    justify-content: flex-end;
    gap: 0;
  }
  /* оставить только бургер, остальное спрятать */
  .nav__list-gyorsnyeremeny > li:not(.nav__burgerWrap-gyorsnyeremeny) {
    display: none;
  }
  .nav__burgerWrap-gyorsnyeremeny {
    display: block;
  }

    .nav__list-gyorsnyeremeny > li:not(.nav__burgerWrap-gyorsnyeremeny).active {
        display: flex
    }
}
/* выпадающее меню под пилюлей */
.nav__dropdown-gyorsnyeremeny {
  display: none;
  position: absolute;
  left: 16px;
  right: 16px;
  top: 72px;
  background: #0f2a2d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px;
  z-index: 999;
}

.nav__dropLink-gyorsnyeremeny {
  display: block;
  padding: 12px 10px;
  color: #e6e6e6;
  text-decoration: none;
  font-size: 16px;
  border-radius: 10px;
}

.nav__dropLink-gyorsnyeremeny:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav__dropLang-gyorsnyeremeny {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.nav__dropLangBtn-gyorsnyeremeny {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #e6e6e6;
  cursor: pointer;
}

/* состояние открыт */
.header-gyorsnyeremeny.is-open-gyorsnyeremeny .nav__dropdown-gyorsnyeremeny {
  display: block;
}

/* бургер -> крестик */
.header-gyorsnyeremeny.is-open-gyorsnyeremeny
  .nav__burger-gyorsnyeremeny
  span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header-gyorsnyeremeny.is-open-gyorsnyeremeny
  .nav__burger-gyorsnyeremeny
  span:nth-child(2) {
  opacity: 0;
}

.header-gyorsnyeremeny.is-open-gyorsnyeremeny
  .nav__burger-gyorsnyeremeny
  span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav__burger-gyorsnyeremeny span {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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