@charset "UTF-8";

:root {
  --works-menu-color: #000;
}
/* ** upleat common ** */
html {
  font-size: 0.5208vw;
}
body {
  font-size: 14px;
  font-family: "SUIT";
}
.header-site {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  right: 0;
  height: 7rem;
  opacity: 0;
  background-color: #fff;
}
.header-site__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92.7083333333vw;
  height: 7rem;
  margin: 0 auto;
}
/* .header-site__inner .logo-site {
  position: relative;
  width: 4.9479166667vw;
  height: 0.8333333333vw;
} */
.header-site__inner .logo-site a {
  display: block;
  text-indent: -1000px;
  overflow: hidden;
}
/* .header-site__inner .logo-site a::after {
  content: "";
  -webkit-mask: url(../../images/CI.svg) no-repeat 50%;
  -webkit-mask-size: contain;
  mask: url(../../images/CI.svg) no-repeat 50%;
  mask-size: contain;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0029d2;
  transition: all 0.4s;
} */

.header-site__inner .logo-site {
  position: relative;
  width: 143px;
  height: 18px;
}
.header-site__inner .logo-site a::after {
  content: "";
  mask: none;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url(/assets/images/safeu/new_logo_works_white.svg);
  background-size: cover;
  transition: all 0.4s;
}


.header-site__inner .navigation-global {
  transition: right 0.4s;
}
.header-site__inner .navigation-global ul {
  display: flex;
  justify-content: flex-end;
  gap: 2.96875vw;
}
.header-site__inner .navigation-global ul a {
  font-family: "proxima-nova";
  font-weight: 500;
  font-size: 0.9375vw;
  color: #0029d2;
}
.header-site__inner .navigation-global ul .safeu {
  position: relative;
  padding-left: 2.96875vw;
}
.header-site__inner .navigation-global ul .safeu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 1px;
  height: 1.4rem;
  background: #0029d2;
  opacity: 0.5;
}
.header-site__inner .navigation-global.dummy {
  position: absolute;
  right: 3.647vw;
}
.header-site__inner .navigation-global.dummy ul a {
  color: #fff;
}
.header-site::after {
  display: block;
  position: fixed;
  right: 0;
  top: 55px;
  z-index: 11;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.4s;
}
.header-site.white {
  background-color: unset;
}
.header-site.white .logo-site a::after {
  background-color: #fff;
}
.header-site.white .navigation-global ul a {
  color: #fff;
}
.header-site.white .navigation-global ul .safeu::before {
  background-color: #fff;
}
.header-site.white .btn-gnb span {
  background: #fff;
}
.header-site .link-community {
  position: fixed;
  left: -100%;
  bottom: 90px;
  z-index: 11;
  display: flex;
  gap: 20px;
  transition: all 1s;
}
.header-site .link-community a {
  font-family: "proxima-nova";
  font-size: 16px;
  font-weight: 300;
  color: #000;
  letter-spacing: 0.03em;
}
.header-site .link-community a::after {
  content: none;
}

.btn-gnb {
  position: relative;
  display: none;
  position: fixed;
  right: 24px;
  top: 13px;
  z-index: 11;
  width: 44px;
  height: 30px;
  text-indent: -1000px;
  overflow: hidden;
}
.btn-gnb span {
  display: block;
  position: absolute;
  right: 0;
  top: 10px;
  width: 44px;
  height: 2px;
  background-color: #0029d2;
  transition: all 0.4s;
}
.btn-gnb span:nth-child(1) {
  top: 8px;
}
.btn-gnb span:nth-child(2) {
  top: 13px;
  left: 0;
  right: auto;
}
.btn-gnb span:nth-child(3) {
  top: 18px;
}
/* 1920px WIDE 대응 */
@media screen and (min-width: 1921px) {
  .header-site {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    align-items: center;
    z-index: 101;
    right: 0;
    height: 70px;
  }
  .header-site__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1780px;
    height: 70px;
    margin: 0 auto;
  }
  /* .header-site__inner .logo-site a::after {
    content: "";
    -webkit-mask: url(../../images/CI.svg) no-repeat 50%;
    -webkit-mask-size: cover;
    mask: url(../../images/CI.svg) no-repeat 50%;
    mask-size: cover;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0029d2;
    transition: all 0.4s;
  } */

  .header-site__inner .navigation-global {
    transition: right 0.4s;
  }
  .header-site__inner .navigation-global ul {
    display: flex;
    justify-content: flex-end;
    gap: 57px;
  }
  .header-site__inner .navigation-global ul a {
    font-family: "proxima-nova";
    font-weight: 500;
    font-size: 18px;
    color: #0029d2;
  }
  .header-site__inner .navigation-global ul .safeu {
    padding-left: 57px;
  }
  .header-site__inner .navigation-global ul .safeu::before {
    height: 14px;
  }
  .header-site__inner .navigation-global.dummy {
    position: absolute;
    right: 3.647vw;
  }
  .header-site__inner .navigation-global.dummy ul a {
    color: #fff;
  }
  .header-site::after {
    display: block;
    position: fixed;
    right: 0;
    top: 55px;
    z-index: 11;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.4s;
  }
  .header-site.white .logo-site a::after {
    background-color: #fff;
  }
  .header-site.white .navigation-global ul a {
    color: #fff;
  }
  .header-site.white .btn-gnb span {
    background: #fff;
  }
  .header-site .link-community {
    position: fixed;
    left: -100%;
    bottom: 90px;
    z-index: 11;
    display: flex;
    gap: 20px;
    transition: all 1s;
  }
  .header-site .link-community a {
    font-family: "proxima-nova";
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.03em;
  }
  .header-site .link-community a::after {
    content: none;
  }
  .btn-gnb {
    position: relative;
    display: none;
    position: fixed;
    right: 24px;
    top: 13px;
    z-index: 11;
    width: 44px;
    height: 30px;
    text-indent: -1000px;
    overflow: hidden;
  }
  .btn-gnb span {
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    width: 44px;
    height: 2px;
    background-color: #0029d2;
    transition: all 0.4s;
  }
  .btn-gnb span:nth-child(1) {
    top: 8px;
  }
  .btn-gnb span:nth-child(2) {
    top: 13px;
    left: 0;
    right: auto;
  }
  .btn-gnb span:nth-child(3) {
    top: 18px;
  }
}
@media (max-width: 1280px) {
  .btn-gnb {
    display: block;
  }
  .exp-line-box li.m-hide {
    display: none;
  }
  .header-site__inner .navigation-global {
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #0029d2;
  }
  .header-site__inner .navigation-global.active {
    right: 0;
  }
  .header-site__inner .navigation-global ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding: 90px 16px 0;
  }
  .header-site__inner .navigation-global ul a {
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #000;
  }
  .header-site__inner .navigation-global ul .safeu {
    padding-left: 0;
    padding-top: 20px;
  }
  .header-site__inner .navigation-global ul .safeu::before {
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }
  .header-site.active::after {
    width: 100%;
  }
  /* .header-site.active .logo-site a::after {
    background-color: #000;
  } */
  .header-site.active .logo-site a::after {
    background-image: url(/assets/images/safeu/new_logo_works_black.svg);
  }
  .header-site.active .btn-gnb span {
    width: 18px;
    height: 2px;
    background-color: #000;
  }
  .header-site.active .btn-gnb span:nth-child(1) {
    top: 15px;
    transform: rotate(405deg);
  }
  .header-site.active .btn-gnb span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 34px;
    transform: rotate(405deg);
  }
  .header-site.active .btn-gnb span:nth-child(3) {
    top: 15px;
    transform: rotate(-405deg);
  }
  .header-site.active .navigation-global {
    right: 0;
  }
  .header-site.active .link-community {
    left: 16px;
  }
  .header-site {
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    right: auto;
    width: 100%;
    height: 55px;
    background-color: #fff;
  }
  .header-site .logo-site {
    position: fixed;
    left: 24px;
    top: 20px;
    z-index: 11;
    /* width: 80px;
    height: 13px; */
  }
}
/* 320px Mobile 대응 */
@media (max-width: 320px) {
  .header-site__inner .navigation-global ul {
    gap: 15px;
  }
}

/* ** safeworks reset ** */
.new-header {
  background: none;
}
/* .new-header .logo-site a::after {
  content: "";
  -webkit-mask: url(/assets/images/safeu/new_logo.svg) no-repeat 50%;
  -webkit-mask-size: contain;
  mask: url(/assets/images/safeu/new_logo.svg) no-repeat 50%;
  mask-size: contain;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.4s;
} */
.new-header ul li.gnb-global .btn-global {
  display: block;
  width: 1.25vw;
  height: 1.25vw;
  content: "";
  -webkit-mask: url(/assets/images/safeu/gnb-ico-global.svg) no-repeat 50%;
  -webkit-mask-size: contain;
  mask: url(/assets/images/safeu/gnb-ico-global.svg) no-repeat center center / 100% auto;
  mask-size: contain;
  background-color: var(--works-menu-color) !important;
  background: none;
}
.new-header .navigation-global ul a {
  color: #fff;
}
.new-header .navigation-global ul .gnb-global .btn-global {
  filter: brightness(0) invert(1);
}
.white .new-header {
  background: #fff;
}
.white .new-header .logo-site a::after {
  background-image: url(/assets/images/safeu/new_logo_works_black.svg)
}
.white .new-header .navigation-global ul a {
  color: var(--works-menu-color);
}
.white .new-header .navigation-global ul .gnb-global .btn-global {
  filter: none;
}
@media (max-width: 1280px) {
  #dHead.scroll.active {
    transform: none;
    transition: none;
  }
  .new-header .btn-gnb span {
    background-color: #fff;
  }
  .new-header .navigation-global ul li a {
      color:#000;
  }
  .new-header .navigation-global {
    background: #fff;
  }
  .new-header .navigation-global .gnb-global {
    display: none;
  }
  .white .new-header .btn-gnb span {
    background-color: var(--works-menu-color);
  }
  /* .white .new-header.active .logo-site a::after {
    background-color: #fff;
  }
  .white .new-header.active .btn-gnb span {
    background-color: #fff;
  }
  .white .new-header.active .navigation-global ul li a {
    color: #fff;
  } */
}

/* ** safeworks style reset ** */
.bottom-floating .floating-inner * {
  color: #fff;
}