#accordeon {
}
.acc-head {
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: none;
    border-top: 1px solid #989898;
    background: transparent;
    padding: 13px 0;
	cursor: pointer;
}
.acc-title {
	margin-right: 25px;
    text-align: left;
    font-size: 20px;
    font-family: InterText;
    display: flex;
    flex-wrap: wrap;
}
.acc-title div span {
    text-transform: uppercase;
    font-family: Inter;
    display: inline-block;
    width: 100%;
    padding-right: 40%;
}
.acc-title div {
    flex-basis: 50%;
    padding: 0px;
    margin: 0px;
    align-items: center;
    justify-content: center;
    display: flex;
}
.acc-icon {
    font-size: 30px;
    font-weight: 100;
    color: #2C2C2D;
    line-height: 0;
    margin-bottom: 5px;
}
.acc-icon img {
    width: 60px;
    height: 60px;
    padding: 15px;
    border: 1px solid #111111;
    border-radius: 50%;
}
.acc-close .acc-icon img {

}
.acc-open .acc-icon img {
	transform: rotate(180deg);
}
.acc-body {
	display: none;
}
.accordion--close {

}
.accordion--open {
	
}