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

.acc {
  margin-bottom: 10px;
}

.acc-head {
  background-color: var(--primary-color);
  padding:15px 20px;
  font-size: 20px;
  position: relative;
  cursor: pointer;
  line-height:normal;
  vertical-align:middle;
 
 
 }
 .acc-head p{
 	margin:0;
 }
 .acc-head::before,
 .acc-head::after {
  content: '';
  position: absolute;
  top: 50%;
  background-color: #fff;
  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: #fff;
  font-weight: bold;
}

.acc-content {
  padding: 25px;
  display: none;
}
.acc-content  p:last-child{
  margin:0;
}
          
.acc-head.active::before {
    transform: rotate(90deg);
}
.acc-head.active{
	background-color:var(--tertiary-color);
}
/************************************* 480px *************************************/
@media only screen and (max-width: 640px) {


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

