.stages {
    background-color: #FFFFFF99;
}

.stages__wrap {
    border-bottom: 1px #82ADEE solid;
    padding: 32px 0;
}

.stages__wrap:last-child {
    border-bottom: none;
}

.stages__header {
    display: flex;
    justify-content: left;
    align-items: center;
    cursor: pointer;
}

.stages__number {
    width: 70px;
    font-weight: 700;
    font-size: 80px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #82ADEE;
}

.stages__title {
    color: #1F2C94;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
}

.stages__arrow {
    margin-left: auto;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50px;
    background-color: #2F80ED;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.stages__content {
    margin-top: 16px;
    margin-left: 70px;
    font-size: 24px;
    display: none;
}


.stages__btn {
    margin-bottom: 16px;
    text-wrap: auto;
}

.stages__btn.is-inline {
    margin-top: 8px;
    margin-bottom: 8px;
}

.stages__content p {
    margin-bottom: 16px;
}

.stages__content p.is-alert {
    color: #F84040;
    text-transform: uppercase;
}

.stages__content p.no-mgb {
    margin-bottom: 0;
}

.stages__content p.is-li {
    margin-left: 20px;
}

.stages__content[data-open="true"] {
    display: block;
}

.stages__arrow svg {
    transition: transform 0.3s ease;
}

.stages__arrow[data-open="true"] svg {
    transform: rotate(180deg);
}

.stages__alert {}

@media (max-width: 992px) {
    .stages__number {
        min-width: 50px;
        width: 50px;
        font-size: 60px;
    }

    .stages__title {
        font-size: 18px;
    }

    .stages__content {
        margin-left: 0;
        font-size: 16px;
    }

    .stages__content p.is-li {
        margin-left: 10px;
    }
}