.accordion-box{
    border-radius: 15px;
	overflow:hidden;
	border:1px solid #93b0ed;
}
.accordion {
background-color: #c3d3f6ba;
    color: #000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: right;
    outline: none;
    font-size: 1.6rem;
    transition: 0.4s;
	border-bottom:1px solid #93b0ed;
}
.accordion:last-child{
	border-bottom:none;
}
.active, .accordion:hover {
	background-color: #2156cd;
    color: white;
}

.accordion:after {
    content: '\e921';
    color: #092c7b;
    font-weight: bold;
    float: right;
    margin-left: 12px;
    margin-top: 8px;
    font-size: 16px;
    font-family: 'sanandaj';
}

.active:after {
    transform: rotate(180deg);
    color: white;
    margin-top: 4px;
}

.panel {
  padding:  0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-size: 1.6rem;
}

.inner-page .container {
    width: 65%;
    margin: 15px auto;
}
div#es-content {
    margin: 30px auto 80px auto;
}
.panel p {
    padding: 5px 0;
}
@media (max-width: 1200px){
.inner-page .container {
    width: 85%;
}
}