#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  padding: 20px 1rem 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 400;
  transition: all 0.2s ease-in-out;
}
#header.active .container > a img:nth-of-type(1) {
  display: none;
}
#header.active .container > a img:nth-of-type(2) {
  display: block;
}
@media (max-width: 1280px) {
  #header {
    padding: 0;
  }
}
#header .container {
  width: 100%;
  height: 100px;
  padding: 0 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1720px;
  background: black;
}
@media (max-width: 1280px) {
  #header .container {
    height: 70px;
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  #header .container {
    height: auto;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
}
#header .container > a {
  width: auto;
  height: 40px;
  display: flex;
}
@media (max-width: 1280px) {
  #header .container > a {
    height: 32px;
  }
}
#header .container > a > img {
  width: auto;
  height: 100%;
  transition: all 0.2s ease-in-out;
}
#header .container > a > img:nth-of-type(2) {
  display: none;
}
#header .container .h-global-nav {
  flex: 0 1 auto;
  height: 70px;
}
@media (max-width: 1280px) {
  #header .container .h-global-nav {
    height: 100%;
  }
}
@media (max-width: 768px) {
  #header .container .h-global-nav {
    flex: unset;
    width: 100%;
    height: 40px;
  }
}
#header .container .h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  #header .container .h-global-nav .depth-1 {
    width: 100%;
  }
}
#header .container .h-global-nav .depth-1 > li {
  flex: 0 0 auto;
  height: 100%;
}
@media (max-width: 768px) {
  #header .container .h-global-nav .depth-1 > li {
    flex: 1 1 20%;
  }
}
#header .container .h-global-nav .depth-1 > li > a {
  width: 160px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: white;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  #header .container .h-global-nav .depth-1 > li > a {
    width: 120px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #header .container .h-global-nav .depth-1 > li > a {
    width: auto;
    font-size: 14px;
  }
}
#header .container .h-global-nav .depth-1 > li > a:hover {
  background: white;
  color: black;
}
#header .container .m-menu-open {
  display: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
#header .container .m-menu-open > svg {
  width: 100%;
  height: 100%;
  fill: white;
}

#footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: black;
}
#footer .top {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .top .b-global-nav {
  width: auto;
  height: 80px;
  max-width: 95%;
  display: flex;
  flex-direction: row;
}
@media (max-width: 1280px) {
  #footer .top .b-global-nav {
    height: 60px;
  }
}
@media (max-width: 768px) {
  #footer .top .b-global-nav {
    width: 100%;
  }
}
#footer .top .b-global-nav > a {
  flex: 0 0 auto;
  width: 160px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  #footer .top .b-global-nav > a {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  #footer .top .b-global-nav > a {
    width: auto;
    flex: 1 1 20%;
    font-size: 13px;
  }
}
#footer .top .underbar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#footer .top .underbar > span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #EDC542;
}
#footer .top .underbar > span.bar_1 {
  opacity: 1;
}
#footer .top .underbar > span.bar_2 {
  opacity: 0.6;
}
#footer .top .underbar > span.bar_3 {
  opacity: 0.3;
}
#footer .bottom {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1280px) {
  #footer .bottom {
    padding: 48px 0;
  }
}
@media (max-width: 768px) {
  #footer .bottom {
    padding: 32px 0;
  }
}
#footer .bottom .container {
  width: 95%;
  height: auto;
  max-width: 1720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1280px) {
  #footer .bottom .container {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  #footer .bottom .container {
    gap: 24px;
  }
}
#footer .bottom .container > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1280px) {
  #footer .bottom .container > a {
    gap: 1rem;
  }
}
#footer .bottom .container > a > img {
  width: auto;
  height: 60px;
}
@media (max-width: 1280px) {
  #footer .bottom .container > a > img {
    height: 48px;
  }
}
@media (max-width: 768px) {
  #footer .bottom .container > a > img {
    height: 32px;
  }
}
#footer .bottom .container > a > span {
  font-size: 28px;
  font-weight: 800;
  color: #EDC542;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  #footer .bottom .container > a > span {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #footer .bottom .container > a > span {
    font-size: 16px;
  }
}
#footer .bottom .container .f-info-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
}
@media (max-width: 1280px) {
  #footer .bottom .container .f-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  #footer .bottom .container .f-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
#footer .bottom .container .f-info-grid .cell {
  font-size: 1rem;
  font-weight: 300;
  color: #aaa;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .bottom .container .f-info-grid .cell {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #footer .bottom .container .f-info-grid .cell {
    text-align: center;
  }
}

.quickmenu {
  position: fixed;
  right: 10px;
  bottom: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 100;
  transform: translateX(80px);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  .quickmenu {
    transform: translateX(58px);
  }
}
.quickmenu.active {
  transform: translateX(0);
}
.quickmenu.active .open-toggle > svg {
  transform: scaleX(-1);
}
.quickmenu .open-toggle {
  width: 32px;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 5000rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .quickmenu .open-toggle {
    width: 24px;
    height: 52px;
  }
}
.quickmenu .open-toggle > svg {
  width: 100%;
  height: auto;
  fill: white;
  transition: all 0.2s ease-in-out;
}
.quickmenu .qm-nav {
  width: auto;
  height: auto;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1280px) {
  .quickmenu .qm-nav {
    gap: 4px;
  }
}
.quickmenu .qm-nav > a {
  position: relative;
  width: 70px;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 5000rem;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .quickmenu .qm-nav > a {
    width: 48px;
  }
}
.quickmenu .qm-nav > a > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quickmenu .qm-nav > a:nth-of-type(1) {
  background: #00d824;
}
.quickmenu .qm-nav > a:nth-of-type(1) > svg {
  width: 60%;
  height: auto;
  fill: white;
}
.quickmenu .qm-nav > a:nth-of-type(2) {
  background: #fbe300;
}
.quickmenu .qm-nav > a:nth-of-type(2) > img {
  width: 80%;
  height: 80%;
}
.quickmenu .qm-nav > a:nth-of-type(3) {
  background: #00c43a;
}
.quickmenu .qm-nav > a:nth-of-type(3) > img {
  width: 90%;
  height: 90%;
}/*# sourceMappingURL=common.css.map */