/*reset.css*/
body, html{ 
  margin:0; 
  padding:0; 
  width:100%; 
  height:100%; 
  scroll-behavior: smooth;
}
body, html, input, textarea, select, button, table{ 
	font-family: 'pretendard', sans-serif;
	-webkit-font-smoothing:antialiased
 }
form, fieldset, h1, h2, h3, h4, h5, h6, p{ 
  margin:0; 
  padding:0; 
  word-break: keep-all;
}
form, fieldset, button{ 
  border:none;
}
ol, ul, li{ 
  list-style:none; 
  padding:0; 
  margin:0; 
  word-break: keep-all;
}
img{ 
  max-width:100%; 
}
a{ 
  color:inherit; 
}
a, a:hover{ 
  text-decoration:none; 
}

.d-lg-none{ 
  display:none; 
}
.d-lg-block{ 
  display:block; 
}

#nc_container{
  z-index: 9999999999 !important;
}

/*header*/
header{ 
  position:absolute; 
  z-index:99999999; 
  top:0; 
  left:0; 
  width:100%; 
  transition:all .5s; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
header, header *{ 
  box-sizing:border-box; 
}
.hd_con{ 
  width:100%; 
  margin:0 auto; 
  padding:0 100px; 
  position: relative;
}

.lg > a{ 
  display:block; 
  font-size:20px; 
  line-height:1em; 
  white-space:nowrap;
}
.lg > a > img{ 
  display:block; 
  width:150px; 
  transition: .5s;
}
.mn{ 
  display:flex; 
  align-items:center; 
}

.hd-wrap{
  display: flex; 
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/*gnb*/
.hd_bt{ 
  position:relative; 
  z-index:5; 
}
.gnb{ 
  position:relative; 
  z-index:5;
}
.gnb > ul{ 
  display:flex; 
  flex-flow:row wrap; 
  padding-left: 0; 
  margin-bottom: 0;
}
.gnb > ul > li{ 
  position:relative; 
  z-index:1; 
}
.gnb > ul > li > a{ 
  display:block; 
  padding:40px 20px; 
  font-size:16px; 
  font-weight:400; 
  transition: all .5s; 
  color: #fff; 
  position: relative;
  font-family: 'cg' !important;
}

.gnb > ul > li > a > .bubble{
  display: inline-block;
  height: 21px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 50%;
  transition: 0.3s;
  opacity: 0;
  transform: translateX(-50%);
}
.gnb > ul > li > a:hover > .bubble{
  opacity: 1;
  top: 10px;
}
.gnb > ul > li > a > .bubble::before{
  font-size: 12px;
  font-weight: 400;
  color: #000;
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
}
.gnb > ul > li > a > .bubble::after{
  border-top: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 0px solid transparent;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
#gnblt.gnb > ul > li:nth-child(1) > a > .bubble{
  width: 62px;
}
#gnblt.gnb > ul > li:nth-child(2) > a > .bubble{
  width: 62px;
}
#gnblt.gnb > ul > li:nth-child(3) > a > .bubble{
  width: 82px;
}
#gnblt.gnb > ul > li:nth-child(1) > a > .bubble::before{
  content: "회사소개";
}
#gnblt.gnb > ul > li:nth-child(2) > a > .bubble::before{
  content: "제품소개";
}
#gnblt.gnb > ul > li:nth-child(3) > a > .bubble::before{
  content: "찾아오시는길";
}

#gnbrt.gnb > ul > li:nth-child(1) > a > .bubble{
  width: 85px;
}
#gnbrt.gnb > ul > li:nth-child(2) > a > .bubble{
  width: 62px;
}
#gnbrt.gnb > ul > li:nth-child(3) > a > .bubble{
  width: 62px;
}
#gnbrt.gnb > ul > li:nth-child(1) > a > .bubble::before{
  content: "협력업체안내 ";
}
#gnbrt.gnb > ul > li:nth-child(2) > a > .bubble::before{
  content: "시공사례";
}
#gnbrt.gnb > ul > li:nth-child(3) > a > .bubble::before{
  content: "구매하기";
}

.gnb > ul > li::after{
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #e60012;
  position: absolute;
  right: 10px;
  top: 40px;
  transition: .4s;
  opacity: 0;
}
.gnb > ul > li:hover::after{
  opacity: 1;
}
.gnb > ul > li > ul{ 
  position:absolute; 
  z-index:1; 
  top:100%; 
  left:50%; 
  transform: translateX(-50%); 
  display:none; 
  width: 100%; 
  min-width: 150px; 
  box-sizing: border-box; 
  background-color: #004098; 
  padding:20px 10px 20px; 
  text-align: center;  
  border-radius: 20px;
}
.gnb > ul > li > ul > li{ 
  position:relative; 
  z-index:1; 
  text-align: center;
  padding:10px 0;
}
.gnb > ul > li > ul > li > a{ 
  display:inline-block; 
  font-size:16px; 
  font-weight: 300;
  white-space:nowrap; 
  position: relative;
  color: #fff;
  transition: .4s;
}
.gnb > ul > li > ul > li > a::after{
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #e60012;
  position: absolute;
  right: -12px;
  top: 6px;
  transition: .4s;
  opacity: 0;
}
.gnb > ul > li > ul > li:hover > a{
  font-weight: 600;
}
.gnb > ul > li > ul > li:hover > a::after{
  opacity: 1;
}
.gnb > ul > li > ul > li > ul{ 
  position:absolute; 
  z-index:1; 
  top:-10px; 
  left: calc(100% + 15px); 
  padding: 10px 0; 
  display:none; 
  min-width:150px; 
  box-shadow:0 12px 30px -2px rgba(0,0,0,.1); 
  background-color: #fafafa;
}
.gnb > ul > li > ul > li > ul > li > a{ 
  display:block; 
  padding:10px 15px; 
  font-size:14px; 
}

.hd-mem{
  padding: 15px 1.5rem;
  border-radius: 30px;
  border: 1px solid #fff;
  margin-right: 30px;
}
.hd-mem > ul{
  display: flex;
  align-items: center;
}
.hd-mem > ul > li{
  margin-right: 12px;
  padding-right: 12px;
  position: relative;
}
.hd-mem > ul > li::after{
  content: "";
  width: 1px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: 3px;
  right: 0px;
  transition: .4s;
}
.hd-mem > ul > li:last-child{
  margin-right: 0;
  padding-right: 0;
}
.hd-mem > ul > li:last-child::after{
  display: none;
}
.hd-mem > ul > li > a{
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  transition: .4s;
}


/* menu */
.menu-toggler {
  position: absolute;
  top: 35px;
  right: 4rem;
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 99999;
  transition: all 500ms ease-out;
}
.menu-toggler.open {
  transform: rotate(-45deg);
}
nav.fullscreenNav.open .menu-toggler {
  position: absolute;
  right: 3rem;top: 2rem;
}
nav.fullscreenNav.open .menu-toggler {
  transform: rotate(-45deg);
}
.bar {
  background-color: #fff;
  width: 100%;
  height: 2px;
  border-radius: 0.8rem;
  transition: background .5s ease;
}

.bar.half {
  width: 50%;
}
.bar.top {
  transform-origin: right;
  transition: transform 500ms cubic-bezier(0.54, -0.81, 0.57, 0.57), background .5s ease;
}

.open .bar.top {
  transform: rotate(-90deg) translateX(0.4rem);
}
.bar.bottom {
  align-self: flex-end;
  transform-origin: left;
  transition: transform 500ms cubic-bezier(0.54, -0.81, 0.57, 0.57), background .5s ease;
}
.open .bar.bottom {
  transform: rotate(-90deg) translateX(-0.4rem);
}

header.on .bar{
  background-color: #1d1d1d;
}

.hd-btn{
  position: absolute;
  z-index: 9999999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  top: 50%;
  right: 37px;
  transform: translateY(-50%);
  cursor: pointer;
}
.hd-btn::before{
  content: "";
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translate(-50%,0);
  margin-top: -6px;
  transition:0.3s transform, 0.3s margin-top 0.3s;
}
.hd-btn::after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translate(-50%,0);
  margin-top: 5px;
  transition:0.3s transform, 0.3s margin-top 0.3s;
}
.hd-btn.act::before{
  transform:translate(-50%, 0) rotate(45deg);
  margin-top:0px;
  transition:0.3s transform 0.3s, 0.3s margin-top;
}
.hd-btn.act::after{
  transform:translate(-50%, 0) rotate(-45deg);
  margin-top:0px;
  transition:0.3s transform 0.3s, 0.3s margin-top;
}

/* fixed - 퀵메뉴 */
.fixed-wrap{width: 180px; height: 100vh; padding: 20px; position: fixed; top: 0; right: -180px; z-index: 99999; background-color: #fff; border-left: 1px solid #eee; transition: .5s; display: flex; flex-direction: column; justify-content: center;}
.fixed-wrap.fw-act{right: 0;}

.fixed-btn-wrap{position: absolute; top: 50%; left: -75px; transform: translateY(-50%); transition: .5s;}
.fixed-btn{display: block; width: 50px; height: 50px; border-color: #004098; background-color: #004098; color: #fff; border-radius: 50%; position: relative; cursor: pointer; transition: .5s;}
.fixed-btn > span{font-size: 20px; display: inline-block; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); line-height: 1;}

.fixed-btn.on > span.fb-left{opacity: 1;}
.fixed-btn.on > span.fb-right{opacity: 0;}

.fixed-btn.on.act > span.fb-right{opacity: 1;}
.fixed-btn.on.act > span.fb-left{opacity: 0;}

.fixed-wrap.fw-act .fixed-btn-wrap{left: -60px;}

.fixed-img{display: flex; margin-bottom: 10px;}
.fixed-img img{width: 100%; max-width: 139px;}

.fixed-cont{margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #ddd;}
.fixed-cont.last{margin-bottom: 0; padding-bottom: 0; border-bottom: 0;}

.fixed-cont > ul > li{margin-bottom: 5px;}
.fixed-cont > ul > li:last-child{margin-bottom: 0;}
.fixed-cont > ul > li > a{display: block; width: 100%; text-align: center; border: 1px solid #ddd; font-size: 14px; font-weight: 400; color: #000; padding: 10px; transition: .4s;}
.fixed-cont > ul > li > a:hover{background-color: #004098; color: #fff; border-color: #004098;}

.fixed-cont > ul > li > a > span{display: inline-block; margin-right: 3px; }

.fixed-cont > h5{font-size: 12px; margin-bottom: 5px;}
.fixed-cont > h3{font-size: 16px; margin-bottom: 5px;}
.fixed-cont > p{font-size: 12px;}


@media(max-width:1199px){ 
  .hd_con{ 
    padding:0 15px; 
  }
  .lg > a{ 
    padding:16px 0; 
  }
  .lg > a > img{ 
    width: 120px; 
  }
  .mn{ 
    display:none; 
  }

  .fixed-wrap{display: none;}
  .mo_btn{ 
    display:block;
  }

  .d-none{ 
    display:none; 
  }
  .d-block{ 
    display:block;
 }
  .mo_btn{ 
    display:block; 
  }

  .number{
    display: none;
  }
}


/*wrapper*/
.article_mover{ 
  position:absolute; 
  z-index:-1; 
  bottom:100%; 
}


/*footer*/
footer{ padding:80px 0; background-color: #000;}
footer, footer *{ box-sizing:border-box; }
.ft_con{ width:100%; margin:0 auto; padding:0 100px; }

.ft-logo{
  width: 150px;
  display: flex;
  margin-bottom: 60px;
}
.ft-logo img{
  width: 100%;
}
.ft-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ft-wrap.mb{
  margin-bottom: 35px;
}
.ft-lt{
  width: 49%;
  text-align: left;
}
.ft-rt{
  width: 49%;
  text-align: right;
}
.ft_txt{
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
}
#fnb > ul{
  display: flex;
  justify-content: flex-end;
}
#fnb > ul > li{
  margin-left: 10px;
  padding-left: 10px;
  position: relative;
}
#fnb > ul > li > a{
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
#fnb > ul > li::before{
  content: "";
  width: 1px;
  height: 12px;
  background-color: #ddd;
  position: absolute;
  top: 3px;
  left: 0;
}
#fnb > ul > li:first-child{
  margin-left: 0;
  padding-left: 0;
}
#fnb > ul > li:first-child::before{
  display: none;
}

.ft-mn{
  display: flex;
}
.fnb > ul{
  display: flex;
}
.fnb > ul > li{
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
}
.fnb > ul > li > a{
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  font-family: 'cg' !important;
}
.fnb > ul > li::before{
  content: "";
  width: 1px;
  height: 9px;
  background-color: #ddd;
  position: absolute;
  top: 5px;
  right: 0;
}
.fnb > ul > li:last-child{
  margin-right: 0;
  padding-right: 0;
}
.fnb > ul > li:last-child::before{
  display: none;
}
.ft_cp{
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  font-family: 'cg' !important;
}


/* mediaquery */

@media(min-width:1200px){ 
  .d-lg-none{ 
    display:none; 
  }
  .d-lg-block{ 
    display:block; 
  }
  .d-lg-flex{ 
    display:flex; 
  }

  .hd-btn{
    display: none;
  }

  .hd-mem.pc{
    display: block;
  }
  .hd-mem.mo{
    display: none;
  }
  .mo-fixed{
    display: none;
  }

  .mo_mn_mn{
    display: none;
  }

  .mt-menu{
    width: 100%; 
    height: 100vh; 
    position: fixed; 
    top: -100%; 
    left: 0; 
    background-color: #fff; 
    z-index: 99998; 
    transition: .8s ease-in-out; 
    padding: 0 15px; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mt-menu.mt-open{
    top: 0; 
    box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
  }
  .mt-menu > .mt-ul{width: 100%; max-width: 1230px; display: flex; justify-content: center;}
  .mt-menu > .mt-ul > li{flex: 1 0 auto; margin-right: 1.5rem;}
  .mt-menu > .mt-ul > li:last-child{margin-right: 0;}
  .mt-menu > .mt-ul > li > a{color: #000; font-size: 22px; font-weight: 600; margin-bottom: 1rem; padding-bottom: 1rem; display: block; transition: .4s;}
  .mt-menu > .mt-ul > li > ul > li{margin-bottom: 12px;}
  .mt-menu > .mt-ul > li > ul > li:last-child{margin-bottom: 0;}
  .mt-menu > .mt-ul > li > ul > li > a{color: #666; font-size: 16px; transition: .4s;}
  .mt-logo{margin-bottom: 4rem; text-align: center;}
  .mt-logo img{display: inline-block; width: 300px;}
 
}

@media(max-width:1399px){

  .hd_con{
    padding: 0 30px;
  }
  .ft_con{
    padding: 0 30px;
  }

  .ft-lt{
    width: 59%;
  }
  .ft-rt{
    width: 39%;
  }

}

@media(max-width:1199px){ 
  .d-none{ 
    display:none;
  }
  .d-block{ 
    display:block; 
  }

  header.scr{
    position: fixed;
    background-color: #fff;
  }

  .hd-mem.pc{
    display: none;
  }
  .hd-mem.mo{
    display: block;
  }
  .hd-mem{
    margin-right: 0;
    border: 1px solid #ddd;
  }
  .hd-mem > ul > li > a{
    font-size: 14px;
    color: #000;
  }
  .hd-mem > ul > li::after{
    background-color: #ddd;
  }

  .hd-wrap{
    border-right: 0;
  }
  .hd_con{padding: 0 15px;}

  .hd-btn{
    width: 44px;
    height: 44px;
    right: 15px;
    left: auto;
  }
  .mt-menu{
    width: 100%; 
    height: 100vh; 
    position: fixed; 
    top: 0; 
    right: -101%; 
    background-color: #fff; 
    z-index: 99998; 
    transition: .8s ease-in-out; 
    padding: 0 15px; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
  }
  .mt-menu.mt-open{
    right: 0; 
    box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
  }
  .mo_mn_mn{
    padding: 5rem 15px 2rem;
    width: 100%;
  }
  .mo_mn_mn > li > a{ 
    display:block; 
    padding:15px 0px; 
    font-size:16px; 
    font-weight:500; 
    border-bottom: 1px solid #f2f2f2; 
  }
  .mo_mn_mn > li > ul{ 
    display:none; 
    background-color:#fafafa; 
    padding: 10px 0;
  }
  .mo_mn_mn > li > ul > li > a{ 
    display:block; 
    padding:8px 15px; 
    font-size:14px; 
    font-weight:400; 
    color: #818181;
  }
  
  .mo_mn_mn > li > a.more{
    position: relative;
  }
  .mo_mn_mn > li > a.more::after{
    content: ""; 
    width: 10px; 
    height: 2px; 
    position: absolute; 
    top: 50%; 
    right: 20px; 
    transform: translateY(-50%);
  }
  .mo_mn_mn > li > a.more::before{
    content: ""; 
    width: 2px; 
    height: 10px; 
    position: absolute; 
    top: 50%; 
    right: 24px; 
    transform: translateY(-50%); 
    transition: .3s;
  }
  
  .mo_mn_mn > li > a.more.act::before{
    opacity: 0;
  }

  .mo-fixed{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 8888;
    display: flex;
    background-color: #78161B;
    color: #fff;
  }
  .mo-fixed::after{
    content: "";
    width: 1px;
    height: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .mo-fixed > a{
    flex: 1 1 auto;
    width: 50%;
    padding: 1rem 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
  }
  .mo-fixed > a > span{
    display: inline-block;
    font-size: 20px;
    margin-right: 5px;
    transform: translateY(2px);
  }

  footer{
    padding: 40px 0;
  }
  .ft_con{
    padding: 0 15px;
  }
  .ft-logo{
    max-width: 120px;
    margin: 0 auto 25px;
  }
  .ft-wrap{
    flex-direction: column;
    align-items: center;
  }
  .ft-wrap.mb{
    margin-bottom: 25px;
  }
  .ft-lt{
    width: 100%;
    margin-bottom: 1rem;
  }
  .ft-rt{
    width: 100%;
  }
  .ft_txt{
    font-size: 14px;
    text-align: center;
    word-break: keep-all;
  }
  #fnb > ul{
    justify-content: center;
  }
  #fnb > ul > li > a{
    font-size: 14px;
  }
  #fnb > ul > li::before{
    height: 10px;
  }
  .ft-mn{
    flex-direction: column;
    align-items: center;
  }
  .fnb > ul{
    justify-content: center;
    margin-bottom: 5px;
  }
  .fnb > ul > li > a{
    font-size: 14px;
  }
  .fnb > ul > li::before{
    height: 7px;
  }
  .ft_cp{
    font-size: 12px;
    text-align: center;
  }

}
