.acc__header {
    cursor: pointer;
    display: flex;
    flex: 0 0 100%;
    max-width: 100%;
    align-items: center;
}

.acc__text{
    font-size: 24px;
    line-height: 31.2px;
    font-weight: 900;
    color: var(--blue-2);
}

.acc__icon{
    margin-left: -30px;
}

.opened .acc__icon{
    -ms-transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.acc__content {
    display: none;
    transition: all 0s;
    margin: 40px 0 0 0;
}

.acc_close{
    display: flex;
    align-items: center;
	margin-bottom: 30px;
    margin-left: 10px;
}

.acc__close-icon {
    margin-left: -30px;
    cursor: pointer;
}

.acc__close-text{
    font-size: 18px;
    line-height: 23.4px;
}

.acc__close-href{
    color: var(--blue-2);
    font-weight: 700;
    text-decoration: none;
}

.acc__cards {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}

.acc__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 240px;
}

.acc__card-number {
    font-weight: 900;
    font-size: 24px;
    line-height: 31.2px;
    color: var(--grey-2);
}

.acc__card-img{
    height: 40px;
}

.acc__card-about {
    font-weight: 700;
    font-size: 18px;
    line-height: 23.4px;
    color: var(--grey-2);
    text-align: center;
}

.acc__content-text{
    font-size: 18px;
    line-height: 23.4px;
    margin: 30px 0 70px 30px;
}

.acc__card-v2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 350px;
}

.acc__card-v2:first-child{
   margin-left: 50px;
}

.acc__card-v2-about {
    display: flex;
    align-items: flex-start;
}

.acc__card-v2-text{
    font-size: 18px;
    line-height: 23.4px;
    margin: 0 0 0 25px;
}

.acc__content-v2-text {
    font-size: 18px;
    line-height: 23.4px;
    margin: 0 0 0 50px;
    font-weight: 700;
    color: var(--grey-1);
}

@media screen and (max-width: 991px) {

    .acc__card-v2:first-child {
         margin-left: 0px;
    }

}

@media screen and (max-width: 767px) {

    .acc__cards {
        flex-direction: column;
        align-items: center;
    }

}