#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 500;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .container #h-logo {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
#header .container #h-logo > img {
  flex: 0 0 auto;
  width: 50px;
  height: auto;
}
@media (max-width: 1280px) {
  #header .container #h-logo > img {
    width: 36px;
  }
}
#header .container #h-logo > span {
  font-size: 36px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #header .container #h-logo > span {
    font-size: 20px;
    font-weight: 700;
  }
}
#header .container .h-right-wrap {
  flex: 0 1 auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header .container .h-right-wrap .h-global-nav {
  height: 100%;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .h-global-nav {
    display: none;
  }
}
#header .container .h-right-wrap .h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li {
  position: relative;
  height: 100%;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li > a {
  height: 100%;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 200;
  color: white;
  word-break: keep-all;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 180px;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  background: white;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 > a {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  word-break: keep-all;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li:hover > a {
  background: white;
  color: black;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li:hover .depth-2 {
  max-height: 400px;
}
#header .container .h-right-wrap .m-menu-open {
  display: none;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .m-menu-open {
    display: block;
    width: 44px;
    height: 44px;
    cursor: pointer;
  }
  #header .container .h-right-wrap .m-menu-open > svg {
    width: 100%;
    height: 100%;
    fill: white;
  }
}

.m-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 700;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.m-menu-background.active {
  visibility: visible;
  opacity: 1;
}

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in-out;
  background: #3D3D3D;
  z-index: 701;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .m-menu-head {
  flex: 0 0 auto;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  border-bottom: 1px solid white;
}
.m-menu .m-menu-head .m-menu-close {
  position: relative;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.m-menu .m-menu-head .m-menu-close > svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
}
.m-menu .m-menu-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
}
.m-menu .m-menu-body .m-global-nav {
  width: 100%;
  height: auto;
}
.m-menu .m-menu-body .m-global-nav .depth-1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li > span, .m-menu .m-menu-body .m-global-nav .depth-1 > li > a {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li > span:hover, .m-menu .m-menu-body .m-global-nav .depth-1 > li > a:hover {
  background: white;
  color: #3D3D3D;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 {
  width: 100%;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 > a {
  width: 100%;
  height: 40px;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: white;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li.on > span, .m-menu .m-menu-body .m-global-nav .depth-1 > li.on > a {
  background: white;
  color: #3D3D3D;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li.on .depth-2 {
  max-height: 400px;
}

#footer {
  width: 100%;
  height: auto;
  padding: 120px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
@media (max-width: 1280px) {
  #footer {
    padding: 80px 0;
  }
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 768px) {
  #footer .container {
    flex-direction: column;
    gap: 32px;
  }
}
#footer .container #f-logo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
#footer .container #f-logo > img {
  flex: 0 0 auto;
  width: 50px;
  height: auto;
}
@media (max-width: 1280px) {
  #footer .container #f-logo > img {
    width: 32px;
  }
}
#footer .container #f-logo > span {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container #f-logo > span {
    font-size: 20px;
  }
}
#footer .container .f-info {
  flex: 0 1 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 1280px) {
  #footer .container .f-info {
    grid-template-columns: 1fr;
  }
}
#footer .container .f-info .item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
#footer .container .f-info .item.full {
  grid-column: span 2;
}
@media (max-width: 1280px) {
  #footer .container .f-info .item.full {
    grid-column: 1/2;
  }
}
#footer .container .f-info .item > em {
  padding-right: 8px;
  margin-right: 8px;
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 18px;
  color: white;
  border-right: 2px solid white;
}
#footer .container .f-info .item > span {
  font-size: 13px;
  line-height: 18px;
  font-weight: 300;
  color: #aaa;
  word-break: keep-all;
}
#footer .container .f-right {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 1280px) {
  #footer .container .f-right {
    gap: 24px;
  }
}
#footer .container .f-right .f-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 1280px) {
  #footer .container .f-right .f-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
#footer .container .f-right .f-nav > a {
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1.2;
  color: #aaa;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .f-right .f-nav > a {
    width: 100%;
  }
}
#footer .container .f-right .f-nav > a:not(:last-of-type) {
  padding-right: 12px;
  margin-right: 12px;
  border-right: 2px solid #aaa;
}
@media (max-width: 1280px) {
  #footer .container .f-right .f-nav > a:not(:last-of-type) {
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border: none;
    border-bottom: 2px solid #aaa;
  }
}
#footer .container .f-right .copyright {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  color: #aaa;
  word-break: keep-all;
}/*# sourceMappingURL=common.css.map */