.header ul,
.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header a[class],
.sidebar a[class] {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  text-underline-offset: 6px;
}
.header a[class] svg,
.sidebar a[class] svg {
  fill: #144867;
  transition: all 0.6s ease;
}
.header a[class]:hover,
.sidebar a[class]:hover {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #FF8500;
  text-decoration-thickness: 2px;
}
.header a[class]:hover svg,
.sidebar a[class]:hover svg {
  fill: #FF8500;
}
.header a[class]:focus,
.sidebar a[class]:focus {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #FF8500;
  text-decoration-thickness: 2px;
}
.header a[class]:focus svg,
.sidebar a[class]:focus svg {
  fill: #FF8500;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  color: #144867;
  font-size: 1rem;
  margin-top: 25px;
}
.header a.btn-about {
  border: 1px solid #FF8500;
  background: #FF8500;
}
.header a.btn-about:hover {
  background-color: rgb(229.5, 119.7, 0);
  border: 1px solid rgb(229.5, 119.7, 0);
  text-decoration: none !important;
}
.header a.btn-about:focus {
  background-color: rgb(229.5, 119.7, 0);
  border: 1px solid rgb(229.5, 119.7, 0);
  text-decoration: none !important;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 1em;
  background-color: #D4E4F1;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2509803922));
  border-radius: 6px;
}
.header__list-1 {
  display: flex;
  gap: 3em;
}
.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;
  transition: all 0.6s ease;
}
.header__list-2 svg:hover {
  fill: #FF8500;
  stroke: #FF8500;
}
.header__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__link {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.2;
}
.sidebar {
  position: absolute;
  z-index: -1;
  top: 59px;
  width: 100%;
  max-height: calc(100vh - 59px - 25px);
  overflow-y: auto;
  -ms-overflow-y: auto;
  color: #144867;
  font-size: 1rem;
}
.sidebar__nav {
  padding: 1.5em 2em 2em 2em;
  background-color: #D4E4F1;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2509803922));
  border-radius: 0 0 6px 6px;
  margin-bottom: 50px;
}
.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: 500;
  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: 1399px) {
  .header__link {
    font-size: 1em;
  }
}
@media screen and (max-width: 1199px) {
  .header {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 991px) {
  .sidebar {
    font-size: 10px;
  }
  .header {
    font-size: 12px;
  }
  .header__nav {
    padding-block: 0.4em;
  }
}
@media screen and (max-width: 575px) {
  .header__list-2 {
    gap: 0.5em;
  }
}

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