@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Arsenal:ital,wght@0,400;0,700;1,400;1,700&family=Geologica:wght@100..900&display=swap");
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}
.header__logo {
  width: 100%;
  max-width: 143px;
}
.header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  background: #F2F2F2;
  padding: 10px 16px;
  gap: 20px;
}
.header__menu_item {
  list-style: none;
}
.header__menu_item a {
  color: rgba(66, 66, 66, 0.8);
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  cursor: pointer;
  text-decoration: none;
}
.header__end {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}
.header__end .subscribe {
  border-radius: 30px;
  padding: 10px 16px;
  border: 1px solid #3D3D55;
  background: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.02);
  color: #3D3D55;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  cursor: pointer;
  text-decoration: none;
}
.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  border: none;
  background: transparent;
}
.header__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #3D3D55;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__burger span:nth-child(1) {
  top: 0;
}
.header__burger span:nth-child(2) {
  top: 10px;
}
.header__burger span:nth-child(3) {
  top: 20px;
}
.header__burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.lang {
  padding: 10px;
  border-radius: 30px;
  background: #92CDF1;
  box-shadow: 0px 4px 8px 0px rgba(188, 188, 188, 0.04);
  color: #FFF;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.sidebar {
  position: fixed;
  inset: 0;
  background: #E5F7FF;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 999;
  overflow-y: auto;
}
.sidebar.open {
  transform: translateX(0);
}
.sidebar__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 24px 48px;
}
.sidebar__inner_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar__inner_head .sidebar__close {
  width: 40px;
  height: 40px;
}
.sidebar__logo {
  max-width: 143px;
}
.sidebar__nav {
  margin: 48px 0 32px;
  display: flex;
  flex-direction: column;
}
.sidebar__item {
  list-style: none;
}
.sidebar__item a {
  font: 18px Geologica, sans-serif;
  padding-bottom: 10px;
  padding-top: 10px;
  color: #3D3D55;
  cursor: pointer;
  border-bottom: 1px solid #ECB920;
  display: block;
  text-decoration: none;
}
.sidebar__item:last-child {
  border-bottom: none;
}
.sidebar__cta {
  margin-bottom: 32px;
}
.sidebar__contacts {
  font: 14px/1.4 Geologica, sans-serif;
  color: #3D3D55;
  margin-bottom: 24px;
}
.sidebar__contacts a {
  color: inherit;
  text-decoration: none;
}
.sidebar__contacts_yellow {
  color: #ECB920;
  font-family: Arsenal;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.sidebar__social {
  display: flex;
  gap: 16px;
  margin-bottom: auto;
}
.sidebar__social a > img {
  width: 40px;
  height: 40px;
}
.sidebar__copy {
  font: 12px Geologica, sans-serif;
  color: #3D3D55;
  opacity: 0.6;
}
.sidebar__madeBy {
  font-family: Geologica;
  color: #3D3D55;
}
.sidebar__madeBy a {
  color: #3D3D55;
}

@media screen and (max-width: 980px) {
  .header {
    /* прячем только меню и (если нужно) языковую метку */
    /* кнопка остаётся видимой */
  }
  .header__menu {
    display: none;
  }
  .header__end .subscribe {
    display: inline-flex; /* чтобы сохранить flex‑поведение */
    align-items: center;
  }
  .header__burger {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 20px 0 !important;
  }
  .header__end .subscribe {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .header__end .lang {
    display: none;
  }
}/*# sourceMappingURL=header.css.map */