.accordions-container{
    max-width: 74%;
    margin-bottom: 40px;
}
.accordions-main-title{
    font-weight: 800;
    font-size: 5.2rem;
    line-height: 6.8rem;
    font-family: 'Playfair Display', serif;
    color: #343A74;
    margin-bottom: 40px;
}
.accordions-list-box{
    padding-bottom: 30px;
}
.acordeon-desc {
    display:none;
    margin-top: 20px;
}
.acordeon-desc p{
    max-width: initial;
}
.acordeon .acordeon-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #343A74;
    border-bottom: 4px solid #FDD173;
    line-height: 5rem;
    box-sizing: border-box;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}
.acordeon .acordeon-title:hover,
.acordeon.active .acordeon-title{
    border-bottom: 4px solid #343A74;
}
.acordeon.active .acordeon-title{

}
.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: 0px;
    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%;
    }
}