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

.acc {
  margin-bottom: 10px;
}

.acc-head {
  background-color: var(--white);
    padding: 15px 20px;
    font-size: 20px;
    position: relative;
    cursor: pointer;
    line-height: normal;
    vertical-align: middle;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
 .acc-head p{
 	  margin:0;
 }
 .acc-head::before,
 .acc-head::after {
  content: '';
  position: absolute;
  top: 50%;
  background-color: #41609d;
  transition: all .3s;
 }

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

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

.acc-head p {
    color: #000000;
    font-weight: 400;
}

.acc-content {
  padding: 25px;
  display: none;
  background: #e1f3fc;
}
.acc-content  p:last-child{
  margin:0;
}
          
.acc-head.active::before {
    transform: rotate(90deg);
}
.acc-head.active{
	background-color:var(--primary-color);
  color: var(--white);
}
.acc-head.active p {
  color: var(--white);
}
.acc-head.active::before,
.acc-head.active::after {
  background-color: var(--white);
}


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


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

