/* BASIC css start */
/* ÅÇ¸Þ´º */
.tabs {
  margin: 40px 0;
  padding: 0;
  list-style: none;
  position: relative;
  border-bottom: 1px solid #ccc;
  text-align: center;
}
.tabs .active-tab {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: none;
  position: relative;
  color: black;
}
.tabs .active-tab:after {
  width: 100%;
  height: 2px;
  position: absolute;
  content: "";
  bottom: -0.1em;
  left: 0;
  background: white;
}
.tabs li {
  display: inline-block;
  cursor: pointer;
  color: #000;
  padding: 10px 20px;
}
.tabs li:first-child {
  margin-left: 10px;
}

.tabs-content {
  margin: 20px 0px;
  padding: 0;
  list-style: none;
}
.tabs-content li {
  display: none;
}




/* ¾îÄÚµð¾ð */


.acc-container {

  width: 100%;
}


.acc {}

.acc-head {
  padding:18px 8px;
  font-size: 14px;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
 }

 .acc-head::before,
 .acc-head::after {
  content: '';
  position: absolute;
  top: 50%;
  background-color: #000;
  transition: all .3s;
 }

 .acc-head::before {
    right: 24px;
    width: 1px;
    height: 7px;
    margin-top: -5px;
}

.acc-head::after {
    right: 21px;
    width: 7px;
    height: 1px;
    margin-top: -2px;
}

.acc-head p {
  color: #000;
}

.acc-content {
  padding: 20px 10px;
  line-height: 19px;
  display: none;
}
        
.acc-head.active::before {
    transform: rotate(90deg);
}
.acc-head.active p {font-weight:bold}



.board-list {
display: grid;
grid-template-columns: 33% 33% 33%;
grid-column-gap: 1px;
grid-row-gap: 1px;
padding: 0 10px 80px;;
}

.board-list .box {
  background-color: white;
  text-align: center;
  box-shadow: 0 0 0 1px;
  padding: 15px;
}
.board-list .box a {padding:15px;}
/* BASIC css end */

