#ae-how-it-works {
    padding: 40px 0;
    background: #ffffff;
}

#ae-how-it-works .ae-section-title {
    text-align: center;
    margin-bottom: 50px;
}

#ae-how-it-works .ae-section-title h2 {
    /*font-size: 36px;
    font-weight: 700;*/
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #2b2b2b;
}

#ae-how-it-works .ae-section-title h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #F97316;
    margin: 15px auto 0;
}

#ae-how-it-works .ae-section-title p {
    color: #777;
    font-size: 16px;
}

#ae-how-it-works .ae-hiw-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#ae-how-it-works .ae-step {
    flex: 1;
    text-align: center;
    max-width: 320px;
    position: relative;
}

#ae-how-it-works .ae-step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f8f8f8;
    border: 2px solid #F97316;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ae-how-it-works .ae-step-icon i {
    font-size: 36px;
    color: #F97316;
}

#ae-how-it-works .ae-step-number {
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    background: #F97316;
    color: #F8F8F8;
    font-weight: 700;
    margin: 0 auto 15px;
}

#ae-how-it-works .ae-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#ae-how-it-works .ae-step p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

#ae-how-it-works .ae-arrow {
    color: #f58220;
    font-size: 32px;
}

@media (max-width: 991px) {

    #ae-how-it-works .ae-hiw-steps {
        flex-direction: column;
    }

    #ae-how-it-works .ae-arrow {
        transform: rotate(90deg);
    }

    #ae-how-it-works .ae-step {
        max-width: 100%;
    }
}