@charset "UTF-8";
/* 스킵메뉴 */
.skip-nav {
  z-index: 5100;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: -100%;
  width: 100%;
}
.skip-nav.active {
  top: 0;
}
.skip-nav .skip {
  padding: 1rem;
  flex-basis: 50%;
  text-align: center;
  background-color: #fff;
}
.skip-nav .skip:focus {
  color: #fff;
  background-color: #a7a7a7;
}

.header-wrap {
  z-index: 5000;
  position: fixed;
  top: 0;
  width: 100%;
  height: 9rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.4s, border-bottom 0.4s;
  -webkit-transition: background 0.4s, border-bottom 0.4s;
  -moz-transition: background 0.4s, border-bottom 0.4s;
  -ms-transition: background 0.4s, border-bottom 0.4s;
  -o-transition: background 0.4s, border-bottom 0.4s;
}
.header-wrap.active, .header-wrap.scroll {
  background: #fff;
  border-bottom: 1px solid #DFDFDF;
  transition: background 0.4s, border-bottom 0.4s;
  -webkit-transition: background 0.4s, border-bottom 0.4s;
  -moz-transition: background 0.4s, border-bottom 0.4s;
  -ms-transition: background 0.4s, border-bottom 0.4s;
  -o-transition: background 0.4s, border-bottom 0.4s;
}
.header-wrap.active .logo img, .header-wrap.scroll .logo img {
  content: url("http://fstautomation.cdn1.cafe24.com/static/img/common/logo_or.png");
}
.header-wrap.active .gnb li .dep-01, .header-wrap.scroll .gnb li .dep-01 {
  color: #222222;
}
.header-wrap.active .lang-wrap .lang-btn .lang, .header-wrap.scroll .lang-wrap .lang-btn .lang {
  color: #222222;
}
.header-wrap.active .lang-wrap .lang-btn .lang-img img, .header-wrap.scroll .lang-wrap .lang-btn .lang-img img {
  content: url("http://fstautomation.cdn1.cafe24.com/static/img/common/lang.png");
}
.header-wrap.active .lang-wrap .lang-option, .header-wrap.scroll .lang-wrap .lang-option {
  background: #fff;
}
.header-wrap.active .lang-wrap .lang-option li, .header-wrap.scroll .lang-wrap .lang-option li {
  color: #222222;
}

.header {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 4rem;
  min-height: 9rem;
  width: 100%;
  max-width: 152rem;
}
.header .logo {
  left: 0;
  min-width: 19.4rem;
  height: 3rem;
  margin-top: 3.1rem;
  font-size: 0;
}
.header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.header .right-nav {
  width: 100%;
  display: flex;
  justify-content: right;
  gap: 3.5rem;
}

.nav {
  margin-top: 0.2rem;
  z-index: 10;
}

.gnb > li {
  position: relative;
  display: inline-block;
}
.gnb > li .dep-01 {
  display: block;
  padding: 3.5rem;
  font-weight: 500;
  color: #FFFFFF;
  font-size: var(--fs-md);
}
.gnb > li .dep-01:focus {
  font-weight: 700;
  color: #0d3181;
}
.gnb > li:last-child {
  margin-right: 0;
}
.gnb > li:hover .dep-01 {
  font-weight: 700;
  color: #233DC0;
}
.gnb > li:hover .lnb::before {
  width: 100%;
  animation: bar 0.5s;
  -webkit-animation: bar 0.5s;
}

.lnb {
  display: none;
  padding: 2.4rem 0;
  position: absolute;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  background: #FFFFFF;
  animation: bg 0.4s;
  -webkit-animation: bg 0.4s;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.lnb a:focus,
.lnb a:hover {
  color: #233DC0;
  font-weight: 600;
}
.lnb li {
  display: block;
  padding: 0 2.4rem;
}
.lnb li a {
  display: block;
  padding: 0.6rem 0;
  line-height: 1.5;
  font-size: var(--fs-com);
  text-align: center;
}
.lnb li:hover a {
  font-weight: 600;
  color: #233DC0;
}
.lnb::before {
  content: "";
  width: 0;
  height: 0.2rem;
  background: #233DC0;
  position: absolute;
  top: -0.2rem;
  left: 0;
}

.lang-wrap {
  position: relative;
  display: flex;
  height: 3.2rem;
  padding: 0.8rem 1.2rem;
  margin-top: 3rem;
  text-align: right;
  border-radius: 2.4rem;
  -webkit-border-radius: 2.4rem;
  -moz-border-radius: 2.4rem;
  -ms-border-radius: 2.4rem;
  -o-border-radius: 2.4rem;
  border: 1px solid #DFDFDF;
}
.lang-wrap .lang-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 1.4rem;
  gap: 2.4rem;
  position: relative;
}
.lang-wrap .lang-btn .lang {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: #DFDFDF;
  line-height: 1;
}
.lang-wrap .lang-btn .lang-img {
  display: flex;
  align-items: center;
  transform: rotate(0deg);
  transition: transform 0.2s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transition: transform 0.2s;
  -o-transition: transform 0.2s;
}
.lang-wrap .lang-btn.active .lang-img {
  transform: rotate(180deg);
  transition: transform 0.2s;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transition: transform 0.2s;
  -o-transition: transform 0.2s;
}
.lang-wrap .lang-option {
  display: none;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 3.4rem;
  left: 0;
  margin-left: 0;
  color: #fff;
  background: none;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  border: 1px solid #DFDFDF;
  box-shadow: none;
}
.lang-wrap .lang-option a {
  display: block;
  padding: 0.8rem 1.2rem;
  text-align: left;
  font-size: 1.4rem;
  line-height: 2rem;
}
.lang-wrap .lang-option a:focus, .lang-wrap .lang-option a:hover {
  font-weight: 700;
  color: #233DC0;
  background: #F6F9FB;
}

.mobile-menu-btn {
  display: none;
  z-index: 10;
  position: absolute;
  right: 0;
  top: 0.9rem;
}
.mobile-menu-btn .fi::before {
  font-size: 3rem;
  color: #fff;
}

@keyframes bar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes bg {
  0% {
    opacity: 0;
    background: none;
  }
  100% {
    opacity: 1;
    background: #FFFFFF;
  }
}
@media all and (max-width: 85.375rem) {
  .header .logo {
    width: 11rem;
  }
  .header .logo img {
    height: auto;
  }
}
@media all and (max-width: 80rem) {
  .header-wrap {
    width: 100vw;
    height: 6.6rem;
    min-height: 6.6rem;
  }
  .header-wrap.active {
    height: 100vh;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
  }
  .header-wrap.active .header .right-nav {
    position: absolute;
    width: calc(100% - 4rem);
  }
  .header-wrap.active .header .lnb {
    animation: none;
    -webkit-animation: none;
  }
  .header-wrap.active .header .lang-wrap {
    display: block;
  }
  .header-wrap.active .header .lang-wrap:hover .option {
    display: block;
  }
  .header-wrap.active .header .nav {
    display: block;
    height: 100vh;
  }
  .header-wrap.active .header .gnb > li {
    margin-bottom: 1.5rem;
  }
  .header-wrap.active .header .gnb > li .dep-01 {
    padding-top: 0;
    padding-bottom: 1rem;
  }
  .header-wrap.active .header .gnb > li:not(.active):hover .dep-01 {
    font-weight: 400;
    color: #0d3181;
  }
  .header-wrap.active .header .gnb > li:not(.active):hover .dep-01::before {
    display: none;
  }
  .header-wrap.active .header .mobile-menu-btn .fi::before {
    color: #233DC0;
  }
  .header-wrap.scroll .mobile-menu-btn .fi::before {
    color: #233DC0;
  }
  .header {
    z-index: 10;
    padding: 1rem 2rem;
    min-height: 6.6rem;
  }
  .header .logo {
    margin-top: 0.7rem;
    width: 10rem;
    height: 100%;
  }
  .nav {
    overflow: hidden;
    display: none;
    position: relative;
    left: 0;
    top: 0;
    padding: 5.3rem 0 0;
    width: 100%;
    height: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  .gnb {
    position: relative;
    padding-top: 3rem;
  }
  .gnb::before {
    position: absolute;
    left: 11rem;
    top: 0;
    width: 1px;
    height: 100vh;
    content: "";
    background-color: #ddd;
  }
  .gnb::after {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 100vw;
    height: 1px;
    content: "";
    background-color: #ddd;
  }
  .gnb li {
    position: static;
    display: flex;
    justify-content: flex-start;
  }
  .gnb li .dep-01 {
    padding: 0 0 3.5rem;
    width: 10rem;
  }
  .gnb li .dep-01:focus {
    font-weight: 700;
    color: #233DC0 !important;
  }
  .gnb li.active .dep-01 {
    font-weight: 700;
    color: #233DC0 !important;
  }
  .lnb {
    z-index: 10;
    top: -1rem;
    position: absolute;
    top: 2.2rem;
    padding-top: 0;
    margin-left: 11rem;
    flex: 1 1 0;
    text-align: left;
    background: none;
    box-shadow: none;
  }
  .lnb::before {
    display: none;
  }
  .lnb li {
    margin-bottom: 0;
    padding-left: 2rem;
  }
  .lnb li a {
    width: -moz-fit-content;
    width: fit-content;
  }
  .lang-wrap {
    position: absolute;
    z-index: 10;
    display: none;
    right: 6rem;
    top: 0.7rem;
    margin-top: 0;
  }
  .lang-wrap .option li {
    margin-bottom: 1rem;
  }
  .mobile-menu-btn {
    display: block;
  }
}
@media all and (max-width: 47.9375rem) {
  .header-wrap {
    height: 6.3rem;
    min-height: 6.3rem;
  }
  .header .logo {
    min-width: 12rem;
    height: auto;
    margin-top: 1rem;
  }
  .header .nav {
    padding-top: 5rem;
  }
  .header .lang-wrap {
    top: 0.5rem;
  }
  .header .mobile-menu-btn {
    top: 0.7rem;
  }
}
/*
푸터 */
.footer-wrap {
  width: 100%;
}

.footer {
  position: relative;
  width: 100%;
  padding: 6rem 0 3.6rem;
  background: #181F31;
  color: #FFFFFF;
}
.footer::before {
  content: "";
  position: absolute;
  top: 6rem;
  right: 0;
  width: 39.3rem;
  height: 13rem;
  background: url("http://fstautomation.cdn1.cafe24.com/static/img/common/logo_fst.png") no-repeat;
  background-size: cover;
}
.footer .inner {
  width: 100%;
  max-width: 152rem;
  padding: 0 4rem;
  margin: 0 auto;
}
.footer .flex-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 4.8rem;
}
.footer .logo {
  margin-bottom: 4.8rem;
}
.footer .c-name {
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.57143;
}
.footer .list {
  margin-bottom: 0.8rem;
}
.footer .list li {
  display: flex;
  gap: 0.8rem;
  font-size: var(--fs-sm);
  line-height: 1.57143;
}
.footer .list li span {
  font-weight: 600;
}
.footer .list:last-of-type {
  margin-bottom: 0;
}
.footer .left .list {
  display: flex;
  gap: 2.4rem;
}
.footer .left .list li {
  position: relative;
}
.footer .left .list li::before {
  content: "";
  position: absolute;
  right: -1.3rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 1px;
  height: 1.4rem;
  background: #FFFFFF;
  opacity: 0.4;
}
.footer .left .list li:last-child::before {
  display: none;
}
.footer .right .list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer .right .list li span {
  display: block;
  width: 6.5rem;
}
.footer .copy-wrap {
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.footer .copy {
  font-size: var(--fs-sm);
  line-height: 1.57143;
}

@media all and (max-width: 85.375rem) {
  .footer::before {
    width: 30.3rem;
    height: 10rem;
  }
}
@media all and (max-width: 64rem) {
  .footer::before {
    width: 21.3rem;
    height: 7rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .footer {
    padding: 4rem 0 2rem;
  }
  .footer::before {
    top: 17rem;
    width: 18.3rem;
    height: 6rem;
  }
  .footer .inner {
    padding: 0 2rem;
  }
  .footer .logo {
    margin-bottom: 4rem;
  }
  .footer .flex-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .footer .right .list li span {
    width: auto;
  }
  .footer .copy-wrap {
    padding-top: 2rem;
  }
}
/* 공통 */
.inner {
  margin: 0 auto;
  padding: 0 4rem;
  max-width: 152rem;
}