.faq-up{
    max-width: 756px;
    width: 100%;
    padding-bottom: 75px;
}

.faq{
    max-width: 667px;
    overflow-y: scroll;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    height: 480px;
}
.accordion-body{
    max-width: 667px;
    width: 100%;
}

.faq::-webkit-scrollbar {
    width: 10px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.50);
}

.faq::-webkit-scrollbar-thumb {
    width: 10px;
    /*height: 118px;*/
    border-radius: 0;
    background: #2859F6;
}

.container1.active {
    padding-top: 10px;
    flex-direction: column;
    transition: 0.5s;
}

.container1{
    max-width: 638px;
    border-bottom: rgba(255, 255, 255, 0.50) solid 3px;
    position: relative;
    transition: 0.5s;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.label{
    width: 600px;
    white-space: initial;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 20px 0 0;
    text-align: left;
    margin: 10px 0;
}

.label >span{
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    min-width: 40px;
    text-align: left;
}


.content1 {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    position: relative;
    height: 0;
    overflow: hidden;
    transition: 0.3s;
}
.accordion hr {
    width: 550px;
    margin-left: 0;
}
.container1.active .label {
    height: auto;
    padding: 0 20px 0 0;
    transition: 0.3s;
}
.container1.active .content1 {
    height: auto;
    padding: 0 0 20px 40px;
    transition: 0.3s;
}

.label::before {
    content: url("/static/img/Arrow 1.png");
    position: absolute;
    top: 24px;
    right: 0;
    transition: 0.3s;
}

.container1.active .label::before {
    content: url("/static/img/Arrow 1.png");
    /*padding: 4px 8px;*/
    position: absolute;
    top: 24px;
    right: 0;
    rotate: 180deg;
    transition: 0.3s;
}
