*, *::after, *::before{ margin: 0; padding: 0; border: 0; outline: 0; box-sizing: border-box;}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, li, table, th, td, i, form, address, pre, caption, cite,dfn, var{
    font-family: 'Noto Sans Korean', 'xeicon','돋움',sans-serif;
    font-style:normal !important;
    text-decoration: none; 
    font-weight: 400;
    font-size: 15px
}
body {
    line-height: 1;
}

html, body { width: 100%; height: 100%;}
a, span, p, li, div, button {color: #141414}
i, cite, em, var, address{font-style:normal !important}
a{text-decoration: none}
a, a:hover, a:focus { display: block;}
article, aside, details, figcaption, footer, header, hgroup, menu, nav, section { display: block; }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}


h1{font-size: 32px; font-weight: bold; line-height: 1;}
h2{font-size: 24px; font-weight: bold; line-height: 1;}
h3{font-size: 18px; font-weight: 400}
h4{font-size: 16px; font-weight: 400}
p{font-size: 15px; font-weight:400; line-height: 1.5; }
span{font-size: 13px; font-weight: 400;}

textarea{
  width:100%; 
  border:1px solid #ccc;  
  border-radius: 5px;
  -webkit-border-radius:5px;
  -moz-border-radius: 5px;
  margin:0 0 10px 0;
}
select::-ms-expand { display: none; }
select { -webkit-appearance: none; -moz-appearance: none; appearance: none; }

input, select, textarea, button { font: inherit; color: inherit; vertical-align: middle; }
input:-webkit-autofill { -webkit-box-shadow: 0 0 0 1000px #f6f8f9 inset !important; }

ul, li, ol, dl{padding:0; margin:0; font-size: 0; height: auto; list-style: none; }
li{padding: 0; margin:0; list-style: none; font-size: 15px}

div{
  -webkit-overflow-scrolling: touch;
  -moz-transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
   
/* input css-----------------------------------------------------------------------------------------------------------*/

input {
  border: 1px solid #dadddd;
  height: 38px;
  line-height: 38px;
  color: inherit;
  font: inherit;
  margin:0;
  outline: 0;
  padding: 0 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-transition: background-color .3s;
  -webkit-transition: background-color .3s;
          transition: background-color .3s;
  position: relative;
}

input:hover{ box-shadow: inset 2px 2px 2px rgba(0,0,0,.075)}
input:valid{
  border:1px solid #366333;
  -webkit-box-shadow: 0 0 3px rgba(54,99,51,.6);
  box-shadow:0 0 3px rgba(54,99,51,.6);
}
input:focus{ box-shadow: 0 0 0; border:1px solid transparent !important;  transition: all 0.4s;}
input ~ .focus-border{position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: #366333; transition: 0.4s;}
input:focus ~ .focus-border{width: 100%; transition: 0.4s;}

.input-error label{ color:#ec0000}
.input-error input{border:1px solid #ec0000;}
.input-error + span{color:#ec0000;}

.input-icon label{
  width:38px; 
  height: 38px; 
  text-align: center;
  float: left;
  color: #366333;
  position:absolute;
  z-index: 1;
}

.input-icon label i{
  line-height: 38px; font-size: 18px; 
}
.input-icon label.bgcol{background-color: #366333; color: #fff;border-radius: 3px 0 0 3px;  -moz-border-radius: 3px 0 0 3px; -webkit-border-radius: 3px 0 0 3px;}
.input-icon label.bgcol + input{padding-left: 45px}
.input-icon input{width:100%; padding-left: 38px}

.input-btn input{width:auto ;border-top-right-radius: 0; border-bottom-right-radius: 0; float: left; border-right: 0 !important}
.input-btn button{border-radius: 0 3px 3px 0; -moz-border-radius: 0 3px 3px 0; -webkit-border-radius: 0 3px 3px 0;}
/* wrap css-----------------------------------------------------------------------------------------------------------*/

.container{width: 100%;margin:0 auto; text-align: center;}

/* display css-----------------------------------------------------------------------------------------------------------*/
.inblock{display: inline-block;}
.inblock:hover, .inblock:focus{display: inline-block;}
.block{display:block;}
.fl-left{float: left}
.fl-right{float: right}

.relative{position: relative;}

/* scene css-----------------------------------------------------------------------------------------------------------*/
.scene {
  height: 100vh;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 200;
}
.scene.one{
  background-image: url(../img/main.jpg);
}
.scene.two{
  background-image: url(../img/bg.jpg);
  color:#fff;
}

.scene .title{
  color:white;
  max-width: 80%;
  position: relative;
  left:50%;
  top:50%;
  transform:translateX(-50%) translateY(-50%);
  font-size:1.5rem;
  text-align: center;
}
.scene .title h1{font-size: 60px}

.scene .title .bottomline:after{
  content:'';
  border-bottom:3px solid white;
  width:8rem;
  display: block;
  margin:0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
.scene .title h2 {color:#fff; padding:10px 0 ;}
.scene .title p{color:#fff;}
/* system css-----------------------------------------------------------------------------------------------------------*/
.system h1{padding:40px 0 ;}
.system h1:after{width:50px; height: 3px; display: block; content: ''; background-color: #111; margin:40px auto 0 auto;}
.system .box{padding:40px 0 ;}
.system .box:nth-child(2n){background-color: #fff}
.system .box video{width: 60%}
.system .box ul{max-width: 1200px; max-width: 1200px; text-align: center;margin:0 auto;}
.system .box h2{margin:15px 0;}
.system li{display: inline-block; width: 32%; min-width: 280px; margin-bottom:20px; overflow: hidden; vertical-align: top;}

.system .systembox{font-size: 0; }
.system .systembox li{height: 550px; background-color: #fff; box-shadow: 0px 2px 8px rgba(0,0,0,0.15);}
.system .systembox li p{padding: 0 15px; }
.system .systembox li:nth-child(2),
.system .systembox li:nth-child(5),
.system .systembox li:nth-child(8){margin:0 2%;}

.system .two{height:320px;}
.system .two h1:after{background-color: #fff !important}

footer{text-align: center; padding:50px 0; }

footer p{margin-bottom: 20px}
footer span{font-size: 23px; display: inline-block;padding:0 10px;}
footer span a:hover{color:#0072de;}

@media (max-width: 600px){
  .system .systembox li{width: 80% !important; margin:0 !important; height: 450px}
  .system .systembox li img{height:250px; }
  .system .box video{width: 90%}
}

@media (max-width: 800px){
  .system .two{padding: 0 20px; height: 350px }
}

@media (max-width: 890px){
  .system .systembox li{width: 48%; margin:0 1% 20px 1% !important;}
  .system .box video{width: 90%}
}

@media (max-width: 905px){
  .system .systemex li:nth-child(2){margin:0 1%;}
}

/* font css-----------------------------------------------------------------------------------------------------------*/
.ft12{font-size: 12px}
.ft14{font-size: 14px}
.ft16{font-size: 16px}
.ft18{font-size: 18px}
.ft20{font-size: 20px}
.ft24{font-size: 24px}
.ft32{font-size: 32px}

.ftcol-primary{color: #f7778b}
.ftcol-secondary{color: #ffc000}
.ftcol-black{color:#141414;}
.ftcol-white{color:#fff;}
.ftcol-red{color:#ec0000;}
.ftcol-gray{color:#dddddd;}
.ftcol-drgray{color:#7d7d7d;}

.txt-center{text-align: center;}
.txt-left{text-align: left;}
.txt-right{text-align: right;}

.deco-none{text-decoration: none;}
.deco-under{text-decoration: underline;}

/* button css-----------------------------------------------------------------------------------------------------------*/
a[class|='btn-'], button[class|='btn-']{
  line-height: 36px; 
  font-size:16px; 
  cursor: pointer;    
  display: inline-block;
  background-color: #f0f2f0; 
  border: 1px solid #f0f2f0; 
  color: #141414;
  position: relative;
  top: 0;
  transition: all 0.2s ease;
  user-select: none;
  margin: 0;
  z-index: 1;
  cursor:pointer; 
  vertical-align: top;
  letter-spacing: 1px;
  font-weight: 500;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
a[class*='-square'], button[class*='-square']{padding:0 20px}
a[class*='-circle'], button[class*='-circle']{width:38px}

a[class|='btn-']:after, button[class|='btn-']:after {
  content: '';
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-sm{font-size: 13px;padding:0 6px;line-height: 24px; position: absolute; right: 15px; top:15px;   box-shadow: 0 1px 3px rgba(170,170,170,.3); }
.btn-lg{padding:0 40px;}

.btn-back{position: absolute; left: 10px; font-size: 24px}
/*-----------------------background-color*/

a[class*='btn-bg'], button[class*='btn-bg']{
  background: none;
  border:2px solid #141414;
}
.btn-bg1:hover{
  color: #141414;
  background: #ffc000;
}
.btn-bg3:after {
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffc000;
}
.btn-bg3:hover, .btn-bg3:active{color:#141414;}
.btn-bg3:hover:after, .btn-bg3:active:after{width: 100%;}

a[class*='btn-arrow']{
  border-radius: 35px;
  border: 2px solid #ab9877;
  overflow: hidden;
  padding: 0.75rem 3rem;
  position: relative;
  background-color: #d0be9e;
  color: #5f4f33;
}
a[class*='btn-arrow']:before{
  top: 0;
  position: absolute;
  height: 100%;
  font-size: 125%;
  line-height: 2.2;
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
a[class*='btn-arrow']:hover{
  background-color: #ab9877;
  color:#fff;

}

.btn-arrow1:before,.btn-arrow3:before{ content: '\e907';}
.btn-arrow2:before,.btn-arrow4:before{ content: '\e908';}

.btn-arrow1:before{ left:100%;}
.btn-arrow1:hover:before {left: 70%; }
.btn-arrow2:before{ left:-50%;}
.btn-arrow2:hover:before {left: 10%; }
.btn-arrow3:before{ left:60%; opacity: 0;}
.btn-arrow3:hover:before {left: 80%; opacity: 1;}
.btn-arrow4:before{ left:20%; opacity: 0;}
.btn-arrow4:hover:before {left: 10%; opacity: 1 }

/*-----------------------btn-radius*/
a[class*='-round3']{border-radius: 3px; -moz-border-radius:3px; -webkit-border-radius:3px}
a[class*='-round5']{border-radius: 5px; -moz-border-radius:5px; -webkit-border-radius:5px}
a[class*='-round50']{border-radius: 50px; -moz-border-radius:50px; -webkit-border-radius:50px}
a[class*='-roundp50']{border-radius: 50%; -moz-border-radius:50%; -webkit-border-radius:50%}
/*-----------------------btn-color*/
a[class*='-pr']{background-color: #366333; border: 1px solid #366333; color: #fff;}
a[class*='-pr']:hover{background-color: #2d522d;  border: 1px solid #2d522d;}

.btn-black{background-color: #141414; border: 1px solid #141414; color: #fff;}
.btn-black:hover{background-color: #0f0f0f; border: 1px solid #0f0f0f;}

.btn-white{background-color: #ffffff; border: 1px solid #dadddd; color: #141414;}
.btn-white:hover{background-color: #dadddd; color: #141414}
.btn-wdanger{background-color: #ffffff; border: 1px solid #ec0000; color: #ec0000;}
.btn-wdanger:hover{background-color: #ec0000; color: #fff}
.btn-wgray{background-color: #ffffff; border: 1px solid #f0f2f0; color: #dadddd;}
.btn-wgray:hover{color: #dadddd; background-color: #f0f2f0;}

a.btn{display: inline-block;}

/* background-color css-----------------------------------------------------------------------------------------------------------*/

.bg-primary{background-color: #366333 !important;}
.bg-primary-h{background-color: #2d522d !important;}

.bg-danger{background-color: #ff4c4c !important;}
.bg-warning{background-color: #ffcc1f !important;}
.bg-black{background-color: #141414 !important;}
.bg-dagray{background-color: #dadddd !important;}
.bg-ligray{background-color: #e1e8e9; color:#141414 !important;}
.bg-white{background-color: #ffffff; color:#141414 !important;}

/* border css-----------------------------------------------------------------------------------------------------------*/

.border{border:1px solid #f0f0f0}
.border-t{border-top:1px solid #f0f0f0}

/* padding css-----------------------------------------------------------------------------------------------------------*/
.pad0{padding:0px !important;}
.pad10{padding:10px !important;}
.pad20{padding:20px !important;}
.pad30{padding:30px !important;}
.pad40{padding:40px !important;}
.pad50{padding:50px !important;}

.pad2040{padding:20px 40px !important;}

.pad-t20{padding-top:20px !important;}
.pad-t30{padding-top:30px !important;}
.pad-t40{padding-top:40px !important;}
.pad-t60{padding-top:60px !important;}

.pad-b10{padding-bottom:10px !important;}
.pad-b15{padding-bottom:15px !important;}
.pad-b20{padding-bottom:20px !important;}
.pad-b30{padding-bottom:30px !important;}
.pad-b40{padding-bottom:40px !important;}

.pad-h10{padding:0 10px !important;}
.pad-h20{padding:0 20px !important;}
.pad-h30{padding:0 30px !important;}
.pad-h40{padding:0 40px !important;}

.pad-v05{padding:5px 0 !important;}
.pad-v20{padding:20px 0 !important;}
.pad-v30{padding:30px 0 !important;}
.pad-v40{padding:40px 0 !important;}

/* margin css-----------------------------------------------------------------------------------------------------------*/
.mar-t10{margin-top:10px !important;}
.mar-t20{margin-top:20px !important;}
.mar-t30{margin-top:30px !important;}
.mar-t40{margin-top:40px !important;}

.mar-b10{margin-bottom:10px !important;}
.mar-b15{margin-bottom:15px !important;}
.mar-b20{margin-bottom:20px !important;}
.mar-b30{margin-bottom:30px !important;}
.mar-b40{margin-bottom:40px !important;}
.mar-b60{margin-bottom:60px !important;}

.mar-h10{margin:0 10px !important;}
.mar-h20{margin:0 20px !important;}
.mar-h30{margin:0 30px !important;}
.mar-h40{margin:0 40px !important;}

.mar-v10{margin:10px 0 !important;}
.mar-v20{margin:20px 0 !important;}
.mar-v30{margin:30px 0 !important;}
.mar-v40{margin:40px 0 !important;}


/* Check Boxe css------------------------------------------------------------------------- */
#checkbox ul{display: inline-block; vertical-align: middle; width:calc(50% - 15px);}
#checkbox ul:last-child{border-left:1px solid #f0f0f0;padding-left:15px;}
#checkbox span{font-size: 15px}
#checkbox input[type="checkbox"] + span {
  display: block;
  position: relative;
  vertical-align: middle;
  padding: 5px;
  cursor: pointer;
}
#checkbox input[type="checkbox"] + span:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #dadddd;
  background-color: #f0f0f0;
  border-radius: 4px;
  margin: 0 5px -5px 0;
  transition: border .25s ease-in-out, background-color .25s ease-in-out;
}
#checkbox input[type="checkbox"]:checked + span:before {
  content: "\e929";
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
  display: inline-block;
  border: 1px solid #ffc000;
  background-color: #ffc000

}
#checkbox input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

#checkbox .checkbox-lg + span:before {
  font-size: 20px !important;
  width: 25px !important;
  height: 25px !important;
}

/* Radio ----------------------------------------------------------------------------------------*/
#radio ul{display: inline-block; vertical-align: middle; width:calc(50% - 15px);}
#radio ul:last-child{border-left:1px solid #f0f0f0; padding-left:15px;}
#radio span{font-size: 15px}
#radio input[type="radio"] + span {
  display: block;
  position: relative;
  vertical-align: middle;
  padding: 5px;
  cursor: pointer;
}
#radio input[type="radio"] + span:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #dadddd;
  background-color: #f0f0f0;
  border-radius: 100%;
  margin: 0 5px -5px 0;
  
  transition: border .25s ease-in-out, background-color .25s ease-in-out;
}
#radio input[type="radio"]:checked + span:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #366333;
  background-color: #ffffff;
  box-shadow: inset 0 0 0 2px #366333;
}
#radio input[type="radio"] {
  visibility: hidden;
  display: none;
}

#radio .radio-lg + span:before {
  width: 25px !important;
  height: 25px !important;
}

/* pop css-----------------------------------------------------------------------------------------------------------*/

.Popup{
  padding:0 50px;
  position:absolute; 
  background:#fff;
  z-index: 99999;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0,0,0,.35);
  -webkit-transition: left .07s;
        transition: left .07s;
  text-align: center;
  background-color: #fff;
  width: 550px;
}
.Popup .item img{
  width: 450px !important;
  border:0 !important;
  margin-top:10px;
}
.closeline{background-color: #111; height: 30px;text-align: left; padding:0 10px; line-height: 30px;}
.closeline input{margin:1px 0 0; line-height: 1; height: 20px}
.closeline span{color: #fff; cursor: pointer; }
.close_btn{position: absolute; top:0 ;right:10px; top:10px; font-size:35px; color: #aa3339;}

.owl-theme .owl-nav [class*=owl-]:hover{background:#eadfcb !important;}
.owl-prev, .owl-next{position:absolute; top:50%; margin-top:-190px !important;}
.owl-prev i, .owl-next i{font-size: 40px;padding:150px 0 ;}
.owl-prev{left: -50px;}
.owl-next{right: -50px; }

.owl-dots{margin-bottom: 20px;}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{background:#f3b13a !important;}

.over{width: 100%; height: 100vh; background-color:rgba(0,0,0,0.5); position: fixed; top:0; left:0; z-index: 9999; display: none}

@media (max-width: 768px){
.Popup{left:00px !important; margin-left:0 !important; width: 100%}
.Popup .item img{width: 100% !important;}
.popup6{top:50px !important;}
}

/* table css-----------------------------------------------------------------------------------------------------------*/

.table-container{
  position: relative; 
  border:1px solid #dadddd; 
  background-color: #f0f2f0; 
  border-radius: 5px;
  -webkit-border-radius:5px;
  -moz-border-radius:5px; 
  box-shadow: 0 0 5px rgba(170,170,170,.3);
}
.table-container > h3{padding:15px;}

table{
  width:100%; 
  padding:0; 
  margin:0;
  border-spacing: 0;
  border-collapse: collapse;
}
table tr{
  border-top:1px solid #eeeeee;
  background-color: #fff; 
}
table tr:first-child{border-top:0;}
table th{
  padding:12px 0;
  text-align: center;
}
table td{
  border:0;
  word-break: break-all;
  background-color: #fff; 
  text-align: center;
  vertical-align: middle;
  empty-cells: show;
}
table td:empty{height: 23px}
table td a:link{text-decoration: none; color:#141414;}
table tr, 
table td{padding:12px 0 ;}

table:not(.tb_span) tr:last-child{
  border-radius: 0 0 4px 4px;
  -webkit-border-radius:0 0 4px 4px;
  -moz-border-radius:0 0 4px 4px; 
}
table:not(.tb_span) tr:last-child td:first-child,
table:not(.tb_span) tr:last-child th:first-child{
   border-bottom-left-radius:4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-bottom-left-radius: 4px; 
}

table:not(.tb_span) tr:last-child td:last-child,
table:not(.tb_span) tr:last-child th:last-child
{
  border-bottom-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-bottom-right-radius: 4px; 
}

table p.btn_point{color:#111;}
table .btn{padding:0 10px;}

.tb_block th{background-color: #f0f2f0; }

.tb_left th{background-color: #fff; border-right: 1px solid #eeeeee}
.tb_left td{text-align: left; padding:0 20px ;}

.tb_hover td:hover{background-color: #eeeeee}

.tb_span .eve_title{display: none}
.tb_span th{background-color: #f0f2f0; }
.tb_span td{border-left:1px solid #eeeeee;}
.tb_span td:first-child{border-left:0;}
.tb_span .td_right{
   border-bottom-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-bottom-right-radius: 4px; 
}
.tb_span .td_left{
   border-bottom-left-radius:4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-bottom-left-radius: 4px;
}
.tb_span .tb_span_th.th_clone{display: none;}
.tb_span .tb_span_th{display: table-row}

@media (max-width: 768px){
  .tb_block tr, .tb_block td {
    display: block;
  }
  .tb_block tr {
    padding: 10px 0 10px 0;
    position: relative;
  }
  
  .tb_block td{width:100%\9;float:left\9;}
  .tb_block td{
    clear: both;
    margin-left: 20px;
    padding: 1px 20px 1px 80px;
    position: relative;
    text-align: left;  
    line-height: 1.8;
  }
  .tb_block tr:first-child {
    display: none;
  }
  .tb_block td:before {
    content: '';
    display: block;
    left: 0;
    position: absolute;
  }

  .tb_first-td td:first-child {
    position: absolute;
    width: 15%;
    padding:0;
    text-align: center;
    margin-left:0;
  }
  .tb_first-td td:not(:first-child){
    margin-left:15%;
   }
  .tb_first-td td:not(:first-child):before {
    content: '';
    display: block;
    left: 0;
    position: absolute;
  }

  .tb_left th, .tb_left td{ display: block; }
  .tb_left tr:first-child th{border-top:1px solid #dadddd;}
  .tb_left th{background-color: #fff; border-right:0; border-bottom: 2px solid #eeeeee;}
  .tb_left td{text-align: center; padding:10px 0; background-color: #f8f9f8;}

  .tb_left tr:last-child td:last-child{
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px; 
  }
  .tb_left tr:last-child{
    background-color: transparent;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px; 
  }
  .tb_span .eve_title{display: table-row; text-align: center;}

  .tb_span tr:not(.eve_title) td{background-color: #f8f9f8}
  .tb_span tr:not(.eve_title) td.eve{display: none}
  .tb_span th{background-color: #fff; border-bottom:2px solid #eeeeee;}
  .tb_span .tb_span_th.th_clone{display: table-row}
  .tb_span .tb_span_th.th_clone th:first-child{display: none;}
  .tb_span .tb_span_th{display: none}

  .tb_name tr td:nth-child(1):before{content: '번호 : ';  }
  .tb_name tr td:nth-child(2):before{content: '제목 : ';  }
  .tb_name tr td:nth-child(3):before{content: '작성자 : ';  }
  .tb_name tr td:nth-child(4):before{content: '작성일 : ';  }

  .tb_name01 tr td:first-child {line-height: 88px;} /* heigth - 20 */
  .tb_name01 tr td:nth-child(2):before{content: '제목 : ';  }
  .tb_name01 tr td:nth-child(3):before{content: '작성자 : ';  }
  .tb_name01 tr td:nth-child(4):before{content: '작성일 : ';  }
}

/* paging css-----------------------------------------------------------------------------------------------------------*/


.paging{text-align: center;}
.paging li{display: inline-block; border:1px solid #dadddd; }
.paging li:not(:last-child){border-right: 0}
.paging li:first-child{border-radius: 35px 0 0 35px;}
.paging li:last-child{border-radius: 0 35px 35px 0;}
.paging li:first-child a{border-radius: 35px 0 0 35px;}
.paging li:last-child a{border-radius: 0 35px 35px 0;}

.paging li a{width: 100%; display: block; line-height: 1; font-size: 15px;padding:8px 10px; background-color: #fff}
.paging li:hover > a{background-color: #366333; color:#fff;}
.paging li a i{font-size: 14px; margin-bottom: 1px}

.paging .here a{background-color: #366333; color:#fff;}
.paging li.double-pre a i:first-child,
.paging li.double-next a i:first-child{letter-spacing: -10px}


/* menu css-----------------------------------------------------------------------------------------------------------*/



.hover5:focus{
  outline: none;
}

.hover5__label:hover, .hover5__label:hover{
  color: #d0be9e;
}


.gnb{
  box-sizing: border-box;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 100%;
  opacity: 1;
  position: fixed;
  top: -56px;
  z-index: 299;
  background-color: #fff;
  border-bottom:1px solid #ddd;
}

.menu__item{
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

.menu__link{
  font-size: 16px;
  color: #141414;
  text-decoration: none;
  text-transform: uppercase;
    padding:20px 0 ;
}
.menu__link span{font-size: 16px}

@media (max-width: 768px){
  .gnb{display: none}
}

/* font css-----------------------------------------------------------------------------------------------------------*/



@font-face {
    font-family: 'Noto Sans Korean';
    font-style: normal;
    font-weight: 300;
    src: local('Noto Sans Light'), local('NotoSans-Light'),
    url(../fonts/NotoSansKR-Light-Hestia.eot),
    url(../fonts/NotoSansKR-Light-Hestia.eot?#iefix) format('embedded-opentype'),
    url(../fonts/NotoSansKR-Light-Hestia.woff) format('woff'),
    url(../fonts/NotoSansKR-Light-Hestia.otf) format('opentype');
}


@font-face {
    font-family: 'Noto Sans Korean';
    font-style: normal;
    font-weight: 400;
    src: local('Noto Sans Regular'), local('NotoSans-Regular'),
    url(../fonts/NotoSansKR-Regular-Hestia.eot),
    url(../fonts/NotoSansKR-Regular-Hestia.eot?#iefix) format('embedded-opentype'),
    url(../fonts/NotoSansKR-Regular-Hestia.woff) format('woff'),
    url(../fonts/NotoSansKR-Regular-Hestia.otf) format('opentype');
}

@font-face {
    font-family: 'Noto Sans Korean';
    font-style: normal;
    font-weight: 500;
    src: local('Noto Sans Medium'), local('NotoSans-Medium'),
    url(../fonts/NotoSansKR-Medium-Hestia.eot),
    url(../fonts/NotoSansKR-Medium-Hestia.eot?#iefix) format('embedded-opentype'),
    url(../fonts/NotoSansKR-Medium-Hestia.woff) format('woff'),
    url(../fonts/NotoSansKR-Medium-Hestia.otf) format('opentype');
}

@font-face {
    font-family: 'Noto Sans Korean';
    font-style: normal;
    font-weight: 700;
    src: local('Noto Sans Bold'), local('NotoSans-Bold'),
    url(../fonts/NotoSansKR-Bold-Hestia.eot),
    url(../fonts/NotoSansKR-Bold-Hestia.eot?#iefix) format('embedded-opentype'),
    url(../fonts/NotoSansKR-Bold-Hestia.woff) format('woff'),
    url(../fonts/NotoSansKR-Bold-Hestia.otf) format('opentype');
}

@font-face {
    font-family: 'Noto Sans Korean';
    font-style: normal;
    font-weight: 900;
    src: local('Noto Sans Black'), local('NotoSans-Black'),
    url(../fonts/NotoSansKR-Black-Hestia.eot),
    url(../fonts/NotoSansKR-Black-Hestia.eot?#iefix) format('embedded-opentype'),
    url(../fonts/NotoSansKR-Black-Hestia.woff) format('woff'),
    url(../fonts/NotoSansKR-Black-Hestia.otf) format('opentype');
}
