 
.acc-container {
  max-width: 100%;
  width: 100%;  
}

.acc {
  margin-bottom: 10px;
}

.acc-head {
    background-color: var(--white);
    padding: 22px 0px;
    font-size: 23px;
    position: relative;
    cursor: pointer;
    line-height: normal;
    vertical-align: middle;
    border-bottom: 1px solid #ebebeb;
}


 .acc-head p{
 	margin:0;
 }
 .acc-head::before,
 .acc-head::after {
  content: '';
  position: absolute;
  top: 50%;
  background-color: var(--secondary-color);
  transition: all .3s;
 }

 .acc-head::before {
  right: 30px;
  width: 3px;
  height: 20px;
  margin-top: -10px;
}

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

.acc-head p {
  color: var(--black);
  font-weight: 700;
}

.acc-content {
  padding: 0 0 25px 0;
  border-bottom: 1px solid #ebebeb;
  display: none;
}
.acc-content  p:last-child{
  margin:0;
}
          
.acc-head.active::before {
    transform: rotate(90deg);
}
.acc-head.active{
  border-bottom: 0;
}
.acc-head.active p {
    color: var(--primary-color);
    font-weight: 700;
}

/************************************* 480px *************************************/
@media only screen and (max-width: 640px) {


.acc-head {
  
  padding:10px 20px;
  font-size: 14px;
  font-weight:normal;
 
 
 }
 	  
}

