 
.acc-container {
  max-width: 100%;
  width: 100%;
  background-color:var(--white);
  /*border-radius: 10px;
  padding:20px;
    box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  */
}

.acc {
  margin-bottom: 10px;
}

.acc-head {
  background-color: #213a59;
  padding:15px 20px;
  font-size:18px;
  position: relative;
  cursor: pointer;
  line-height:normal;
  vertical-align:middle;
  font-family:var(--body-font);
  font-weight:normal;
  /*border-radius: 8px;*/
 }

.acc-head h3 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    margin: 0;
}

 .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: 500;
}

.acc-content {
    padding: 25px;
    display: none;
    border: 1px solid #1e2e4a;
    border-top: 0;
}

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


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

