#ae-why-choose-us {
    padding: 50px 0;
    background: #fff;
}

#ae-why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.ae-section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.ae-section-heading .ae-subtitle {
    display: block;
    color: #F97316;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ae-section-heading h2 {
    position: relative;
    display: inline-block;
    /*font-size: 36px;
    font-weight: 700;
    color: #222;*/
    text-transform: uppercase;
    margin: 0;
}

.ae-section-heading h2:before,
.ae-section-heading h2:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 70px;
    height: 2px;
    background: #F97316;
}

.ae-section-heading h2:before {
    right: 100%;
    margin-right: 20px;
}

.ae-section-heading h2:after {
    left: 100%;
    margin-left: 20px;
}

.ae-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ae-features-column {
    flex: 1;
}

.ae-center-image {
    flex: 0 0 38%;
    text-align: center;
}

.ae-center-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ae-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eeeeee;
}


@media (min-width:991px) {
   .ae-feature-item:last-child {
      border-bottom: none;
   }
}

.ae-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border: 1px solid #f4d8cb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ae-icon i {
    font-size: 32px;
    color: #F97316;
}

.ae-text h3 {
    margin: 0 0 10px;
    /*font-size: 18px;
    font-weight: 700;
    color: #222;*/
    text-transform: uppercase;
}

.ae-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

@media (max-width:991px) {

    .ae-content {
        flex-direction: column;
        gap: unset;
    }

    .ae-center-image {
        order: -1;
        max-width: 500px;
        margin-bottom: 20px;
    }

    .ae-features-column {
        width: 100%;
    }

    .ae-section-heading h2 {
        font-size: 28px;
    }

    .ae-section-heading h2:before,
    .ae-section-heading h2:after {
        display: none;
    }
}

@media (max-width:767px) {

    #ae-why-choose-us {
        padding: 35px 0;
    }

    .ae-feature-item {
        gap: 15px;
        padding: 20px 0;
    }

    .ae-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .ae-icon i {
        font-size: 24px;
    }

    .ae-text h3 {
        font-size: 15px;
    }

    .ae-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .ae-section-heading h2 {
        font-size: 24px;
    }
}