ul, ul>li, dl, dl>dd{
  display:inline-block;
  font-size:0;
  line-height:0;
}

.motion {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
}


#wrap{
  box-sizing: border-box;
}
@media only screen and (max-width : 1024px){
  #wrap{
    padding-top:70px;
  }
}
.container{
  max-width:1200px;
  min-width:300px;
  width:100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media only screen and (max-width : 1440px){
  .container{
    max-width:auto;
    width:100%;
  }
}
@media only screen and (max-width : 1024px){
  .container{
    padding-left:10px !important;
    padding-right:10px !important;
  }
}


/*layer*/
.layer{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.8);
  z-index:10;
}
.layer .container{
  position:absolute;
  top:50%;
  left:50%;
  max-width:1024px;
  width:100%;
  padding:50px 80px;
  min-height:70vh;
  -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%);
  background-color:#fff;
  box-sizing: border-box;
}
.layer .container strong.tit, .layer .container span.img, .layer .container p.txt, .layer .container b.date {
  display:inline-block;
  width:100%;
}
.layer .container strong.tit{
  margin-bottom:20px;
  font-size:1.125rem;
  line-height:1.250rem;
  color:#4d4c4c;
}
.layer .container span.img{
  display:flex;
  height:46vh;
  background-color:#f1f1f1;
  justify-content: center;/*가로 중앙정렬*/
  align-items: center;/*세로 중앙정렬*/
  overflow:hidden;
}


.layer .container p.txt{
  margin-top:20px;
  height:38px;
  font-size:0.875rem;
  line-height:1.125rem;
  color:#717171;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.layer .container b.date{
  margin-top:10px;
  font-size:0.813rem;
  line-height:0.813rem;
  color:#5e5e5e;
  opacity:0.6;
}
.layer .container .close{
  position:absolute;
  display: inline-block;
  top:20px;
  right:20px;
  width:30px;
  height:30px;

}
.layer .container .close span{
  position: absolute;
  top: 47%;
  width: 100%;
  height: 1px;
  background-color: #666;
}
.layer .container .close span:nth-child(1){
  transform: rotate(135deg) translateX(0%);
}
.layer .container .close span:nth-child(2){
  transform: rotate(45deg) translateX(0%);
}
.layer .container a.left, .layer .container a.right{
  position:absolute;
  top:50%;
  width:40px;
  height:40px;
  background-color:#fff;
  border:1px solid #ddd;
  border-radius:30px;
  -webkit-transform: translate(-50%,0); -ms-transform: translate(-50%,0); transform: translate(-50%,0);
  box-sizing: border-box;
  z-index:3;
}
.layer .container a.left{
  left:40px
}
.layer .container a.right{
  right:0
}
.layer .container a.left>span, .layer .container a.right>span{
  position:absolute;
  width:13px;
  height:2px;
  background-color:#666;
  z-index:3;
}
.layer .container a.left span:nth-child(1){
  top:15px;
  left:12px;
  transform: rotate(145deg);
}
.layer .container a.left span:nth-child(2){
  top:22px;
  left:12px;
  transform: rotate(-145deg);
}
.layer .container a.right span:nth-child(1){
  top:15px;
  left:14px;
  transform: rotate(-145deg);
}
.layer .container a.right span:nth-child(2){
  top:22px;
  left:14px;
  transform: rotate(145deg);
}
@media only screen and (max-width : 1440px){
  .layer .container{
    padding:50px 80px !important;
  }
}
@media only screen and (max-width : 860px){
  .layer .container{
    top:5%;
    left:5%;
    width:90%;
    height:90%;
    padding: 50px 20px  !important;
    -webkit-transform: translate(0,0); -ms-transform: translate(0,0); transform: translate(0,0);
  }
  .layer .container span.img{
    height:calc(100% - 20px - 38px - 13px - 60px )
  }
  .layer .container a.left, .layer .container a.right{
    background-color:rgba(255,255,255,0.6);
  }
  .layer .container a.left{
    left:50px
  }
  .layer .container a.right{
    right:10px
  }
}



#header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  box-sizing: border-box;
  z-index:3;
  transition: background-color 0.2s linear;
}
#header>.container{
  position:relative;
  display:flex;
  margin: 0 auto;
  padding-top:30px;
  justify-content:flex-start;
  box-sizing: border-box;
}
#header .container a.logo{
  display:inline-block;
  width:230px;
  padding-top:5px;

}
#header .container a.logo>img, #header .container a.logoOn>img{
  width:230px;
}
#header .container .box{
  display:none;
}
#header .container a.logoOn{
  display:none;
}

#header.on{
  background-color:#fff;
  border-bottom:none;
  transition: background-color 0.2s linear;
  border-bottom:1px solid #ddd;
}
#header.on .container a.logoOn{
  display:inline-block;
  padding-top:5px;
}
#header.on .container a.logo{
  display:none;
}



.menuTrigger,
.menuTrigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menuTrigger {
  position: relative;
  width: 30px;
  height: 24px;
}

.menuTrigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #333;
  border-radius: 4px;
}
.menuTrigger span:nth-of-type(1) {
  top: 0;
}
.menuTrigger span:nth-of-type(2) {
  top: 10px;
}
.menuTrigger span:nth-of-type(3) {
  bottom: 0;
}
#header .container .box a.telTrigger{
  display:flex;
  height:100%;
  /*width:30px;
  height:30px;
  margin-right:7px;
  padding-top:4px;
  text-align:center;
  border-radius:20px;
  background-color:#f15a22;*/
  margin-right:7px;
  justify-content: center;/*가로 중앙정렬*/
  align-items: center;/*세로 중앙정렬*/
}
#header .container .box a.telTrigger i{
  display:inline-block;
  width:30px;
  height:30px;
  padding-top:4px;
  text-align:center;
  border-radius:20px;
  background-color:#31427a;
  animation: 1.2s ease-out;
  animation-name: telTriggermove;
  animation-iteration-count: infinite;
}

@keyframes telTriggermove {
0% {
  /*margin-right:0px*/
  background-color:#f15a22;
}
50%{
  background-color:#f7941d;
}
100%{
  background-color:#f15a22;
}
}



@media only screen and (max-width : 1440px){
  #header>.container{
    width:100%;
    max-width:100% !important;
    padding-left:20px;
  }
}
@media only screen and (max-width : 1024px){
  #header{
    display:flex;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    min-height:70px;
    height:70px;
    background-color:#fff;
    border-bottom:1px solid #e3e3e3;
    z-index:6;
  }
  #header .container{
    padding: 0 10px;
    align-items: center;/*세로 중앙정렬*/
  }
  #header .container .box{
    display:inline-block;
    margin-left:auto;
  }
  #header .container a.logo{
    display:none;
  }
  #header .container a.logoOn{
    display:inline-block;
  }

}


/*퀵메뉴*/
.quick{
  position:fixed;
  display:flex;
  top:0;
  right:50px;
  width:100px;
  flex-flow:column;/*요소 세로정렬*/
  z-index:2;
}
.quick>dd{
  width:100%;
  height:100px;
  box-sizing: border-box;

}
.quick>dd>a{
  display:flex;
  width:100%;
  height:100%;
  flex-flow:column;/*요소 세로정렬*/
  justify-content: center;/*가로 중앙정렬*/
  align-items: center;/*세로 중앙정렬*/
}
.quick>dd strong{
  display:inline-block;
  width:100%;
  font-size:0.938rem;
  line-height:0.938rem;
  text-align:center;
  font-weight:400;
}
.quick>dd i{
  position:relative;
  display:inline-block;
  width:21px;
  height:21px;
  margin-top:6px;
  font-size:0;
  line-height:0;
  text-align: center;
  border-radius:21px;
  box-sizing: border-box;
}
.quick>dd i>font{
  display:inline-block;
  position:absolute;
  top:10px;
  width:26%;
  height:1px;
  font-size:0;
  line-height:0;
  -webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
}
.quick>dd i>font.left{
  left:32%;
  transform: rotate(45deg);
}
.quick>dd i>font.right{
  right:26%;
  transform: rotate(-45deg);
}

.quick>dd:nth-child(1){
  background-color:#fff;
  border:1px solid #ddd;
}
.quick>dd:nth-child(2){
  background-color:#0db14b;
}
.quick>dd:nth-child(3){
  background-color:#f58220;
}
.quick>dd:nth-child(4){
  background-color:#fff;
  border:1px solid #ddd;
}

.quick>dd:nth-child(1) strong{
  font-weight:600;
}
.quick>dd:nth-child(1) strong, .quick>dd:nth-child(4) strong{
  color:#2d803b;
}

.quick>dd:nth-child(1) i, .quick>dd:nth-child(4) i{
  border:1px solid #2d803b;
}
.quick>dd:nth-child(1):hover i, .quick>dd:nth-child(4):hover i{
  background-color:rgba(45, 128, 59, 0.3);
}
.quick>dd:nth-child(1) i>font, .quick>dd:nth-child(4) i>font{
  background-color:#2d803b;
}


.quick>dd:nth-child(2) strong, .quick>dd:nth-child(3) strong{
  color:#fff;
}
.quick>dd:nth-child(2) i, .quick>dd:nth-child(3) i{
  border:1px solid #fff;
}
.quick>dd:nth-child(2):hover i, .quick>dd:nth-child(3):hover i{
  background-color:rgba(255, 255, 255, 0.3);
}
.quick>dd:nth-child(2) i>font, .quick>dd:nth-child(3) i>font{
  background-color:#fff;
}
@media only screen and (max-width : 1440px){
  .quick{
    right:0;
  }
}
@media only screen and (max-width : 1176px){
  .quick{
    width:80px;
  }
}
@media only screen and (max-width : 1024px){
  .quick{
    display:none;
    top:70px;
    width:70px;
  }
  .quick>dd{
    height:70px;
  }
  .quick>dd i{
    margin-top:4px;
    width:16px;
    height:16px;
  }
  .quick>dd i>font{
    top:7px;
  }
}



#nav{
  display:flex;
  margin-left:3vw;
  justify-content:center;/*가로 정렬*/
  align-items: center;/*세로 중앙정렬*/
}
#nav>li{
  position:relative;
  display:flex;
  width:170px;
  min-height:70px;
  justify-content: center;/*가로 중앙정렬*/
  align-items: center;/*세로 중앙정렬*/

  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;

}
#nav>li:first-child{
  width:170px;
}
#nav>li>a{
  position:relative;
  display:flex;
  height:70px;
  padding-bottom:15px;
  /*padding: 0 30px;*/
  font-size:0.938rem;
  line-height:1.1rem;
  color:#fff;
  justify-content: center;/*가로 중앙정렬*/
  align-items: center;/*세로 중앙정렬*/
  box-sizing: border-box;
}


#nav>li:hover>a, #nav>li.active>a{
  color:#fff;
  font-weight:500;
  color:#9cff00;
  opacity:1;
}

#nav .line{
  position: absolute;
  display: inline-block;
  bottom:0;
  height: 1px;
  width: 0%;
  background: #9cff00;
  left:50%;
  z-index:7;
}
/*#nav .motion {
	-webkit-transition: background-color  0.3s ease-out, color 0.3s ease-out;
	   -moz-transition: background-color  0.3s ease-out, color 0.3s ease-out;
	     -o-transition: background-color  0.3s ease-out, color 0.3s ease-out;
	        transition: background-color  0.3s ease-out, color 0.3s ease-out;

}*/


#nav>li:hover .line, #nav>li.active .line{
  width:100% !important; left:0% !important;
}

#nav>li:not(.active) a:before, #nav>li:not(.active) a:after{
	content: "";
	left:0;
	bottom:-5px;
	width:100%;
	position:absolute;
	transition: all 0.5s ease;
}
.dept2{
  position:fixed;
  top:100px;
  left:0;
  width:100%;
  /*min-height:100px;*/
  background-color:#fff;
  border-bottom:1px solid #2d803c;
}
.dept2>.container{
  display:block !important;
  width:1200px;
  padding-left:230px;
  font-size:0;
  line-height:0;
  text-align:left;
  box-sizing: border-box;
}
.dept2>.container>ul{
  width:170px;
  height:200px;
  padding: 25px 0;
  vertical-align:top;
}
.dept2>.container>ul:first-child{
  margin-left:3vw;
  width:170px;
}

.dept2>.container>ul>li{
  width:100%;

  vertical-align:top;
}
.dept2>.container>ul>li>a{
  display:inline-block;
  width:100%;
  padding:9px 0;
  font-size:0.875rem;
  line-height:0.938rem;
  opacity:0.7;
  text-align: center;

  -webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
}
.dept2>.container>ul>li.long>a{
  letter-spacing:-0.06rem;
}
.dept2>.container>ul>li>a:hover, .dept2>.container>ul>li:hover>a, .dept2>.container>ul>li.active>a{
  color:#000 !important;
  opacity:1;
}
.dept2>.container>ul>li>a>font{
  display:inline-block;
  width:100%;
}
#header.on .dept2{
  border-top:1px solid #ddd;
}
#header.on #nav>li>a{
  color:#000;
}
#header.on #nav>li:hover>a, #header.on #nav>li.active>a{
  color:#2d803c;
}

#header.on .dept2>.container>ul>li>a{
  color:#000;
}
#nav .line{
  position: absolute;
  display: inline-block;
  bottom:-1px;
  height: 1px;
  width: 0%;
  background: #2d803c;
  left:50%;
  z-index:7;
}


@media only screen and (max-width : 1440px){
  #nav>li{
    justify-content: center;/*가로 중앙정렬*/
    align-items: center;/*세로 중앙정렬*/
  }
  .dept2>.container{
    width:100%;
    max-width:100%;
    padding-left:250px;/*20+230*/
  }
}
@media only screen and (max-width : 1176px){
  #nav>li{
    width:120px;
  }
  .dept2>.container>ul{
    width:120px;
  }
}
@media only screen and (max-width : 1024px){
  #nav, .dept2{
    display:none;
  }
}







/*모바일 메뉴*/
.mBg{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: #000;
  opacity:0.5;
  z-index:100;
}
#mNav{
  position:fixed;
  top:0;
  right:0;
  width:320px;
  height:100%;
  padding-top:70px;
  box-sizing: border-box;
  background-color: #ffffff;
  z-index:100;
  overflow: hidden;
}
#mNav .logo{
  position:fixed;
  display: inline-block;
  top:20px;
  left:8px;
  z-index:5;
}
#mNav .logo img{
 width:160px;
}
#mNav .closeTrigger{
  position:fixed;
  display: inline-block;
  top:20px;
  right:10px;
  width:30px;
  height:30px;
  z-index:5;
}
.closeTrigger span{
  position: absolute;
  top: 47%;
  width: 100%;
  height: 3px;
  border-radius:2px;
  background-color: #333;
}
.closeTrigger span:nth-child(1){
  transform: rotate(135deg) translateX(0%);
}
.closeTrigger span:nth-child(2){
  transform: rotate(45deg) translateX(0%);
}
#mNav>ul{
  display: inline-block;
  width:100%;
  border-top:1px solid #eee;
  overflow:hidden;
}
#mNav>ul>li{
  display: inline-block;
  width:100%;
  min-height:48px;
  border-bottom:1px solid #eee;
}
#mNav>ul>li:last-child{
  border-bottom:1px solid #eee;
}
#mNav>ul>li .depth2{
  width:100%;

}
#mNav>ul>li .depth2>ul{
  display:inline-block;
  width:100%;
}
#mNav>ul>li .depth2>ul>li{
  display:inline-block;
  width:100%;
  height:36px;
  padding-left:0;
  background-color:#fff;

}
#mNav>ul>li .depth2>ul>li:first-child{
  padding-top:10px;
  height:46px;
  border-top:1px solid #eee !important;
}
#mNav>ul>li .depth2>ul>li:last-child{
  padding-bottom:10px;
  height:46px;

}


#mNav>ul>li .depth2>ul>li>a{
  display: inline-block;
  width:100%;
  height:100%;
  padding-left:30px;
  line-height:36px;
  font-size:0.938rem;
  box-sizing:border-box;
  opacity:0.7;
}
#mNav>ul>li:hover{
  color:#202a65;
}
#mNav>ul>li>a{
  display: inline-block;
  width:100%;
  height:48px;
  padding-left:20px;
  font-weight:400;
  line-height:48px;
  font-size:0.938rem;
  letter-spacing:-0.01rem;
  box-sizing: border-box;
}


.visual{
  position:relative;
  width:100%;
  height:1370px;
  /*height:calc(100vh - 80px);*/
  overflow:hidden;
}
.visual .web{
  display:block;
}
.visual .mob{
  display:none;
  position:relative;
  width:100%;
  background-color:#eee;
}

@media only screen and (max-width : 1024px){
  .visual{
    height:auto;
  }
  .visual .web{
    display:none;
  }
  .visual .mob{
    display:block;
  }
}


.visual .web div.title{
  position:absolute;
  top:180px;
  left:50%;
  max-width:1200px;
  width:100%;
  -webkit-transform: translate(-50%,0); -ms-transform: translate(-50%,0); transform: translate(-50%,0);
  text-align:left;
}
.visual .web div.title b, .visual .web div.title strong, .visual .web div.title span{
  display:inline-block;
  width:100%;
  color:#fff;
}
.visual .web div.title b{
  font-size:1.750rem;
  font-weight:300;
}
.visual .web div.title b>font{
  font-weight:500;
}
.visual .web div.title strong{
  margin-top:10px;
  font-size:3.25rem;
  line-height:3.5rem;
  letter-spacing:-0.3rem;
}
.visual .web div.title strong>font{
  display:inline-block;
  width:100%;
  color:#9cff00;
}
.visual .web div.title span{
  margin-top:20px;
  font-size:0.875rem;
  line-height:1.125rem;
  letter-spacing:-0.02rem;
  font-weight:300;
  opacity:0.7;
}
.visual .web div.title span>font{
  display:inline-block;
  width:100%;
}

.visual .mob div.title{
  position:absolute;
  top:50%;
  left:50%;
  width:100%;
  padding: 0 20px;
  text-align:center;
  -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%);
  box-sizing: border-box;
  z-index:2;
}
.visual .mob div.title .motion {
	-webkit-transition: all 0.5s ease-out;
	   -moz-transition: all 0.5s ease-out;
	     -o-transition: all 0.5s ease-out;
	        transition: all 0.5s ease-out;
}
.visual .mob div.title b, .visual .mob div.title strong, .visual .mob div.title span{
  display:inline-block;
  width:100%;
  color:#fff;
  word-break: keep-all;
}
.visual .mob div.title b{
  font-size:1.750rem;
  font-weight:300;
}
.visual .mob div.title b>font{
  font-weight:500;
}
.visual .mob div.title strong{
  margin-top:10px;
  font-size:4.375rem;
  line-height:4.688rem;
  letter-spacing:-0.3rem;
}
.visual .mob div.title strong>font{
  display:inline-block;
  width:100%;
  color:#9cff00;
}
.visual .mob div.title span{
  margin-top:20px;
  font-size:0.875rem;
  line-height:1.125rem;
  letter-spacing:-0.02rem;
  font-weight:300;
  opacity:0.7;
}
.visual .mob div.title span>font{
  display:inline-block;
  width:100%;
}
@media only screen and (max-width : 1440px){
  .visual .web div.title{
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width : 860px){
  .visual .mob div.title b{
    font-size:1.250rem;
  }
  .visual .mob div.title strong{
    font-size:3.125rem;
    line-height:3.438rem;
    letter-spacing:-0.2rem;
  }
  .visual .mob div.title span{
    width:540px;
  }
  .visual .mob div.title span>font{
    display:inline;
  }
}


@media only screen and (max-width : 640px){
  .visual .mob div.title{
    padding: 0 10px;
  }
  .visual .mob div.title b{
    font-size:1.250rem;
  }
  .visual .mob div.title strong{
    margin-top:5px;
    font-size:2.188rem;
    line-height:2.500rem;
    letter-spacing:-0.1rem;
  }
  .visual .mob div.title span{
    width:100%;
    font-size:0.750rem;
    line-height:0.875rem;
  }
}
@media only screen and (max-width : 360px){
  .visual .mob div.title b{
    font-size:1rem;
  }
  .visual .mob div.title strong{
    font-size:1.875rem;
    line-height:2.188rem;
  }
  .visual .mob div.title span{
    width:100%;
    font-size:0.688rem;
    line-height:0.750rem;

  }
}




.visual .container{
  display:flex;
  position:absolute;
  top:500px;
  left:50%;
  max-width:1200px;
  width:100%;
  -webkit-transform: translate(-50%,0); -ms-transform: translate(-50%,0); transform: translate(-50%,0);
  justify-content: center;/*가로 정렬*/
  align-items: top;/*세로 정렬*/

}
.visual .container>ul{
  width:100%;
}
.visual .container>ul>li{
  position:relative;
  width:23%;
  margin-left:2%;
  margin-bottom:30px;
  vertical-align:top;
}
.visual .container>ul>li:nth-child(4n+1){
  margin-left:0;
}
.visual .container>ul>li>a>span{
  position:relative;
  display:inline-block;
  width:100%;
  height:190px;
  border-radius:20px;
  border:2px solid rgba(156,255,0,0.0);
}
.visual .container>ul>li:nth-child(1)>a>span{
  background: url(../../img/visualE01.jpg) center center no-repeat;
  background-size:300px;
}
.visual .container>ul>li:nth-child(2)>a>span{
  background: url(../../img/visualE02.jpg) center center no-repeat;
  background-size:300px;
}
.visual .container>ul>li:nth-child(3)>a>span{
  background: url(../../img/visualE03.jpg) center center no-repeat;
  background-size:300px;
}
.visual .container>ul>li:nth-child(4)>a>span{
  background: url(../../img/visualE04.jpg) center center no-repeat;
  background-size:300px;
}
.visual .container>ul>li:nth-child(5)>a>span{
  background: url(../../img/visualE05.jpg) center center no-repeat;
  background-size:300px;
}
.visual .container>ul>li:nth-child(6)>a>span{
  background: url(../../img/visualE06.jpg) center center no-repeat;
  background-size:300px;
}
.visual .container>ul>li:nth-child(7)>a>span{
  background: url(../../img/visualE07.jpg) center center no-repeat;
  background-size:300px;
}
.visual .container>ul>li:nth-child(8)>a>span{
  background: url(../../img/visualE08.jpg) center center no-repeat;
  background-size:300px;
}
.visual .container>ul>li:nth-child(9)>a>span{
  background: url(../../img/visualE09.jpg) center center no-repeat;
  background-size:300px;
}
.visual .container>ul>li:nth-child(10)>a>span{
  background: url(../../img/visualE10.jpg) center center no-repeat;
  background-size:300px;
}
.visual .container>ul>li:nth-child(11)>a>span{
  background: url(../../img/visualE11.jpg) center center no-repeat;
  background-size:300px;
}
.visual .container>ul>li:nth-child(12)>a>span{
  background: url(../../img/visualE12.jpg) center center no-repeat;
  background-size:300px;
}
.visual .container>ul>li>a>span:hover{
  border:2px solid rgba(156,255,0,1);
  background-size:320px;
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}
.visual .container>ul>li>a>span:not(:hover){
  -webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
}
.visual .container>ul>li>a>strong{
  display:flex;
  margin-top:10px;
  width:100%;
  padding:0 5px;
  box-sizing: border-box;
  justify-content: flex-start;;/*가로 정렬*/
  align-items:center
}
.visual .container>ul>li.long>a>strong{
  display:block;
  text-align: center;
}
.visual .container>ul>li>a>strong>b, .visual .container>ul>li>a>strong>font{
  display:inline-block;
  font-size:0.875rem;
  line-height:0.875rem;
  color:#fff;
}
.visual .container>ul>li.long>a>strong>b{
  width:100%;
  padding-bottom:3px;
}
.visual .container>ul>li>a>strong>b{
  padding-right:5px;
  font-family: 'GmarketSansBold';
  letter-spacing:-0.02rem;
  text-transform:uppercase;
}
.visual .container>ul>li>a>strong>b>font{
  display:inline-block;
  width:100%;
}
.visual .container>ul>li>a>strong>font{
  padding-bottom:3px;
  font-weight:400;
}
@media only screen and (max-width : 1440px){
  .visual .container{
    padding: 0 20px;
    box-sizing: border-box;
  }
  .visual .container>ul>li>a>strong{
    display:block;
    text-align: center;
  }
  .visual .container>ul>li>a>strong>b{
    width:100%;
    padding-bottom:3px;
  }
}
@media only screen and (max-width : 1024px){
  .visual .container{
    position:relative;
    top:auto;
    left:auto;
    padding-top:50px;
    padding-bottom:30px;
    padding-left:10px;
    padding-right:10px;
    -webkit-transform: translate(0,0); -ms-transform: translate(0,0); transform: translate(0,0);
    background-color:#f1f1f1;
  }
  .visual .container>ul>li{
    margin-left:2.5%;
  }
  .visual .container>ul>li>a>span{
    border:2px solid rgba(0,0,0,0.1);
  }
  .visual .container>ul>li>a>span:hover{
    border:2px solid rgba(0,0,0,0.3);

  }
  .visual .container>ul>li>a>strong>b, .visual .container>ul>li>a>strong>font{
    color:#333;
  }
  .visual .container>ul>li>a>strong>b{
    padding-bottom:0;
    font-size:0.813rem;
    line-height:0.813rem;
  }
}
@media only screen and (max-width : 860px){
  .visual .container>ul>li{
    width:32%;
    margin-left:2%;
  }
  .visual .container>ul>li:nth-child(4n+1){
    margin-left:2%;
  }
  .visual .container>ul>li:nth-child(3n+1){
    margin-left:0;
  }
}
@media only screen and (max-width : 640px){
  .visual .container>ul>li{
    width:49%;
    margin-left:2%;
    margin-bottom:15px;
  }
  .visual .container>ul>li:nth-child(4n+1){
    margin-left:2%;
  }
  .visual .container>ul>li:nth-child(3n+1){
    margin-left:2%;
  }
  .visual .container>ul>li:nth-child(2n+1){
    margin-left:0;
  }
  .visual .container>ul>li>a>span{
    height:140px;
    border-radius:10px;
  }
  .visual .container>ul>li>a>strong>b{
    font-size:0.688rem;
    line-height:0.750rem;
  }
  .visual .container>ul>li.long>a>strong>b{
    height:12px;
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media only screen and (max-width : 360px){
  .visual .container>ul>li>a>span{
    height:100px;
  }
  .visual .container>ul>li>a>strong>font{
    font-size:0.688rem;
    line-height:0.688rem;
  }
}


.visual .visual_imgArea{
	position:absolute;
	top:0;
	left:0;
	z-index:-2;
	visibility:hidden;
	opacity:1;
	width:100%;
	height:100%;
	text-align:center;
	-webkit-transition: all 2s; -moz-transition: all 2s; -ms-transition: all 2s; -o-transition: all 2s; transition: all 2s;
}
.visual .visual_imgAreaActive{
	visibility:visible; opacity:1; top:0;
}
.visualM_imgArea{
  width:100%;

}
.visualM_imgArea>img{
  width:100%;
}

#visual_bg1{
	background: url(../../img/visual01.jpg) top center no-repeat #000;
  background-size: cover;

}
#visual_bg2{
	background: url(../../img/visual01.jpg) top center no-repeat;
	background-size: cover;
}
#visual_bg3{
	background: url(../../img/visual01.jpg) top center no-repeat;
	background-size: cover;
}
.mainMobVisual{
  width:100%;
  overflow:hidden;
}
.mainMobVisual>div{
	position:absolute;
}



/*이유*/
.reason{
  margin-top:80px;
  margin-bottom:80px;
}
.reason .container{
  display:flex;
  justify-content:flex-start;;/*가로 중앙정렬*/
  align-items: center;/*세로 중앙정렬*/
}

.reason>div{
  display:inline-block;
}
.reason .tit{
  width:270px;
}
.reason .tit b, .reason .tit span, .reason .tit strong{
  display:inline-block;
  width:100%;
}
.reason .tit b{
  font-size:1.75rem;
  line-height:2rem;
  letter-spacing:-0.1rem;
  color:#3d3d3d;
}
.reason .tit span{
  margin-top:5px;
  font-size:1.313rem;
  line-height:1.313rem;
  font-weight:100;
}
.reason .tit strong{
  font-size:2.75rem;
  line-height:2.75rem;
  color:#2d803b;
  letter-spacing:-0.2rem;
}
.reason .img{
  width:375px;
  height:375px;
  margin: 0 30px;
  border-radius:300px;
  background: url(../../img/reason01.jpg) center center no-repeat;
  background-size:400px;
}
.reason dl.txt{
  width:calc(100% - 270px - 375px - 60px);
}
.reason dl.txt>dd{
  position:relative;
  padding-left:55px;
  margin-top:30px;
  width:100%;

  box-sizing: border-box;
}
.reason dl.txt>dd:first-child{
  margin-top:0;
}
.reason dl.txt>dd i, .reason dl.txt>dd strong, .reason dl.txt>dd span{
  display:inline-block;
}
.reason dl.txt>dd i{
  position:absolute;
  display:inline-block;
  top:3px;
  left:0;
  font-family: 'GmarketSansBold';
  font-size:2.250rem;
  line-height:2.250rem;
  letter-spacing:-0.2rem;
  color:#2d803b;
  font-style:normal;
}
.reason dl.txt>dd:first-child i{
  letter-spacing:-0.02rem;
}
.reason dl.txt>dd strong{
  width:100%;
  font-size:1.5rem;
  line-height:1.5rem;
  color:#3d3d3d;
  font-weight:500;
}
.reason dl.txt>dd span{
  width:100%;
  margin-top:10px;
  font-size:0.875rem;
  line-height:1.125rem;
  word-break: keep-all;
  color:#525252;
}
.reason dl.txt>dd span>font{
  display:inline-block;
  width:100%;
}
@media only screen and (max-width : 1440px){
  .reason .container{
    padding: 0 20px;
    box-sizing: border-box;
  }
  .reason .img{
    width:320px;
    height:320px;
  }
  .reason dl.txt{
    width:calc(100% - 270px - 320px - 60px);
  }
  .reason dl.txt>dd span>font{
    display:inline;
    width:100%;
  }
}
@media only screen and (max-width : 1176px){
  .reason dl.txt>dd span{
    width:100%;
    margin-top:10px;
    font-size:0.813rem;
    line-height:1.125rem;
    word-break: keep-all;
    color:#525252;
  }
}
@media only screen and (max-width : 1024px){
  .reason .container{
    padding: 0 10px;
    flex-flow:column;/*요소 세로정렬*/
    box-sizing: border-box;
  }
  .reason .tit{
    width:100%;
    text-align:center;
  }
  .reason .tit b, .reason .tit span, .reason .tit strong{
    text-align: center;
  }
  .reason .img{
    margin:30px 0;
  }
  .reason dl.txt{
    width:100% !important;
  }
  .reason dl.txt>dd{
    width:32%;
    margin-top:0;
    margin-left:2%;
    padding-left:0;
    vertical-align:top;
    -webkit-transition: all 0.3s ease-out;
       -moz-transition: all 0.3s ease-out;
         -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
  }
  .reason dl.txt>dd:first-child{
    margin-left:0;
  }
  .reason dl.txt>dd i{
    position:relative;
    top:auto;
    left:auto;
    width:100%;
    text-align: center;
  }
  .reason dl.txt>dd strong, .reason dl.txt>dd span{
    text-align: center;
  }
}
@media only screen and (max-width : 860px){
  .reason .tit b, .reason .tit span{
    font-size:1.563rem;
    line-height:1.750rem;
  }
  .reason .tit strong{
    font-size:2.500rem;
    line-height:2.500rem;
  }
  .reason dl.txt>dd i{
    font-size:1.563rem;
  }
  .reason dl.txt>dd strong{
    font-size:1.563rem;
    line-height:1.563rem;
  }
}
@media only screen and (max-width : 640px){
  .reason dl.txt>dd{
    width:100%;
    margin-left:0;
    margin-top:15px;
  }
}
@media only screen and (max-width : 360px){
  .reason .img{
    width:280px;
    height:280px;
  }
}


/*기타 etc*/
.etc{
  padding-top:80px;
  padding-bottom:80px;
  background: url(../../img/etcBg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.etc ul{
  width:100%;
}
.etc ul>li{
  width:23.5%;
  margin-left:2%;
}
.etc ul>li:first-child{
  margin-left:0;
}
.etc ul>li strong, .etc ul>li span{
  display:inline-block;
  width:100%;
  text-align: center;
}
.etc ul>li strong{
  margin-bottom:15px;
  font-size:1.250rem;
  line-height:1.250rem;
  color:#fff;
  font-weight:300;
}
.etc ul>li span{
  height:200px;
}
.etc ul>li:nth-child(1) span{
  background: url(../../img/etc01.jpg) center center no-repeat;
  background-size:300px;
}
.etc ul>li:nth-child(2) span{
  background: url(../../img/etc02.jpg) center center no-repeat;
  background-size:300px;
}
.etc ul>li:nth-child(3) span{
  background: url(../../img/etc03.jpg) center center no-repeat;
  background-size:300px;
}
.etc ul>li:nth-child(4) span{
  background: url(../../img/etc04.jpg) center center no-repeat;
  background-size:300px;
}
.etc ul>li:hover span{
  background-size:320px;
  -webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
}
.etc ul>li:not(:hover) span{
  background-size:300px;
  -webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
}
@media only screen and (max-width : 1440px){
  .etc .container{
    padding:0 20px;
  }
}
@media only screen and (max-width : 860px){
  .etc ul>li{
    width:48.5%;
    margin-left:3%;
    margin-top:30px;
  }
  .etc ul>li:first-child, .etc ul>li:nth-child(2){
    margin-top:0;
  }
  .etc ul>li:first-child, .etc ul>li:nth-child(3){
    margin-left:0;
  }
  .etc ul>li strong{
    font-weight:500;
  }
  .etc ul>li span{
    height:210px;
    background-size:cover;
  }
  .etc ul>li:hover span{
    background-size:cover;

  }
  .etc ul>li:not(:hover) span{
    background-size:cover;
  }
}
@media only screen and (max-width : 460px){
  .etc ul>li{
    width:100%;
    margin-left:0;
    margin-top:30px;
  }
  .etc ul>li:first-child, .etc ul>li:nth-child(2){
    margin-top:30px;
  }
}



/*시공사례*/
.example{
  padding-top:80px;
  padding-bottom:80px;
}
.example .container{

}
.example strong.title{
  position:relative;
  display:inline-block;
  width:100%;
  padding-bottom:50px;
  font-size:2.250rem;
  line-height:2.250rem;
  letter-spacing:-0.15rem;
  text-align: center;
}
.example strong.title a.more{
  top:15px;
}
.example ul{
  width:100%;
}
.example ul>li{
  width:22.75%;
  margin-left:3%;
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}
.example ul>li:first-child, .example ul>li:nth-child(4n+1){
  margin-left:0;
}
.example ul>li span.img{
  position:relative;
  display:inline-block;
  width:100%;

  height:220px;
  background-color:#f1f1f1;
  border-radius:20px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}
.example ul>li span.img>img{
  position:absolute;
  top:-50%;
  left:-50%;

  max-width:none !important;

}
.example ul>li>a:hover span.img>img{
  transform: scale(1.05);
  -webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;

}
.example ul>li>a:not(:hover) span.img>img{
  max-width:none !important;
  -webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
}
.example ul>li div{
  margin-top:20px;
}
.example ul>li div>strong, .example ul>li div>span, .example ul>li div>b{
  display:inline-block;
  width:100%;
  color:rgba(0, 0, 0, 0.6);
  font-weight:500;
  letter-spacing:-0.05rem;
}
.example ul>li div>strong{
  font-size:1.125rem;
  line-height:1.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.example ul>li div>span{
  margin-top:15px;
  height:42px;
  font-size:0.875rem;
  line-height:1.250rem;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.example ul>li div>b{
  margin-top:15px;
	font-size:0.750rem;
	line-height:0.750rem;
	font-weight:600 !important;
  opacity:0.6;
}
.example ul>li>a:hover div>strong, .example ul>li>a:hover div>span, .example ul>li>a:hover div>b{
  color:rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.1s ease-out;
	   -moz-transition: all 0.1s ease-out;
	     -o-transition: all 0.1s ease-out;
	        transition: all 0.1s ease-out;
}
@media only screen and (max-width : 1440px){
  .example .container{
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width : 1024px){
  .example ul>li span.img{
    height:160px;
  }
}
@media only screen and (max-width : 860px){
  .example ul>li{
    width:49%;
    margin-left:2%;
    margin-top:35px;
  }
  .example ul>li:first-child, .example ul>li:nth-child(2){
    margin-top:0;
  }
  .example ul>li:nth-child(2n+1){
    margin-left:0;
  }
}
@media only screen and (max-width : 640px){
  .example ul>li span.img{
    height:120px;
    border-radius:10px;
  }
  .example ul>li div>strong{
    font-size:1.063rem
  }
  .example ul>li div>span{
    margin-top:10px;
  }
  .example ul>li div>b{
    margin-top:10px
  }
}

/*공지사항 & 영상*/
.boardMovie{
  padding-top:0;
  padding-bottom:80px;
}
.boardMovie .container{
  display:flex;
  justify-content:flex-start;/*가로 중앙정렬*/
  align-items: center;/*세로 중앙정렬*/
}
.boardMovie .container .notice{
  position:relative;
	display:inline-block;
	width:625px;
	vertical-align:top;
}
.boardMovie a.more{
  top:20px;
}
.boardMovie .container .notice>ul.tab{
  display:inline-block !important;
	width:100%;
	height:60px;
  margin-bottom:30px !important;
  text-align:left;

	border-top:1px solid rgba(0, 0, 0 ,0.3);
	border-bottom:1px solid rgba(0, 0, 0 ,0.3);

}
.boardMovie .container .notice>ul.tab>li{
	position:relative;
	width:110px;
	height:100%;
  border:none;
}
.boardMovie .container .notice>ul.tab>li>a{
	display:flex;
	position:absolute;
	top:-1px;
	left:0;
	width:100%;
	height:60px;
	font-size:1.375rem;
  color:rgba(45, 128, 59 ,1);
	text-align:center;
  justify-content: center;/*가로 정렬*/
  align-items: center;/*세로 정렬*/
}
.boardMovie .container .notice>ul.tab>li:hover>a, .boardMovie .container .notice>ul.tab>li.active>a{
	color:rgba(45, 128, 59 ,1);
	font-weight:500;
  border-left:none !important;
  border-right:none !important;
	border-top:1px solid rgba(45, 128, 59 ,1);
	border-bottom:1px solid rgba(45, 128, 59 ,1);
}
.boardMovie .container .notice>.list{
	display:inline-block;
	position:relative;
	width:100%;
	padding-left:305px;
	text-align:left;
}
.boardMovie .container .notice>.list>span.img{
	display:inline-block;
	position:absolute;
	top:0;
	left:0;
}
.boardMovie .container .notice>.list>ul{
	width:100%;
	height:163px;
}
.boardMovie .container .notice>.list>ul>li{
	position:relative;
	width:100%;
	box-sizing: border-box;
}
.boardMovie .container .notice>.list>ul>li>a{
	display:inline-block;
	width:100%;
	height:100%;
}
.boardMovie .container .notice>.list>ul>li>a strong, .boardMovie .container .notice>.list>ul>li>a span, .boardMovie .container .notice>.list>ul>li>a b{
  display:inline-block;
  width:100%;
  color:rgba(0, 0, 0, 0.6);
  font-weight:500;
  letter-spacing:-0.05rem;
}
.boardMovie .container .notice>.list>ul>li>a:hover strong, .boardMovie .container .notice>.list>ul>li>a:hover span{
  color:rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.1s ease-out;
	   -moz-transition: all 0.1s ease-out;
	     -o-transition: all 0.1s ease-out;
	        transition: all 0.1s ease-out;
}
.boardMovie .container .notice>.list>ul>li>a strong{
  margin-top:15px;
  font-size:1.125rem;
  line-height:1.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.boardMovie .container .notice>.list>ul>li>a span{
  margin-top:20px;
  height:58px;
  font-size:0.875rem;
  line-height:1.250rem;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.boardMovie .container .notice>.list>ul>li b{
  margin-top:15px;
	font-size:0.750rem;
	line-height:0.750rem;
	font-weight:600 !important;
  opacity:0.4;
}
.boardMovie .container .movie{
	display:flex;
	width:515px;
	height:253px;
	margin-left:55px;
	text-align:center;
  align-items: center;/*세로 중앙정렬*/
  justify-content: center;/*가로 중앙정렬*/
}
.boardMovie .container .movie>a{
  position:relative;
	display:inline-block;
	width:100%;
	height:100%;
  background: url(../../img/movieBg.jpg) center center no-repeat;
  background-size:cover;
}

.boardMovie .container .movie>a span{
  display:inline-block;
  width:100%;
  height:100%;
  background-color:#000;
  opacity:0.7;
  z-index:1;
}
.boardMovie .container .movie>a i{
  position:absolute;
  display:inline-block;
  top:50%;
  left:50%;
  width:82px;
  height:82px;
  border-radius:80px;
  background-color:#fff;
  -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%);
  opacity:0.5;
  z-index:2;
}
.boardMovie .container .movie>a i>b{
  position:absolute;
  display:inline-block;
  top:50%;
  left:55%;
  width:0;
  height:0;
  -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%);
  border-left: 25px solid #666666;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.boardMovie .container .movie>a:hover i>b{
  border-left: 30px solid #666666;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.boardMovie .container .movie .motion{
  -webkit-transition: all 0.2s ease-out;
	   -moz-transition: all 0.2s ease-out;
	     -o-transition: all 0.2s ease-out;
	        transition: all 0.2s ease-out;
}
@media only screen and (max-width : 1440px){
  .boardMovie .container{
    padding: 0 20px;
    box-sizing: border-box;
  }
}

@media only screen and (max-width : 1024px){
  .boardMovie .container .notice{
    width:550px;
  }
  .boardMovie .container .movie{
    margin-left:35px;
  }
}
@media only screen and (max-width : 860px){
  .boardMovie .container .notice{
    width:50%;
  }
  .boardMovie .container .movie{
    width:calc(50% - 35px);
  }
  .boardMovie .container .notice>.list{
    padding-left:0;
  }
  .boardMovie .container .notice>.list>span.img{
    display:none;
  }
}
@media only screen and (max-width : 640px){
  .boardMovie .container{
    flex-flow:column;
  }
  .boardMovie .container .notice{
    width:100%;
  }
  .boardMovie .container .notice>ul.tab>li>a{
    font-size:1.250rem;
  }
  .boardMovie .container .notice>.list>ul{
    height:155px;
  }
  .boardMovie .container .notice>.list>ul>li>a strong{
    margin-top:0;
    font-size:1.063rem;
  }
  .boardMovie .container .movie{
    width:calc(100%);
    margin-left:0;
    height:210px;
  }
  .boardMovie .container .movie>a i{
    width:70px;
    height:70px;
  }
  .boardMovie .container .movie>a i>b{
    border-left: 20px solid #666666;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
  .boardMovie .container .movie>a:hover i>b{
    border-left: 25px solid #666666;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }
}

#footer{

}
#footer .top{
  padding: 20px 0;
  border-top:1px solid #e5e5e5;
  border-bottom:1px solid #e5e5e5;

  box-sizing: border-box;
}
#footer .top>.container{
  display:flex;
  justify-content: space-between;
  align-items:center;/*세로 정렬*/

}
#footer .top ul{
  display:flex;
  width:100%;
  align-items: center;/*세로 중앙정렬*/
  justify-content: center;/*가로 중앙정렬*/
  text-align:center;
}
#footer .top ul>li{

}
#footer .top ul>li::before{
  content: '';
  display:inline-block;
  width:1px;
  height:10px;
  background-color:#e4e3e3;
}

#footer .top ul>li:last-child::after{
  content: '';
  display:inline-block;
  width:1px;
  height:10px;
  background-color:#e4e3e3;
}
#footer .top ul>li>a{
  display:inline-block;
  padding: 0 27px;
  font-size:0.75rem;
  line-height:0.75rem;
  color:#4c4c4c;
  font-weight:600;
}


#footer .bottom{
  display:flex;
  width:100%;
  max-width:1200px;
  padding: 40px 0;
  margin: 0 auto;
  align-items: center;/*세로 중앙정렬*/
  justify-content: justify-content;/*가로 왼쪽정렬*/
  background-color:#fff;
}
#footer .bottom a.logo{
  display:inline-block;
  margin-right:15px;
}

#footer .bottom a.logo>img{
  width:230px;
}
#footer .bottom div{}
#footer .bottom strong{
  display:flex;
  align-items: center;/*세로 중앙정렬*/
  justify-content: left;/*가로 중앙정렬*/
}
#footer .bottom strong>b, #footer .bottom strong>span, #footer .bottom strong>a, #footer .bottom strong>font{
  display:inline-block;
  margin-right:5px;
  color:000;
  word-break: keep-all;
}
#footer .bottom strong>b{
  font-size:0.875em;
}
#footer .bottom strong>span{
  font-size:0.75rem;
  opacity:0.7;
}
#footer .bottom strong>a, #footer .bottom strong>font{
  font-size:0.875rem;
}
#footer .bottom strong>font>i{
  display:inline-block;
  font-size:0.75rem;
  line-height:0.75rem;
  opacity:1;
}
#footer .bottom i{
  display:block;
  margin-top:2px;
  font-size:0.563em;
  letter-spacing:0rem;
  font-style: normal;
  text-transform:uppercase;
  opacity:0.7;
}
#footer .bottom dl{
  display:flex;
  margin-left: auto;
  align-items: flex-end;/*세로 끝정렬*/
  justify-content: center;/*가로 중앙정렬*/
}
#footer .bottom dl>dd{
  padding-left:15px;
}
#footer .bottom dl>dd:first-child{
  padding-left:0;
}
#footer .bottom dl>dd>a{
  display:inline-block;
  width:100%;
}
@media only screen and (max-width : 1280px){
  #footer .bottom a.logo{
    margin-left:15px;
  }
  #footer .bottom dl{
    width:380px;
  }
  #footer .bottom dl>dd{
    padding-left:15px;
  }
  #footer .bottom dl>dd:last-child{
    padding-right:15px;
  }

}
@media only screen and (max-width : 1024px){
  #footer .top{
    display:none;
  }
  #footer .top>.container{
    display:block;
  }
  #footer .top ul{
    width:100%;
  }
  #footer .top ul>li>a{
    padding: 0 10px;
    font-weight:400;
  }

  #footer .bottom{
    display:block;
    padding: 30px 0;
    border-top:1px solid #e5e5e5;
    text-align: center;
  }
  #footer .bottom a.logo{
    margin-bottom:5px;
    margin-left:0;
    margin-right:0;
  }

  #footer .bottom strong{
    display:block;
    text-align: center;
  }
  #footer .bottom strong>b, #footer .bottom strong>span, #footer .bottom strong>a{
    width:100%;
    margin-right:0;
    margin-top:3px;
  }
  #footer .bottom strong>span{
    font-weight:600;
  }
  #footer .bottom strong>a{
  }
  #footer .bottom strong>font{
    margin-right:0;
  }
  #footer .bottom strong>font>i{
    display:none;
  }
  #footer .bottom dl{
    width:300px;
    margin-right: inherit;
    margin-top:10px;

  }
  #footer .bottom dl>dd{
    padding-left:10px;
  }
  #footer .bottom dl>dd:last-child{
    padding-right:0;
  }

}
@media only screen and (max-width : 460px){
  #footer .top ul>li>a{
    padding: 0 7px;
    font-size:0.85rem;
    line-height:0.85rem;
  }
  .bottom strong>span{
    font-size:0.95rem;
    line-height:1rem;
  }
}

#container{

}
@media only screen and (max-width : 1024px){
  #container{
    padding-top:80px;
  }
}

.subVisual{
  width:100%;
  height:400px;
  /*background:url(../../img/subVisualBg.jpg) top center no-repeat #121724;*/
}
.subVisual .subVisualBg{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:400px;
	z-index:-2;
	background:url(../../img/subVisualBg.jpg) top center no-repeat;
  background-size:cover;
	transform: scale(1.04);
}

.subVisual .title{
  display:flex;
  margin: 0 auto;
  padding-left:500px;
  max-width:1200px;
  width:100%;
  height:100%;
  justify-content:center;/*가로 정렬*/
  flex-flow:column;/*요소 세로정렬*/
  box-sizing: border-box;
}
.subVisual .title b, .subVisual .title strong{
  display:inline-block;
  text-align:left;
  color:#fff;
  font-weight:300;
  word-break: keep-all;
  text-shadow:3px 3px 5px rgba(0, 0, 0 ,0.5)
}
.subVisual .title b{
  margin-top:30px;
  margin-bottom:5px;
  font-size:1.500rem;
  line-height:1.500rem;
  text-align:left;
}
.subVisual .title b>font{
  font-weight:600;
}
.subVisual .title strong{
  font-size:2.5rem;
  line-height:3rem;
  letter-spacing:-0.15rem;
  font-weight:400;
}
.subVisual .title strong>font{
  display:inline-block;
  width:100%;
  color:#9cff00;
  font-weight:600;
}

@media only screen and (max-width : 1024px){
  .subVisual{
    display:none;
  }
}

.example.sub{
  background-color:#efefef;
}
@media only screen and (max-width : 640px){
  .example.sub{
    padding: 60px 0 ;
  }
  .example.sub strong.title{
    padding-bottom:30px;
    font-size:1.875rem;
    line-height:1.875rem;
  }
  .example.sub strong.title a.more{
    top:7px;
  }
}
@media only screen and (max-width : 340px){
  .example.sub{
    padding: 40px 0 ;
  }
  .example.sub strong.title{
    padding-bottom:30px;
    font-size:1.750rem;
    line-height:1.750rem;
  }
  .example.sub strong.title a.more{
    top:5px;
  }
}

.subTitle{
  position:absolute;
  top:225px;
  left:50%;
  max-width:1200px;
  width:100%;
  text-align: left;
  -webkit-transform: translate(-50%,0); -ms-transform: translate(-50%,0); transform: translate(-50%,0);
}
.subTitle i{
  display:inline-block;
  margin-left:4px;
  width:37px;
  height:1px;
  background-color:#9cff00;
}
.subTitle strong{
  display:inline-block;
  margin-top:15px;
  width:100%;
  font-size:3.250rem;
  line-height:3.438rem;
  letter-spacing:-0.25rem;
  font-weight:300;
  color:#fff;
}
.subTitle strong>font{
  display:inline-block;
  width:100%;
}
@media only screen and (max-width : 1024px){
  .subTitle{
    position:relative;
    top:auto;
    left:auto;
    text-align:center;
    -webkit-transform: translate(0,0); -ms-transform: translate(0,0); transform: translate(0,0);
  }
  .subTitle i{
    margin: 0 auto;
    background-color:#2d803c;
  }
  .subTitle strong{
    display:inline-block;
    margin-top:15px;
    width:100%;
    font-size:2.188rem;
    line-height:2.188rem;
    letter-spacing:-0.1rem;
    font-weight:600;
    color:#333;
  }
}
@media only screen and (max-width : 640px){
  .subTitle strong{
    font-size:1.875rem;
    line-height:1.875rem;
  }
}
@media only screen and (max-width : 340px){
  .subTitle strong{
    font-size:1.750rem;
    line-height:1.750rem;
  }
}

/*서브메뉴*/
.navSub{

	width:100%;
	height:70px;
	font-size:0;
	line-height:0;
	text-align:center;
	border-bottom:1px solid #e5e5e5;
  background-color:#f3f5f8;

}
.navSub>li{
	position:relative;
	display:inline-block;
	padding:0 10px;
	margin: 0 10px;
}
.navSub>li>a{
	display:inline-block;
	width:100%;
	height:100%;
	font-size:1.000rem;
	line-height:70px;
	font-weight:400;
}
.navSub>li:hover>a, .navSub>li.active>a{
	color:rgba(45, 128, 59 ,1);
	font-weight:500;

}
.navSub .line{
  position: absolute;
  display: inline-block;
  bottom:-1px;
  height: 1px;
  width: 0%;
  background: rgba(45, 128, 59 ,1);
  left: 50%;
  z-index:2 !important;
}
.navSub>li:hover .line, .navSub>li.active .line{
  width:100% !important; left:0 !important;
}
.navSub>li>a{
	position:relative;
	height:100%;
}
.navSub>li:not(.active)>a:before, .navSub>li:not(.active)>a:after{
	content: "";
	left:0;
	bottom:-5px;
	width:100%;
	position:absolute;
	transition: all 0.3s ease;
}

.navSub>li>a:hover:before, .navSub>li>a:hover:after{
	width:100%;
	bottom:0;
	/*border-bottom: solid 5px #050060;*/
}
.navSub.planning, .navSub.house, .navSub.paper, .navSub.premium, .navSub.complex, .navSub.generation, .navSub.pr, .navSub.reservation{
	display:none
}
@media only screen and (max-width : 1024px){
	.navSub{
		position:relative;
		top:auto;
		height:51px;
		padding:0 5px;
		border-bottom:1px solid #f1f1f1;
		background-color:#fbfbfb;
		white-space: nowrap;
    overflow-x: auto;
		overflow-y:hidden;
		box-sizing:border-box;

	}
	.navSub>li{
		padding: 0 0 0 5px;
		margin: 0 8px;
		background:url(../../img/iconBar.jpg) left center no-repeat;
		box-sizing:border-box;
	}
	.navSub>li>a{
		font-size:1rem;
		line-height:50px;
		letter-spacing:-0.05rem;
	}
	.navSub .line{
		display:none;
	}
}







.content{
  width:1200px;
  margin: 80px auto;
  min-height:300px;
  font-size:0;
  line-height:0;
}
@media only screen and (max-width : 1440px){
  .content{
    max-width:1200px;
    width:100%;
    padding-left:10px;
    padding-right:10px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width : 1024px){
  .content{
    margin-top:30px;
  }
}
.tab2{
  width:100%;
  background: url(../../img/tab_bg.jpg) left bottom repeat-x;
}
.tab2>li{
  width:49%;
  margin: 0 0.5%;
  border:1px solid #e3e3e3;
  background-color:#f4f4f4;
}
.tab2>li>a{
  display:inline-block;
  width:100%;
  padding:15px 0;
  font-size:1.3rem;
  line-height:1.3rem;
  color:#777;
  text-align: center;
}
.tab2>li>a>b{
  font-weight:500;
}
.tab2>li:hover, .tab2>li.active{
  border-bottom:1px solid #fff;
  background-color:#fff;
}
.tab2>li:hover>a, .tab2>li.active>a{
  font-weight:500;
  color:#212a87;
}



a.more{
  display:inline-block;
  position:absolute;
  top:0;
  right:0;
  width:20px;
  height:20px;
}
a.more>span{
  display:inline-block;
  position:absolute;
  background-color:#666;
}
a.more.w>span{
  background-color:#fff;
}
a.more>span.hori{
  top:50%;
  left:0;
  width:100%;
  height:0.5px;
  -webkit-transform: translate(0,-50%); -ms-transform: translate(0,-50%); transform: translate(0,-50%);
}

a.more>span.vert{
  top:0;
  left:50%;
  width:0.5px;
  height:100%;
  -webkit-transform: translate(-50%,0); -ms-transform: translate(-50%,0); transform: translate(-50%,0);
}



ul.tab{
  display:flex;
  max-width:1200px;
  width:100%;
  margin: 0 auto;
  margin-bottom:60px;
  justify-content: center;/*가로 정렬*/
  align-items:top;/*세로 정렬*/
}
ul.tab>li{
  position:relative;
  width:24.25%;
  height:60px;
  margin-left:1%;
  text-align: center;
  border:1px solid #ccc;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
     -moz-transition: all 0.1s ease-out;
       -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
}
ul.tab>li:first-child{
  margin-left:0;
}
ul.tab>li:hover, ul.tab>li.active{
  border:1px solid #2d803b;
}
ul.tab>li font{
  position:absolute;
  top:50%;
  left:50%;
  display:inline-block;
  font-size:1.35rem;
  line-height:1.35rem;
  color:#2d803b;
  word-break: keep-all;
  -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%);
  -webkit-transition: all 0.1s ease-out;
     -moz-transition: all 0.2s ease-out;
       -o-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out;
}
.product .tab>li>a{
  display:inline-block;
  width:100%;
  height:100%;
  font-size:0.938rem;
  line-height:58px;
  border:1px solid #fff;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
     -moz-transition: all 0.1s ease-out;
       -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
}
ul.tab>li.long>a{
  letter-spacing:-0.1rem;
}
ul.tab>li:hover>a, ul.tab>li.active>a{
  border:1px solid #2d803b;
  font-weight:600;
  color:#2d803b;

}
ul.tab>li:hover>font, ul.tab>li.active>font{
  font-weight:500;
}
@media only screen and (max-width : 640px){
  ul.tab{
    flex-flow: column;
  }
  ul.tab>li{
    width:100%;
    height:50px;
    margin-left:0;
    margin-top:1%;
  }
    ul.tab>li:first-child{
      margin-top:0;
    }
    .product .tab>li>a{
      line-height: 50px
    }
}


.content .web{
  display:block;
}
.content .mob{
  display:none;
}
@media only screen and (max-width : 1024px){
  .content .web{
    display:none;
  }
  .content .mob{
    display:block;
  }
}


/* the slides */
.slick-slide {
	margin: 0 10px;
}

/* the parent */
.slick-list {
	margin: 0 -10px;
}

@media only screen and (max-width : 640px){
	.slick-slide {
		margin: 0;
	}
	.slick-list {
		margin: 0;
	}
}

@keyframes mainBgAnimate{
	0% {transform:scale(1.04) rotate(.001deg); }
	100% {transform:scale(1.00) rotate(.001deg);}
}
