.accordion-body{
    max-width: 1438px;
    overflow-y: scroll;
    width: 100%;
    height: 583px;
    border-radius: 32px;
    background: #931726;
    padding: 15px 14px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: auto;
}

.accordion-body::-webkit-scrollbar {
    width: 9px;
    border-radius: 16px;
    background: #FF2D2D;
}

.accordion-body::-webkit-scrollbar-thumb {
    width: 9px;
    border-radius: 16px;
    background: #C6191D;
}

.container1{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s;
}

.accordion-wrapper{
    border-radius: 20px;
    background: #C6191D;
    min-height: 56px;
    transition: 0.4s;
    display: flex;
    align-items: center;
}

.accordion-wrapper1{
    border-radius: 20px;
    background: #FF2D2D;
    transition: 0.4s;
}

.label{
    max-width: 1330px;
    white-space: initial;
    cursor: pointer;
    color: #FFF;
    font-family: "Museo-500";
    font-size: 37px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.629px;
    padding: 6px 40px;
    text-align: start;
}

.content1 {
    color: #FFF;
    font-family: "Museo-500";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.408px;
    position: relative;
    height: 0;
    overflow: hidden;
    transition: 0.4s;
    text-align: start;
}

.content1 > a{
    color: #FFF;
    font-family: "Museo-500";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.408px;
    position: relative;
    height: 0;
    overflow: hidden;
    transition: 0.4s;
    text-align: start;
    text-decoration: underline;
}

.container1.active {
    transition: 0.4s;
}

.container1.active .accordion-wrapper{
    margin-bottom: 10px;
    transition: 0.4s;
}

.container1.active .label {
    height: auto;
    transition: 0.4s;
}

.container1.active .content1 {
    max-width: 1330px;
    height: auto;
    transition: 0.4s;
    min-height: 47px;
    padding: 8px 40px;
    /*display: flex;*/
    /*align-items: center;*/
}
