.header-shell {
  background-color: #175375;
  position: sticky !important;
  top: 0;
}

nav {
  position: relative;
}
nav > ul {
  position: relative;
}
nav > ul > li {
  position: relative;
}
nav > ul > li > a {
  position: relative;
  color: #fff;
}
nav > ul > li span {
  position: relative;
  color: #fff;
}
nav > ul > li ul {
  position: relative;
  display: none;
  background-color: #2380b0;
}
nav > ul > li ul a {
  color: #fff;
}
nav > ul > li ul li {
  line-height: 1.5em;
}
nav > ul > li ul li > a {
  line-height: 1.8em;
  display: block;
  padding-right: 0.7em;
}
nav .nav-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  nav {
    min-height: 50px;
    background: #1dcb8b;
  }
  nav::before {
    position: relative;
    content: "Menu";
    left: 10px;
    top: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 1.4em;
    height: 100%;
  }
  nav > ul {
    display: none;
    padding: 0.2em 0.7em;
    margin-top: 1.5em;
    z-index: 1000;
  }
  nav > ul > li {
    position: relative;
    margin: 0.3em 0;
  }
  nav > ul > li > a {
    font-size: 1.2em;
  }
  nav > ul > li li {
    position: relative;
  }
  nav > ul > li ul {
    position: relative;
    padding-left: 0.8em;
    background: none;
  }
  nav > ul > li span {
    position: absolute;
    right: 0;
    display: block;
    top: 0;
    z-index: 1000;
  }
  nav > ul > li span::before {
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav .nav-btn {
    display: block;
    position: absolute;
    right: 10px;
    top: 2px;
    width: 34px;
    height: 44px;
    overflow: hidden;
    white-space: nowrap;
    color: transparent;
    z-index: 100;
  }
  nav .nav-btn i,
  nav .nav-btn i::before,
  nav .nav-btn i::after {
    position: absolute;
    display: inline-block;
    height: 3px;
    width: 24px;
    background: #ffffff;
  }
  nav .nav-btn i {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -2px;
    transition: background 0.2s;
  }
  nav .nav-btn i::after,
  nav .nav-btn i::before {
    content: "";
    right: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    transform-origin: 0% 50%;
    transition: transform 0.2s;
  }
  nav .nav-btn i::after {
    top: 6px;
  }
  nav .nav-btn i::before {
    top: -6px;
  }
  nav.visible .nav-btn i {
    /* hide line in the center */
    background: rgba(255, 255, 255, 0);
  }
  nav.visible .nav-btn i::after,
  nav.visible .nav-btn i::before {
    background: white;
  }
  nav.visible .nav-btn i::after {
    transform: translateX(4px) translateY(2px) rotate(-45deg);
  }
  nav.visible .nav-btn i::before {
    transform: translateX(4px) translateY(-3px) rotate(45deg);
  }
  nav.visible > ul {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  nav {
    margin-top: 0.5em;
  }
  nav > ul {
    display: flex;
    justify-content: flex-end;
  }
  nav > ul > li {
    margin: 0 1.5em;
  }
  nav > ul > li > a {
    font-size: 1.2em;
  }
  nav > ul > li.normal .full-screen > ul > li > ul ul {
    position: relative;
    display: block;
    left: 0;
    padding-top: 0;
    width: 100%;
    max-height: 160px;
    overflow-y: auto;
  }
  nav > ul > li.normal .full-screen > ul > li > ul ul::-webkit-scrollbar {
    width: 10px;
    height: 1px;
  }
  nav > ul > li.normal .full-screen > ul > li > ul ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #16c786;
  }
  nav > ul > li.normal .full-screen > ul > li > ul ul::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(21, 21, 21, 0.2);
    border-radius: 10px;
    background: #ededed;
  }
  nav > ul > li.normal .full-screen > ul > li > ul > li > a {
    border-bottom: 1px solid rgba(221, 221, 221, 0.2);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 1em;
  }
  nav > ul > li a {
    color: #fff;
    transition: all ease-in-out 0.4s;
  }
  nav > ul > li a:hover {
    color: #d8ad15 !important;
  }
  nav > ul > li span {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
  }
  nav > ul > li > span {
    right: -1.5em;
  }
  nav > ul > li::before {
    position: absolute;
    content: "";
    top: 70%;
    left: -20%;
    width: 160%;
    height: 25px;
  }
  nav > ul > li > ul {
    padding: 1em 1.5em;
  }
  nav > ul > li > ul > li {
    white-space: nowrap;
  }
  nav > ul > li > ul > li:hover > ul {
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
  }
  nav > ul > li .full-screen {
    position: fixed;
    top: 70px;
    left: 0;
    padding: 2em 3%;
    background-color: #3b97c5;
    display: none;
    width: 100vw;
    max-height: 90vh;
    overflow-y: auto;
  }
  nav > ul > li .full-screen > ul {
    display: block;
    background: none;
    width: 20%;
  }
  nav > ul > li .full-screen > ul > li {
    background-color: #2380b0;
    padding: 0.8em 1em;
    margin-bottom: 1em;
  }
  nav > ul > li .full-screen > ul > li ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 400%;
    grid-template-columns: repeat(auto-fill, 32%);
    justify-content: space-between;
    background: none;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 0.5em;
  }
  nav > ul > li .full-screen > ul > li ul li {
    position: relative;
  }
  nav > ul > li .full-screen > ul > li > span {
    display: none;
  }
  nav > ul > li .full-screen > ul > li .angle-down::before {
    position: absolute;
    content: "\e90e";
    font-family: "icomoon";
    right: 0.5em;
  }
  nav > ul > li:hover > ul {
    position: absolute;
    top: 140%;
    left: 0;
    display: block;
  }
  nav > ul > li:hover .full-screen {
    display: block;
  }
  nav > ul > li:hover .full-screen li.show {
    background-color: #175375;
  }
  nav > ul > li:hover .full-screen li.show::before {
    position: absolute;
    content: "";
    left: calc(100% + 0.5em);
    height: 100%;
    top: 0;
    width: 400%;
    background: #175375;
  }
  nav > ul > li:hover .full-screen li.show > ul {
    display: grid;
  }
  nav > ul > li:hover .full-screen li.show > ul > li {
    margin-bottom: 0.3em;
  }
}
@media screen and (min-width: 769px) {
  .header-shell nav > ul > li .full-screen {
    top: 70px;
  }
}

.GeneNumlist > ul {
  margin: 1em 0 2em 0;
  width: 100%;
  border-radius: 2px;
  --child-width: 24%;
}
.GeneNumlist > ul > li {
  position: relative;
  padding: 0.5em 2em;
  background: linear-gradient(to right, #175375, #165c83);
  color: #fff;
  margin-bottom: 1em;
  cursor: pointer;
}
.GeneNumlist > ul > li a {
  display: block;
  color: #fff !important;
  transition: all ease-in-out 0.4s;
}
.GeneNumlist > ul > li a:hover {
  color: #d8ad15 !important;
}
.GeneNumlist > ul > li::before {
  position: absolute;
  content: "\e91b";
  left: 0.8rem;
  color: #fff;
  font-family: icomoon;
}

@media screen and (min-width: 1151px) {
  .GeneNumlist > ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, var(--child-width));
    justify-content: space-between;
  }
}
*[anchor-point] {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .header-event {
    display: none;
  }
}
.header-event {
  position: relative;
  background: linear-gradient(to right, #4ea78f, #73b8e7, #1dcb8b);
  transition: all ease 0.4s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.header-event:hover {
  background: rgb(246 241 241);
}
.header-event .container {
  position: relative;
  display: flex;
  justify-content: center;
}
.header-event .container .close {
  position: absolute;
  right: 1em;
  top: 1em;
  cursor: pointer;
  color: #444;
}
.header-event .container .close:hover {
  color: #b01f24;
}
.header-event .container .content {
  position: relative;
  display: flex;
}
.header-event .container .content img {
  position: relative;
  -o-object-fit: contain;
  object-fit: contain;
}
.header-event .container .content .title {
  position: relative;
  margin: 0.2em 1em;
  color: #444;
  display: inline-block;
  margin-bottom: 0.5em;
}
.header-event .container .content .title span {
  font-weight: bold;
  color: #fff;
  background-color: #b01f24;
  padding: 0.2em 1em;
  border-radius: 4px;
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
  margin-bottom: 0.5em;
}
.header-event::after {
  content: "";
  display: inline-block;
  width: 360px;
  height: 200px;
  border-radius: 70px;
  background: rgba(255, 255, 255, 0.78);
  position: absolute;
  right: 26%;
  top: -70px;
  transform: rotate(-45deg);
  z-index: -2;
}
.footer-link.child {
  font-size: 0.9em;
}
.footer-link.child > li > a::before {
  position: relative;
  content: "\2722";
  margin-right: 0.5em;
}
.footer-link.child > li > a {
  display: inline-block !important;
}
.inline {
  display: inline-block;
}
.mr-1 {
  margin-right: 1em !important;
}
.mr-1\/2 {
  margin-right: 0.5em !important;
}
