#header {
  padding:16px 0;
  border-top:4px solid var(--main-color-1);
}

#header .hd-wrap {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

#header .hd-wrap #main-menu > ul {
  display:flex; 
}

#header .hd-wrap #main-menu > ul > li {
  margin-left:40px;
}

#header .hd-wrap #main-menu > ul > li > a {
  font-size:1.5rem;
  color:#333;
}

#header .hd-wrap #main-menu > ul > li.active > a {
  color:var(--main-color-2);
  font-weight:500;
}

/* 테이블 디자인 */
.table.table-custom-1 {
  border-top: 0;
  margin: 50px 0;
  /* border-radius:5px; */
}

.table.table-custom-1 thead tr th {
  border-top: 1px solid 0;
  border-bottom: 1px solid 0;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  color: #cfcfcf;
  background-color: var(--main-color-1);
}

.table.table-custom-1 tbody tr {
  cursor: pointer;
}

.table.table-custom-1 tbody tr:hover {
  background-color: #efefef;;
}



.table.table-custom-1 tbody tr td {
  font-size: 1.4rem;
  color: #333;
  font-weight: 300;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--main-color-2);
}

.table.table-custom-1 tbody tr:last-child td {
  border-bottom: 0;
}


#main-banner {
  height:600px;
}

#main-banner .banner-image {
  background-image:url('/images/banner/banner-image.png');
  height:600px;
  position:relative;
}

#main-banner .banner-image:before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  display:block;
  width:100%;
  height:100%;
  background-color:rgba(0, 0, 0, 0.5);
}

#main-banner .banner-image .banner-position {
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
}

#main-banner .banner-image .banner-position .banner-btn {
  margin-top:20px;
  text-align:center;
}

#main-banner .banner-image .banner-position .banner-btn button {
  background-color:transparent;
  border-top:1px solid #fff;
  border-bottom:1px solid #fff;
  color:#fff;
  font-weight:300;
  font-size:1.4rem;
  padding:6px 60px;
}

.pagination {
  padding-bottom: 30px;
}

.pagination>ul {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pagination>ul>li {
  margin: 0 5px;
}

.pagination>ul>li>a {
  color: #efefef;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}

.pagination>ul>li.page-num>a {
  background-color: var(--main-color-1);
  border-radius: 50%;
}

.pagination>ul>li.page-num>a:hover {
  background-color: var(--main-color-2);
}

.pagination>ul>li.page-num.active>a {
  background-color: var(--main-color-2);
}

#footer {
  padding:8px 0;
  border-top:3px solid #222;
}

#footer .footer-parent > .row {
  justify-content: space-between;
  align-items:center;
}

#footer .footer-parent > .row > div:nth-child(1) > ul {
  display:flex;
}

#footer .footer-parent > .row > div:nth-child(1) > ul > li {
  margin-right:25px;
  font-size:1.4rem;
}

#footer .footer-parent > .row > div:nth-child(1) > ul > li:nth-child(1) {
  font-weight:500;
}

#footer .footer-parent > .row > div:nth-child(1) > ul > li:not(:nth-child(1)) {
  color:#666;
}

#footer .footer-parent .site-name {
  color:#666;
  font-size:1.4rem;
}

@media (max-width:767px) {
  html {
    font-size:9px;
  }

  #header {
    position:relative;
  }

  #header.active #main-menu {
    left:0;
  }

  #header .mobile-menu-btn {
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction: column;
    width:25px;
    cursor:pointer;
  }

  #header .mobile-menu-btn > span {
    width:100%;
    height:3px;
    border-radius:1px;
    margin:2px 0;
    background-color:var(--main-color-2);
  }

  #header #main-menu {
    position:fixed;
    left:-250px;
    top:0;
    width:250px;
    min-height:100vh;
    padding:20px 0;
    background-color:var(--main-color-1);
    z-index:99;
    transition:all 0.25s;
  }

  #header .hd-wrap {
    justify-content:center;
  }

  #header .hd-wrap #main-menu > ul {
    flex-flow:column wrap;
  }

  #header .hd-wrap #main-menu > ul > li {
    margin:6px 0;
    padding:0 10px;
  }

  #header .hd-wrap #main-menu > ul > li > a {
    color:#fff;
  }

  #header .mobile-menu-background {
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-color:rgba(0, 0, 0, 0.5);
    z-index:9;
  }

  #main-banner .banner-image:before {
    display:none;
  }
}