@import './reset.css';
@import './common.css';

#wrap{
  min-width: 1440px;
}
/* header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1440px;
  color: #fff;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.3s, color 0.5s;
}
#header.show {
  transform: translateY(0);
}
#header .group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header h1 {
  width: 100px;
  padding: 17px 0;
  filter: brightness(0) invert(1);
  transition: filter 0.5s;
}
/* header / nav */
#nav .nav-list {
  display: flex;
  align-items: center;
}
#nav .link-nav {
  display: block;
  padding: 23px 25px;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.5s;
}
#nav .select-language {
  position: relative;
}
#nav .select-language .link-nav {
  display: flex;
  align-items: center;
  padding: 20px 0 18px 25px;
}
#nav .select-language .curr {
  margin: 0 5px;
  font-size: 18px;
  font-weight: 600;
}
#nav .language-list {
  position: absolute;
  right: 0;
  top: 53px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  background-color: #000;
  border: 1px solid #5a5a5a;
  border-radius: 6px;
  transition: all 0.3s;
}
#nav .language-list.show {
  visibility: visible;
  opacity: 1;
}
#nav .link-language {
  display: block;
  padding: 2px 14px 4px 13px;
  font-size: 18px;
  line-height: 1.33;
  font-weight: 600;
  opacity: 0.2;
}
#nav .link-language:first-child {
  padding-top: 6px;
  padding-bottom: 2px;
}
#nav .link-language.active {
  opacity: 1;
}
/* // header / nav */

/* header (dark) */
#header.dark h1{
    filter: brightness(0) invert(0);
}
#header.dark .link-nav {
    color: #000;
}
#header.dark .link-nav svg path{
    stroke: #000;
}
#header.dark .language-list{
    background-color: #fff;
    border-color: #c5c5c5;
}
#header.dark .link-language{
    color: #000;
}
/* // header (dark) */
/* // header */


/* footer */
#footer {
  background: #000;
  position: relative;
  color: #fff;
  padding: 0 100px;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
  padding: 58px 0;
  margin: 0;
}
#footer .footer-info {
  font-size: 14px;
}
#footer .footer-info address {
  font-weight: 400;
  line-height: 1;
}
#footer .footer-info .copyright {
  display: block;
  margin-top: 8px;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}
#footer .footer-logo img {
  width: 193px;
}
