.unfolded {
    padding: 30px 0 70px;
}

.unfolded-text {
    padding: 50px 0 0;
}

.unfolded-set {
    margin-top: 30px;
    /* background: var(--grey-dark); */
}

.unfold {
    margin-bottom: 10px;
}

.unfold-content {
    min-width: 100%;
}

.unfold-header {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 25px;
    cursor: pointer;
    transition: all .3s ease;
}

.unfold-header:hover {
    background: var(--grey-dark);
}

.active .unfold-header {
    background: var(--grey-dark);
}

.unfold-left.v50 {
    max-width: 50%;
}

.unfold-icon {
    width: 16px;
    margin-right: 20px;
    position: relative;
}

.unfold-icon:before,
.unfold-icon:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white-color);
    transition: all .3s ease;
}

.unfold-icon:after {
    transform: rotateZ( -90deg) translateX(1px);
    transform-origin: center;
}

.active .unfold-icon:after {
    transform: rotateZ( 0deg) translateX(1px);
    transform-origin: center;
}

.unfold-title {
    font-size: 18px;
    line-height: 1.4;
    font-weight: bold;
}

.unfold-desc {
    font-size: 14px;
    font-weight: 400;
}

.unfold-content-inn {
    box-sizing: border-box;
    padding: 20px 25px 20px 60px;
    background: var(--grey-dark);
}

.unfold-content-form {
    width: 340px;
    margin: 50px auto;
}

@media (max-width: 960px) {
    .unfold-left.v50,
    .unfold-left {
        max-width: 100%;
        width: 100%;
    }
    .unfold-desc {
        width: 100%;
        box-sizing: border-box;
        padding-left: 35px;
        margin-top: 5px;
    }
    .unfold-content-form {
        max-width: 100%;
    }
}