@charset "utf-8";

@import url("common.css");
@import url("form.css");
@import url("ui.css");

/**************************************************************
	헤더 /풋터 / 서브 레이아웃 가이드
	변경하지 않는 기본 스타일시트 import
	작성일 : 2024.01.11 / 작성자 : ㈜넥스미디어
**************************************************************/

/*
    color variable
********************/
:root {

  /* gnb nav style */
  --header_bg: rgba(255, 255, 255, 1);
  --header_bg_line: rgba(0, 48, 87, 0.2);
  --depth1_txt: #09193e;
  --depth2_txt: #09193e;
  --depth1_hover_txt: #09193e;
  --depth2_hover_txt: #09193e;
  --depth1_hover_bg: #fff;
  --depth1_hover_round: 0.3rem;
  --phone_txt: #09193e;

  /* mobile nav style */
  --mobile_menu_bg: #09193e;
  --mobile_depth1_txt: #fff;
  --mobile_depth2_txt: #fff;
  --hamburger_color: #09193e;

  /* location nav style */
  --location_nav_bg: rgba(0, 0, 0, .5);
  --location_nav_menubg: rgba(73, 73, 73, .8);
  --location_nav_menuhover: rgba(73, 73, 73, 1);

  /* footer style */
  --footer_bg: #001241;
  --footer_txt: rgba(255, 255, 255, 1);
  --footer_copy: rgba(255, 255, 255, 0.3);
  --footer_comment: rgba(255, 255, 255, 1);
  --footer_link: rgba(255, 255, 255, .5);
  --footer_link_hover: rgba(255, 255, 255, 1);
  --gotop_bg: rgba(201, 219, 237, 1);
  --gotop_txt: rgba(0, 0, 0, 1);

}

/*********************************************
    GNB (Global Navigation Bar)
*********************************************/
.dim { width:100%; height:100vh; background-color:rgb(0 0 0 / 54%); position: fixed; z-index: 15; display: none;}

.header_logo_scroll, .header_logo_hover {
  opacity:0;position:absolute;
  left:0;
  top:0;
  transition: opacity .3s ease
}


header.temp_header_skin1 {
  z-index: 101;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  transition:all 0.4s ease ;
  padding: 20px 0 0 0;
}

header.temp_header_skin1 .header_con {
  zoom: 1;
  position: relative;
  text-align: left;
  z-index: 201;
  overflow: hidden;
}
.header_con_in {
  width:1720px; margin:0 auto;
  position:relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-between;
}

header.temp_header_skin1 .header_con h1 a {
  display: block;
  position:relative;

  width:100px;
  height:100%;
}

header.temp_header_skin1 .header_con h1 a img {
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  /* width:90px */
}

header.temp_header_skin1 .header_con .gnb {
  margin:20px 0;
}

header.temp_header_skin1 .header_con .gnb_depth_1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex: 1;
}

header.temp_header_skin1 .header_con .gnb_depth_1>li {
  position: relative;
  width:20%;
  margin:0 50px;
}

header.temp_header_skin1 .header_con .gnb_depth_1>li:first-child::before {
  background: none;
}

header.temp_header_skin1 .header_con .gnb_depth_1 > li > a {
  display: flex;
  color: #fff;
  font-size: 1.12rem;
  text-align: center;
  align-items: center;
  font-weight: 300;
  white-space: nowrap;
  font-family: 'Roboto';
  letter-spacing: 1px;
  padding: 0.6rem 1.3rem;
}

header.temp_header_skin1 .header_con .gnb_depth_1 > li > a:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #028ad6;
  position: absolute;
  bottom: 0;
  display: block;
  opacity: 0;
  left: 0;
}

.subGnb {background-color:#fff; display: block; height: 0;}
/* #header.hover .subGnb:after {display:block; content:''; width:100%; height:100vh; background-color:rgb(0 0 0 / 54%); position: fixed;} */
.subGnb > ul {display: flex; width:1720px; margin:0 auto; padding: 40px 0; border-top: 1px solid rgba(0, 0, 0, 0.1); margin-top: 30px;}
.subGnb > ul > li {width:20%; overflow: hidden; margin-left:20px; padding:40px;  border-radius: 20px; position: relative;}
.subGnb > ul > li:first-child {margin-left:0;}
.subGnb > ul > li:nth-child(1){background:url('/resources/img/common/gnb_sub_01.png') no-repeat; background-size:cover;}
.subGnb > ul > li:hover::before {
  content: "";
  opacity: 0.5;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #000; z-index: 2;
  animation-name: opc;
  animation-duration:0.2s;
}
  @-webkit-keyframes opc {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.5;
    }
  }
.subGnb > ul > li:nth-child(2){background:url('/resources/img/common/gnb_sub_02.png') no-repeat; background-size:cover;}
.subGnb > ul > li:nth-child(3){background:url('/resources/img/common/gnb_sub_04.png') no-repeat; background-size:cover;}
.subGnb > ul > li:nth-child(4){background:url('/resources/img/common/gnb_sub_05.png') no-repeat; background-size:cover;}
.subGnb > ul > li:nth-child(5){background:url('/resources/img/common/gnb_sub_03.png') no-repeat; background-size:cover;}
.subGnb .subGnbTitle {display: block; font-size:40px; font-weight: bold; color:#fff; letter-spacing: -1.2px; z-index: 3; position: relative;}
.subGnb .subGnbList > li {margin-top:12px;}
.subGnb .subGnbList > li a{font-family: 'SUIT'; font-size:16px; color:rgba(255,255,255,0.4); z-index: 3; position: relative;}
.subGnb .subGnbList > li a:hover {font-weight: bold;color:#fff;}

/*******
  헤더 오른쪽 메뉴
*******/
.header_util {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header_util a.contact_move_btn {
  font-family: 'SUIT';
  font-size: 1rem;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  transition: all .3s ease;
}

/***********
헤더 액션
************/
header.temp_header_skin1 .header_con .gnb_depth_1 > li > a.on, header.temp_header_skin1 .header_con .gnb_depth_1>li.on>a:after  {color:#028ad6;}
header.temp_header_skin1 .header_con .gnb_depth_1>li.on>a:after ,header.temp_header_skin1 .header_con .gnb_depth_1 > li > a.on:after {
  opacity: 1;
}
.temp_header_skin1.hover {background-color:#fff;}
.temp_header_skin1.hover .no_hover {opacity: 0;}
.temp_header_skin1.hover .header_logo_hover {opacity: 1;}
.temp_header_skin1.hover .header_con .gnb_depth_1 > li > a, .temp_header_skin1.scroll .header_con .gnb_depth_1 > li > a ,.temp_header_skin1.active .header_con .gnb_depth_1 > li > a {color:#000;}
.temp_header_skin1.hover .header_util a.contact_move_btn, .temp_header_skin1.scroll .header_util a.contact_move_btn, .temp_header_skin1.active .header_util a.contact_move_btn {color:#000; border:1px solid rgba(0,0,0,0.2);}
.temp_header_skin1.scroll, .temp_header_skin1.active {position:fixed; top:0; left:0; right:0; background-color:#fff;}
.temp_header_skin1.scroll {padding: 0 ;}
@media screen and (min-width: 1025px) {
  header.temp_header_skin1.scroll .header_con {height: 90px;}
}

.temp_header_skin1.scroll .no_hover {opacity:0;}
.temp_header_skin1.scroll .header_logo_scroll {opacity: 1; top:50%; transform: translateY(-50%);}
.temp_header_skin1.scroll.hover .header_logo_scroll {opacity:0}


.header_util a.all_menu_btn {
  margin-left: 20px;
  letter-spacing: 0.07rem;
  position:relative;
  display: inline-block;
  font-family: 'Roboto';
  font-size: 15px;
  color: #fff;

}
.all_menu_btn span {margin-right:4px;}
.all_menu_btn img {position:absolute; top:50%; transform: translateY(-50%);}








header.temp_header_skin1 .header_con .header_util .util_menu a {
  text-align: center;

}

header.temp_header_skin1 .header_con .header_util .util_menu {
  display: inline-flex;
  padding-right: 0;
  margin-left: 1rem;
  display: none;
}

header.temp_header_skin1 .hamburger_icon {
  /* display: flex;
    flex-direction: column; */
  width: 26px;
  height: 22px;
  transition: all .3s;
  z-index: 99;
  align-items: center;
  position: relative;
  justify-content: space-between;
  display: block;
}

header.temp_header_skin1 .hamburger_icon i {
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: transform ease .3s;
}

header.temp_header_skin1.scroll .hamburger_icon i {
  background-color: var(--hamburger_color);
}

header.temp_header_skin1 .hamburger_icon i:nth-child(2) {
  margin: 8px 0;
}

header.temp_header_skin1.active .btn {
  padding-top: 26px;
}

header.temp_header_skin1.active .btn i {
  margin: -3px 0;
  background-color: var(--hamburger_color);
}

header.temp_header_skin1.active .btn i:nth-child(1) {
  transform: rotate(45deg);
}

header.temp_header_skin1.active .btn i:nth-child(2) {
  display: none;
}

header.temp_header_skin1.active .btn i:nth-child(3) {
  transform: rotate(-45deg);
}

header.temp_header_skin1 .header_con h1 a .m-only {
  display: none;
}

.header_con:after {
  content: '';
  position: absolute;
  width: 100%;
  background: #fff;
  z-index: 26;
  display: none;
  overflow: hidden;
  top: 110px;
  left: 0;
}

header.temp_header_skin1.nav-mo .header_con::before {
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  width: 0;
  top: 116px;
  background: rgba(255, 255, 255, 0);
  transition: all .3s ease;
  transition-delay: 0.4s;
}

header.temp_header_skin1.nav-mo.active .header_con::before {
  width: 100%;
  background: rgba(255, 255, 255, .5);
}

/* mobile */
header.temp_header_skin1.nav-mo .mobile_gnb>ul>li>ul {
  display: none;
}

header.temp_header_skin1 .allmenu_con {
  overflow-y: auto;
  align-items: start;
  flex-direction: column;
  justify-content: space-between;
  background: var(--mobile_menu_bg);
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  overflow: hidden;
  height: 100%;
  z-index: 1;
  display: flex;
  transition: all ease .6s;
  padding: 137px 7% 0;
}

header.temp_header_skin1 .mobile_gnb {
  width: 100%;
  opacity: 0;
  transition: opacity ease .3s;
}

header.temp_header_skin1 .mobile_gnb>ul>li {
  position: relative;
  width: 100%;
  margin: 15px 0;
  overflow: hidden;
}

header.temp_header_skin1 .mobile_gnb>ul>li>a {
  font-size: 2.4rem;
  font-weight: 400;
  display: inline-block;
  color: var(--mobile_depth1_txt);
  transition: transform ease .7s;
  padding-bottom: 0.5rem;
}

header.temp_header_skin1 .mobile_gnb>ul>li>ul>li {
  margin-right: 40px;
}

header.temp_header_skin1 .mobile_gnb>ul>li>ul>li>a {
  color: var(--mobile_depth2_txt);
  position: relative;
  transition: all ease .3s;
  font-size: 1.4rem;
  padding: 0.3rem 0.7rem;
  display: block;
}

header.temp_header_skin1.nav-mo.active .mobile_gnb {
  opacity: 1;
}

header.temp_header_skin1.nav-mo.active .allmenu_con {
  right: 0;
  display: none
}

header.temp_header_skin1.nav-mo.active .mobile_gnb>ul>li>a {
  transform: translateY(0);
  transition-delay: .5s;
  opacity: 1;
}

header.temp_header_skin1.nav-mo.active .mobile_gnb_open .hamburger_icon i {
  background-color: #fff;
}

/*********************************************
    풋터
*********************************************/
footer {
  background: #444;
  clear: both;
  position: relative;
  width: 100%;
  z-index: 999;
}

footer .footer_con {

  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer_con_in {
  width: 1720px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

footer .footer_con .logo_sec {
  align-items: flex-start;
  display: flex;
  padding-right: 40px;
  padding-top: 35px;
  padding-bottom: 30px;
}

footer .footer_con .txt_sec {
  font-size: 13px;
  padding-top: 25px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

footer .footer_con .txt_sec .cons_info {
  color: var(--footer_txt);
}

footer .footer_con .txt_sec .cons_info p.company_name {
  padding-bottom: 50px;
}

footer .footer_con .txt_sec .cons_info p {
  padding: 3px 0;
}

footer .footer_con .txt_sec .cons_info p span {
  display: inline-block;
  padding: 0 10px;
  position: relative;
}

footer .footer_con .txt_sec .cons_info p span::before {
  content: "";
  width: 1px;
  height: 11px;
  position: absolute;
  right: 0;
  top: 5px;
  background: rgba(255, 255, 255, .2);
}

footer .footer_con .txt_sec .cons_info p span:last-child::before {
  background: none;
}

footer .footer_con .txt_sec .cons_info p span:first-child {
  padding-left: 0;
}

footer .copyright {padding: 20px 0;}
footer .copyright, footer .copyright pre {
  color: var(--footer_copy);
  font-family: "SUIT", sans-serif;
  color: rgba(255, 255, 255, 0.25);
  width: 1720px;
  margin: 0 auto;
  font-size: 13px;
  vertical-align: top;
}
footer .copyright pre {display: inline-block; width: auto; line-height: 16px;}


footer .footer_con .link_sec {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
}

footer .footer_con .privacy_link {
  padding-bottom: 2rem;
}

footer .footer_con .privacy_link a {
  display: inline-block;
  font-size: 1rem;
  color: var(--footer_link);
  display: inline-block;
  padding: 0 15px;
  position: relative;
  transition: all .2s;
}

footer .footer_con .privacy_link a:hover {
  color: var(--footer_link_hover);
}

footer .footer_con .privacy_link a::before {
  content: "";
  width: 1px;
  height: 11px;
  position: absolute;
  right: -2px;
  top: 5px;
  background: rgba(255, 255, 255, .2);
}

footer .footer_con .privacy_link a:last-child::before {
  background: none;
}

.terms_box {
  position: absolute;
  right: 0;
  top: 50px;
}

.terms_box a {
  color: #fff;
  margin-left: 25px
}

.sns_box {
  position: absolute;
  right: 0;
  top: 95px;
  display: flex;
  align-items: center;
  opacity: 0.7;
}

.sns_box a {
  margin-left: 25px
}

#goTop {position: absolute; right: 0; top: -150px; writing-mode: vertical-rl; letter-spacing: 5px; background: url('/resources/img/common/gotop_bg.png') no-repeat; border-radius: 15px; padding: 19px 15px; background-position: center;}
#goTop a {font-size: 14px; color: #fff; position: relative; top: 2px;}


@media screen and (max-width: 1780px) {
  .header_con_in {width: calc(100% - 60px); margin:0 30px;}
  header.temp_header_skin1 .header_con .gnb_depth_1>li {margin:0 30px;}
  /* .subGnb {display: block;} */
  .subGnb > ul {width:calc(100% - 60px);}
  .subGnb > ul > li {padding:16px;}
  .subGnb .subGnbTitle {font-size:35px;}
  .subGnb .subGnbList > li {margin:0;}
  .footer_con_in {width: calc(100% - 60px);}
  footer .copyright {width: calc(100% - 60px);}
}

@media screen and (max-width: 1200px) {
  header.temp_header_skin1 .header_con .gnb_depth_1 > li {margin:0 10px;}

}

@media screen and (max-width: 1024px) {
  .header_con_in {margin:5px 15px; width:calc(100% - 30px)}
  header.temp_header_skin1 {padding: 0;}
  header.temp_header_skin1 .header_con .header_util .util_menu {vertical-align: middle;  display: inline-block;}
  header.temp_header_skin1 .header_con .gnb {margin:0; display: none;}
  header.temp_header_skin1 .header_con h1 a {height:80px;}
  .subGnb  {position:absolute; right:-100%; display: block; width:100%; transition:all .3s ease}
  .subGnb > ul {width:calc(100% - 30px); padding:20px 0;}
  .subGnb > ul > li {margin-left:5px; padding:10px; }
  .subGnb .subGnbList > li {margin-bottom: 15px;}

  header.temp_header_skin1.nav-mo.active .allmenu_con {display: none;}
  header.temp_header_skin1.nav-mo .mobile_gnb>ul>li>ul {display: flex; width: 50%; flex-direction: column;}
  header.temp_header_skin1 .mobile_gnb>ul>li {display: flex; flex-direction: row; align-content: center;}
  header.temp_header_skin1 .mobile_gnb>ul>li>a {width: 50%;}
  header.temp_header_skin1 .mobile_gnb>ul>li>ul>li {width: 100%;}


  .nav-mo.active .subGnb {right:0; overflow: scroll; height: 100%; padding-bottom: 100px;}

  .footer_con_in {width: calc(100% - 40px);}
  footer .copyright {width: calc(100% - 40px); padding-bottom: 40px;}
  .terms_box {top: inherit; bottom: 168px;}
  .sns_box {top: inherit; bottom: -55px;}
  footer .footer_con .txt_sec .cons_info p span {padding:0 4px}
  footer .footer_con .txt_sec .cons_info p.company_name {padding-bottom:25px;}

}

@media screen and (max-width: 640px) {
  header.temp_header_skin1 .header_con h1 a img {width:110px;}
  .subGnb > ul {display: block; padding:12px 0 ; width:calc(100% - 30px); margin-top: 0;}
  .subGnb > ul > li {width:100%;  margin:12px 0 0 0; padding:35px; height: 270px; display: flex; flex-direction: row;}
  .subGnb > ul > li:first-child {margin-top:0;}
  header.temp_header_skin1 .header_con h1 a {height:60px;}
  header.temp_header_skin1.nav-mo.active .header_con::before {display: none;}

  .subGnb > ul > li:nth-child(1){background:url('/resources/img/common/m_gnb_sub_01.png') no-repeat; background-size:cover; background-position: center;}
  .subGnb > ul > li:nth-child(2){background:url('/resources/img/common/m_gnb_sub_02.png') no-repeat; background-size:cover; background-position: center;}
  .subGnb > ul > li:nth-child(3){background:url('/resources/img/common/m_gnb_sub_04.png') no-repeat; background-size:cover; background-position: center;}
  .subGnb > ul > li:nth-child(4){background:url('/resources/img/common/m_gnb_sub_05.png') no-repeat; background-size:cover; background-position: center;}
  .subGnb > ul > li:nth-child(5){background:url('/resources/img/common/m_gnb_sub_03.png') no-repeat; background-size:cover; background-position: center;}

  .subGnb .subGnbTitle {font-size: 5.556vw; font-family: 'Roboto'; width: 50%; line-height: 18px; letter-spacing: 1px;}
  .subGnb ul li > div {width: 50%;}
  .subGnb .subGnbList {}
  .subGnb .subGnbList > li a {font-size: 3.611vw; color: #ffffff; font-weight: 300;}

  .header_util a.contact_move_btn {font-size:14px;}

  .footer_con_in {display:block;}
  footer .footer_con .logo_sec {padding-bottom:0;}
  footer .footer_con .txt_sec {border-left:none; padding-left:0; padding-bottom:25px;}
  footer .footer_con .txt_sec .cons_info p span {display: block; padding:0;}
  footer .footer_con .txt_sec .cons_info p span::before {display: none;}
  footer .footer_con .txt_sec .cons_info p.company_name {padding-bottom:30px;}

  #goTop {top: -95px;}
}

/*********************************************
    브레드크럼 (Breadcrumbs) 네비게이션
    사용자의 현재위치 / 사이트 이동경로
*********************************************/
.page_location_nav {
  height: 4rem;
  text-align: center;
  position: absolute;
  z-index: 40;
  width: 100%;
  left: 0;
  right: 0;
  margin-top: -19rem;
  /* background: rgba(0, 0, 0, .5); */
}

.page_location_nav.topfix {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
}

.page_location_nav nav {
  font-size: 1rem;
  text-align: left;
  white-space: nowrap;
  position: relative;
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
}

.page_location_nav button {
  border: 0;
  background: transparent;
  outline: 0;
  font-size: 0;
}

.page_location_nav .home {
  display: inline-block;
  width: 1rem;
  height: 4rem;
  overflow: hidden;
  position: relative;
  /* border-right: 1px solid rgba(255, 255, 255, 0.3); */
}

.page_location_nav .home a {
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.1rem;
  opacity: .5;
}

.page_location_nav .path-item {
  position: relative;
  /* min-width: 250px; */

}

.page_location_nav .path-item dt {
  color: #fff;
  border-bottom: 0;
  border-top: 0;
  height: 4rem;
  line-height: 4rem;
  font-size: 1rem;
  /* border-right: 1px solid rgba(255, 255, 255, .3); */
}

.page_location_nav nav span.open {
  margin-left: auto;
  align-items: center;
  display: flex;
}

.page_location_nav .path-item.path_depth_1 dt {
  border-left: 0;
  opacity: 0.5;
}

.page_location_nav .path-item dt,
.page_location_nav .path-item li {
  padding: 0 1.1rem;
}

.page_location_nav .path-item ul {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: -1px;
}

.page_location_nav .path-item ul li {
  line-height: 1.6;
  padding: 0;
  text-align: left;
}

.page_location_nav .path-item dd {
  display: none;
  width: 100%;
}

.page_location_nav .path-item li a {
  color: rgba(255, 255, 255, .7);
  display: block;
  position: relative;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  /* border-left: 1px solid rgba(255, 255, 255, .2); */
  font-size: 0.92rem;
  background: var(--location_nav_menubg);
  transition: all .3s;
  text-align: center;
}

.page_location_nav .path-item li a:hover {
  background: var(--location_nav_menuhover);
}

.page_location_nav .path-item.path_depth_1 ul {
  margin-left: 0;
}

.page_location_nav .path-item.path_depth_1 li a {
  border-left: 0;
}

.page_location_nav .path-item li.on a {
  color: rgba(255, 255, 255, 1);
}

.page_location_nav .path-item .btn-open,
.page_location_nav .path-item .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}

/* .page_location_nav .path-item .btn-open:after,
.page_location_nav .path-item .btn-close:after {
  content: "\e878";
  position: absolute;
  top: 1.4rem;
  right: 1rem;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1rem;
  color: #fff;
  font-family: 'Linearicons-Free';
  transition: all .3s cubic-bezier(.25, .46, .45, 1);
} */

.page_location_nav .path-item .btn-close {
  display: none;
}

.page_location_nav .path-item .btn-close:after {
  transform: rotate(180deg);
}

.page_location_nav .path-item.active {
  z-index: 22;
}
.page_location_nav .path_depth_2.active {
  width: 20%;
}

.page_location_nav .path-item.active .btn-open {
  display: none;
}

.page_location_nav .path-item.active .btn-close {
  display: block;
}



/*********************************************
    서브비주얼
*********************************************/
.sub_top_visual {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  height: 1050px;
  transition: all .3s;
}

.sub_top_visual .sub_top_bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 17%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0) 100%);
  height: 300px;
  z-index: 12;
}

.sub_top_visual .sub_top_bg {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 10;
  background: url(../img/main/main_visual2.jpg) no-repeat center center;
  background-size: cover !important;
}

.scroll-text{
  width: 100%;
  overflow: hidden;
}

.width_1120 {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.sub_top_visual h2 {
  position: relative;
  text-align: center;
  font-weight: 600;
  font-size: 90px;
  color: transparent;
  -webkit-text-stroke: 0.7px #fff;
  z-index: 20;
  letter-spacing: 2px;
  padding-bottom: 4rem;
  padding-top: 10px;
  /* width: 3700px; */
  animation: scroll-animation 1s ease-in-out;
}

@keyframes scroll-animation{
  0%{
    left: 130%;
  }
  100%{
    left: 0%;
  }
}

.sub_top_visual h2 strong{
  float: left;
  width: auto;
  font-weight: 800;
  text-align: left;
  line-height: 100px;
}

.sub_top_visual pre {
  z-index: 11;
  color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  width: 100%;
  font-size: 20px;
  line-height: 30px;
  position: relative;
  top: 4rem;
  font-family: 'SUIT';
}

.sub_top_visual .sub_visual_title {
  color: #fff;
  position: relative;
  z-index: 20;
  text-align: center;
}

.sub_top_visual .sub_visual_title strong {
  font-weight: 500;
}

/* 첨단기술을 활용한 스마트 안전점검 */
#bgVisual_0_0 {
  background: url(../img/common/bgVisual_0_0.png) no-repeat center center;
}
/* 시설물유지보수 */
#bgVisual_0_1 {
  background: url(../img/common/bgVisual_0_1.png) no-repeat center center;
}

/*안전진단전문기관*/
#bgVisual_0_2 {
  background: url(../img/common/bgVisual_0_2.png) no-repeat center center;
}

/*종합건설*/
#bgVisual_0_3 {
  background: url(../img/common/bgVisual_0_3.png) no-repeat center center;
}

/*PORTFOILIO*/
#bgVisual_1_0 {
  background: url(../img/common/bgVisual_1_0.png) no-repeat center center;
}

/*ESG*/
#bgVisual_2_0 {
  background: url(../img/common/bgVisual_2_0.png) no-repeat center center;
}

/*CEO인사말*/
#bgVisual_3_0 {
  background: url(../img/common/bgVisual_3_0.png) no-repeat center center;
}

/*연혁*/
#bgVisual_3_1 {
  background: url(../img/common/bgVisual_3_1.png) no-repeat center center;
}

/*비전과 가치관*/
#bgVisual_3_2 {
  background: url(../img/common/bgVisual_3_2.png) no-repeat center center;
}

/*공지사항&뉴스*/
#bgVisual_3_3 {
  background: url(../img/common/bgVisual_3_3.png) no-repeat center center;
}

/*견적문의*/
#bgVisual_3_4 {
  background: url(../img/common/bgVisual_3_5.png) no-repeat center center;
}

/*등록인증특허*/
#bgVisual_3_5 {
  background: url(../img/common/bgVisual_3_6.png) no-repeat center center;
}

/*채용절차*/
#bgVisual_4_0 {
  background: url(../img/common/bgVisual_4_0.png) no-repeat center center;
}

/*인재상*/
#bgVisual_4_1 {
  background: url(../img/common/bgVisual_4_1.png) no-repeat center center;
}

@media screen and (max-width: 1024px) {
  /* 시설물유지보수 */
#bgVisual_0_1 {
  background: url(../img/common/m_bgVisual_0_1.jpg) no-repeat center center;
}

/*안전진단전문기관*/
#bgVisual_0_2 {
  background: url(../img/common/m_bgVisual_0_2.jpg) no-repeat center center;
}

/*종합건설*/
#bgVisual_0_3 {
  background: url(../img/common/m_bgVisual_0_3.jpg) no-repeat center center;
}

/*PORTFOILIO*/
#bgVisual_1_0 {
  background: url(../img/common/m_bgVisual_1_0.jpg) no-repeat center center;
}

/*ESG*/
#bgVisual_2_0 {
  background: url(../img/common/m_bgVisual_2_0.jpg) no-repeat center center;
}

/*CEO인사말*/
#bgVisual_3_0 {
  background: url(../img/common/m_bgVisual_3_0.jpg) no-repeat center center;
}

/*연혁*/
#bgVisual_3_1 {
  background: url(../img/common/m_bgVisual_3_1.jpg) no-repeat center center;
}

/*비전과 가치관*/
#bgVisual_3_2 {
  background: url(../img/common/m_bgVisual_3_2.jpg) no-repeat center center;
}

/*공지사항&뉴스*/
#bgVisual_3_3 {
  background: url(../img/common/m_bgVisual_3_3.jpg) no-repeat center center;
}

/*견적문의*/
#bgVisual_3_4 {
  background: url(../img/common/m_bgVisual_3_5.jpg) no-repeat center center;
}

/*채용절차*/
#bgVisual_4_0 {
  background: url(../img/common/m_bgVisual_4_0.jpg) no-repeat center center;
}

/*인재상*/
#bgVisual_4_1 {
  background: url(../img/common/m_bgVisual_4_1.jpg) no-repeat center center;
}
}


/*관심고객등록*/
@media screen and (max-width: 1024px) {
  .sub_top_visual {
    height: 100vh;
  }
  .page_location_nav {
    padding: 0 20px;
  }
  .sub_top_visual pre {
    padding: 0 20px;
  }
}

@media screen and (max-width: 640px) {
  .sub_top_visual h2 {
    padding: 0;
    font-size: 10.278vw;
  }

  @keyframes scroll-animation{
    0%{
      left: 130%;
    }
    100%{
      left: 0%; /* 텍스트 width와 동일 */
    }
  }

  .sub_top_visual h2 strong{
    padding: 0 25px;
    margin-top: 7vw;
    line-height: 11vw;
  }

  .page_location_nav {
    margin-top: -45vw;
  }

  .sub_top_visual pre {
    font-size: 3.611vw;
  }

  .page_location_nav .path_depth_2.active {
    width: 62%;
  }
}

