.logo__img {
  display: block;
  width: inherit;
}.menu-items {
  display: flex;
  gap: 2.4rem;
}
.menu-items._vertical {
  flex-direction: column;
}
.menu-items__item {
  cursor: pointer;
  user-select: none;
}
.menu-items__item a {
  color: inherit;
  transition: color 0.3s ease-in-out;
}
.menu-items__item:hover a {
  color: var(--base-blue);
}.mobile-menu {
  position: relative;
}
.mobile-menu__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 3rem;
  height: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}
.mobile-menu__burger--active {
  transform: translateX(calc(30rem - 100%));
}
.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: var(--z-index-overlay);
}
.mobile-menu__overlay--active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__panel {
  position: fixed;
  top: 0;
  right: -30rem;
  width: 30rem;
  height: 100vh;
  background-color: var(--white);
  transition: transform 0.3s ease;
  z-index: var(--z-index-overlay-control);
  padding: 2rem;
}
.mobile-menu__panel--open {
  transform: translateX(-30rem);
}
.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}
.mobile-menu__close:hover {
  color: var(--color-text-primary);
}
.mobile-menu__close-icon {
  display: block;
}
.mobile-menu__content {
  height: 100%;
  overflow-y: auto;
  padding-top: 3rem;
}
.mobile-menu__item {
  cursor: pointer;
  user-select: none;
  font-family: var(--font-family-primary);
  font-size: 1.8rem;
  color: var(--black-almost);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: var(--base-spacing);
}
.mobile-menu__item a {
  color: inherit;
  transition: color 0.3s ease-in-out;
}
.mobile-menu__item:hover a {
  color: var(--base-blue);
}.menu {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  color: black;
  font-weight: 600;
  line-height: 1.7rem;
  width: 100%;
}
.menu:not(._footer) {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-side-panel);
}
.menu._scrolled {
  background-color: var(--white);
}
.menu._footer .menu__content {
  position: static;
}
@media screen and (max-width: 450px) {
.menu._footer .menu__content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 2.4rem;
}
.menu._footer .menu__logo {
    margin-right: 0;
}
.menu._footer .menu__button {
    font-family: var(--font-family-primary);
    font-size: 1.4rem;
    color: var(--base-blue);
    font-weight: 500 !important;
    line-height: 2.1rem;
    max-width: 34.3rem;
    height: 5rem !important;
}
}
.menu__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 1rem 0;
}
@media screen and (min-width: 1px) and (max-width: 450px) {
.menu__content {
    padding: 1rem 1.6rem 3.2rem;
}
}
@media screen and (min-width: 451px) and (max-width: 1024px) {
.menu__content {
    padding: 1rem 2.35rem;
}
}
@media screen and (min-width: 1px) and (max-width: 450px) {
._scrolled:not(._footer) .menu__content {
    padding: 1rem 1.6rem;
}
}
.menu__logo {
  margin-right: 4rem;
}
@media screen and (max-width: 767px) {
.menu__logo {
    max-width: 10rem;
    width: 100%;
}
}
.menu__items {
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 1024px) {
.menu__items {
    display: none;
}
}
@media screen and (min-width: 1025px) {
.menu__sidebar {
    display: none;
}
}
.menu__button {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  color: var(--base-blue);
  font-weight: 500 !important;
  line-height: 2.1rem;
  min-width: 13rem !important;
  max-width: 20rem;
  width: 100%;
  transition: border-width 0.3s linear !important;
}
@media screen and (max-width: 1024px) {
.menu__button {
    height: 3.4rem !important;
    max-width: 13.7rem;
    font-size: 1.2rem;
    line-height: 1.8rem;
}
.menu__button:hover {
    max-width: 13.7rem;
}
}
.menu__demo-wr {
  display: flex;
  align-items: center;
  gap: var(--base-spacing);
}.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}
.layout__content {
  min-height: calc(100vh - 120rem);
}