.auth-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.auth-block .auth-link:hover a {
  color: #FF7520;
}
.auth-block .auth-link:hover svg {
  fill: #FF7520;
}
.auth-block .auth-link:focus a {
  color: #FF7520;
}
.auth-block .auth-link:focus svg {
  fill: #FF7520;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 8px;
}
a:hover {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #FF7520;
  text-decoration-thickness: 2px;
}
a:focus {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #FF7520;
  text-decoration-thickness: 2px;
}

.display-none {
  display: none !important;
}

.header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  color: #fff;
  background-color: #00264B;
  font-size: 1rem;
  filter: drop-shadow(0 6px 10px rgba(35, 35, 35, 0.9));
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 0.8em;
}
.header__list-1 {
  display: flex;
  gap: 3.5em;
}
.header__list-2 {
  display: flex;
  gap: 1.5em;
}
.header__list-2 .svg-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__list-2 svg {
  cursor: pointer;
}
.header__list-2 svg:hover {
  fill: #FF7520;
  stroke: #FF7520;
}
.header__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__link {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.2;
}
.sidebar {
  position: fixed;
  z-index: 999;
  top: 62px;
  width: 100%;
  max-height: calc(100vh - 98px);
  overflow-y: auto;
  -ms-overflow-y: auto;
  color: #fff;
  background-color: #00264B;
  font-size: 1rem;
  filter: drop-shadow(0 15px 10px rgba(35, 35, 35, 0.9));
  border-radius: 0 0 8px 8px;
}
.sidebar__nav {
  padding: 0 2em 2em 2em;
}
.sidebar__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}
.sidebar__item {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.sidebar__link {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
}

.sidebar.show {
  animation: slideIn 1.5s ease forwards;
}

.sidebar.show .sidebar__item {
  animation: slideIn 1.5s ease forwards;
}
.sidebar.show .sidebar__item:nth-child(1) {
  animation-delay: 0.1s;
}
.sidebar.show .sidebar__item:nth-child(2) {
  animation-delay: 0.2s;
}
.sidebar.show .sidebar__item:nth-child(3) {
  animation-delay: 0.3s;
}
.sidebar.show .sidebar__item:nth-child(4) {
  animation-delay: 0.4s;
}
.sidebar.show .sidebar__item:nth-child(5) {
  animation-delay: 0.5s;
}
.sidebar.show .sidebar__item:nth-child(n+6) {
  animation-delay: 0.6s;
}

.sidebar.hide .sidebar__item {
  animation: slideOut 1.5s ease forwards;
}
.sidebar.hide .sidebar__item:nth-child(1) {
  animation-delay: 0.5s;
}
.sidebar.hide .sidebar__item:nth-child(2) {
  animation-delay: 0.4s;
}
.sidebar.hide .sidebar__item:nth-child(3) {
  animation-delay: 0.3s;
}
.sidebar.hide .sidebar__item:nth-child(4) {
  animation-delay: 0.2s;
}
.sidebar.hide .sidebar__item:nth-child(5) {
  animation-delay: 0.1s;
}
.sidebar.hide .sidebar__item:nth-child(n+6) {
  animation-delay: 0s;
}

.sidebar.hide {
  animation: slideOut 2s ease forwards;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@media screen and (min-width: 1540px) {
  .container {
    max-width: 1440px;
  }
}
@media screen and (max-width: 991px) {
  html {
    font-size: 12px;
  }
  .header__nav {
    justify-content: end;
    padding-block: 0.5em;
  }
}

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