.accordions-container{
    margin-bottom: 60px;
}
.accordions-main-title{
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.accordions-list-box{
    padding-bottom: 30px;
}
.acordeon-desc {
    display:none;
    margin-top: 20px;
    padding:0 20px;
}
.acordeon-desc p{
    max-width: initial;
}
.acordeon .acordeon-title {
    position: relative;
    width: 100%;
    background-color: var(--primary);
    padding: 10px 50px 10px 20px;
    min-height: 50px;
    cursor: pointer;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 17px;
    line-height: 29px;
    color: #fff;

}
.acordeon .acordeon-title:hover,
.acordeon.active .acordeon-title{
    background-color: var(--secondary);
}

.acordeon .acordeon-title:after{
    background: url(../../../assets/images/plus.svg) no-repeat left;
    content: "";
    display: block;
    width: 15px;
    height: 14px;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: 17px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.acordeon.active .acordeon-title:after{
    background: url(../../../assets/images/minus.svg) no-repeat left;

}
@media only screen and (max-width: 1024px) {
    .accordions-container {
        max-width: 100%;
    }
}