


  /* 서치 폼 */
  .search-box > form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-flow: row nowrap;
    width: 100%;
  
    padding: 0;
  }
  
  .search-form {
    position: relative;
    z-index: 0;
    display: flex;
    padding: 0 10px;
    width: 250px;
    height: 45px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(34, 34, 34);
    background-color: transparent;
    border: 1px solid rgb(221, 221, 221);
    outline: none;
  }
  
  button.search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 45px;
  
    font-size: 14px;
    font-weight: 300;
    color: rgb(255, 255, 255);
  
    background-color: rgb(34, 34, 34);
    border: none;
    outline: none;
  
    cursor: pointer;
  }
  
  button.search-btn:hover {
    background-color: rgb(0, 0, 0);
  }
  
  input.search-form::-webkit-input-placeholder {
    font-size: 12px;
    color: rgb(151, 151, 151);
  }
  
  .search-box > form > span {
    position: relative;
    overflow: hidden;
  }
  
  .search-form + label {
    position: absolute;
    z-index: -1;
    padding-left: 20px;
    display: inline-block;
    line-height: 45px;
    top: 0;
    left: 0;
  
    height: 100%;
    width: 100%;
    background-color: #2bbabe;
    
    transform: translateX(-100%);
    transition: all 0.5s ease;
  }
  
  .search-form:focus + label,
  .search-form:active + label {
   transform: translateX(0);
   color: #fff;
  }
  
  .search-form:focus::-webkit-input-placeholder,
  .search-form:active::-webkit-input-placeholder {
    font-size: 12px;
    color: rgb(255, 255, 255);
  }
  
  .search-form:focus {
    color: #fff;
    border: 1px solid #2bbabe;
  }
  


  /* 서치 폼 끝 */
  


.con-board {
    margin-bottom: 50px;
    margin-top: 50px;
}

.board-box {
    width: 100%;
    /* background-color: rgb(242, 242, 242); */

    display: flex;
    flex-flow: column nowrap;
}

.board-box > .tit-box {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    padding: 20px 0;
    margin-bottom: 10px;
}

.board-box > .tit-box > .leftbx {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
}
.board-box > .tit-box > .leftbx > h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
    color: rgb(51, 51, 51);
}

.board-box > .tit-box > .rightbx {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.con-board > .board-box > .listbox {
    width: 100%;
    height: 100%;
    
    background-color: rgb(255, 255, 255);
}


.board-box > .listbox {
	position: relative;
	text-align: center;
	padding: 0 0 50px;
	width: 100%;
	align-content: space-around;
}


#tit {
    position: relative;
    width: 100%;
}

#tit > li {
    position: relative;
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid rgb(200, 200, 200);
    border-top: 1px solid rgb(80, 80, 80);
    background-color: rgb(242, 242, 242);
}

#tit > li > span {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 100%;

    font-size: 14px;
    font-weight: 400;
    color: rgb(34, 34, 34);
}

#tit > li > span:nth-child(1) {
    width: 10%;
    border-right: 1px solid rgb(200, 200, 200);
}
#tit > li > span:nth-child(2) {
    display: flex;
    flex-grow: 1;
}
#tit > li > span:nth-child(3) {
    width: 20%;
    border-left: 1px solid rgb(200, 200, 200);
}
#tit > li > span:nth-child(4) {
    width: 20%;
    border-left: 1px solid rgb(200, 200, 200);
}

#list {
    background-color: rgba(138, 109, 177, 0);
}

#list {
    position: relative;
    width: 100%;
}

#list > li {
    position: relative;
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: space-around;

    border-bottom: 1px solid rgb(200, 200, 200);
}



#list > li > a,
#list > li > span {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 100%;

    font-size: 14px;
    font-weight: 300;
    color: rgb(80, 80, 80);
}

#list > li > span:nth-child(1) {
    width: 10%;
    border-right: 1px solid rgb(200, 200, 200);
    flex-shrink: 0;
}
#list > li > a {
    display: flex;
    flex-grow: 1;
}
#list > li > span:nth-child(3) {
    width: 20%;
    border-left: 1px solid rgb(200, 200, 200);
    flex-shrink: 0;
}
#list > li > span:nth-child(4) {
    width: 20%;
    border-left: 1px solid rgb(200, 200, 200);
    flex-shrink: 0;
}



/* 리스트 네비 */
#list-nav {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;

    margin-top: 40px;

    
}

#list-nav > li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 30px;
    height: 30px;
    color: rgb(34, 34, 34);

    border: 1px solid rgb(85, 85, 85);
    margin-right: -1px;

    cursor: pointer;

    transition: all 0.5s ease;
}

#list-nav > li:hover {
    background-color: rgb(172, 172, 172);
}

#list-nav > li:first-child {
    background-color: rgb(85, 85, 85);
    border: 1px solid rgb(85, 85, 85);

    margin-left: -1px;
}

#list-nav > li:last-child {
    background-color: rgb(85, 85, 85);
    border: 1px solid rgb(85, 85, 85);
}

#list-nav > li > span {
    font-size: 14px;
    font-weight: 300;
}

#list-nav > li.active {
    background-color: rgb(34, 34, 34);
}
#list-nav > li.active > span {
    color: rgb(255, 255, 255);
}



@media (max-width: 1199.99px) {
    .board-box > .listbox {
        padding: 50px 20px 50px;
    }

    .board-box > .tit-box {
        position: relative;
        display: flex;
        flex-flow: row nowrap;
        width: 100%;
        padding: 20px;
        margin-bottom: 10px;
    }
    
}


@media (max-width: 768px) {

    #tit > li > span:nth-child(3) {
        display: none;
    }
    #tit > li > span:nth-child(4) {
        display: none;
    }

    #list > li > span:nth-child(3) {
        display: none;
    }
    #list > li > span:nth-child(4) {
        display: none;
    }


    #tit > li > span:nth-child(1) {
        width: 15%;
    }

    #list > li > span:nth-child(1) {
        width: 15%;
    }

    .board-box > .tit-box {
        position: relative;
        display: flex;
        flex-flow: column nowrap;
        width: 100%;
        padding: 10px 20px;
        margin-bottom: 20px;
    }
    
    .board-box > .tit-box > .leftbx {
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 30px;
    }
    .board-box > .tit-box > .leftbx > h3 {
        font-size: 24px;
        text-transform: uppercase;
        font-family: 'Archivo', sans-serif;
        color: rgb(51, 51, 51);
    }
    
    .board-box > .tit-box > .rightbx {
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .search-form {
        padding: 0 10px;
        width: 200px;
        height: 35px;
        font-size: 13px;
        font-weight: 400;
      }
      
      button.search-btn {
        width: 120px;
        height: 35px;
      
        font-size: 13px;   
      }

      .board-box > .listbox {
        padding: 0 0 50px;
    }

    .board-box > .listbox {
        padding: 0;
    }
}

@media (max-width: 576px) {

    #tit > li > span:nth-child(1) {
        width: 20%;
    }

    #list > li > span:nth-child(1) {
        width: 20%;
    }

    .search-form {
        padding: 0 10px;
        width: 170px;
        height: 32px;
        font-size: 13px;
        font-weight: 400;
      }
      
      button.search-btn {
        width: 100px;
        height: 32px;
      
        font-size: 13px;   
      }

      .board-box > .listbox {
        padding: 0;
    }
    
    
}