:root {
  --navy: #001A54;
  --beige: #E6D1B5;
  --pastel: #335594;
  --GRAY: #8F8F8F;
}

body {
  /* max-width: 1920px; */
  margin: 0 auto !important;
  overflow: visible;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.inner {
  max-width: 1430px;
  margin: 0 auto;
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  z-index: 120;
  transform: translateZ(0);
  background: rgba(0, 26, 84, 0.4);
  backdrop-filter: blur(3px);
  backface-visibility: hidden;
  transition: all 0.2s;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 180px;
  height: 100%;
}
header nav .logo_box path {
  transition: all 0.2s;
}
header nav .menu_bar ul {
  height: 100%;
  display: flex;
}
header nav .menu_bar ul li {
  width: 100%;
  height: 100%;
}
header nav .menu_bar ul li a {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 40px;
  color: #fff;
  transition: all 0.2s;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: -0.54px;
}
header.dark_header {
  background-color: #fff;
}
header.dark_header nav .logo_box path {
  fill: var(--navy);
}
header.dark_header nav .menu_bar ul li a {
  color: #202020;
}

aside.quick-menu {
  position: fixed;
  bottom: 19px;
  right: 22px;
  display: flex;
  flex-direction: column;
  z-index: 110;
  gap: 12px;
  width: 72px;
}
aside.quick-menu ul {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding-top: 16px;
  border-radius: 10px;
  overflow: hidden;
}
aside.quick-menu ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
aside.quick-menu ul li a span {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.3px;
  text-align: center;
}
aside.quick-menu ul li:not(:first-child) {
  padding: 12px 9px 0;
}
aside.quick-menu ul li:not(:first-child) a {
  border-top: 1px solid #B7B7B7;
  padding-top: 12px;
}
aside.quick-menu ul li.top-btn {
  background-color: var(--pastel);
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  cursor: pointer;
}
aside.quick-menu .more-btn {
  border-radius: 100%;
  width: 72px;
  height: 72px;
  background-color: var(--pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
aside.quick-menu .more-btn p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.04px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
aside.quick-menu .more-btn p strong {
  font-weight: 700;
  color: #fff;
}
