.features-section {
    padding: 3rem 0;
    background: white;
}

.features-section-about {
    padding: 0px;
    background: url(../img/bg-about.jpg) no-repeat;
    background-size: cover;
    margin-bottom: 100px;
}

.content-about-sub {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: end;
    height: 100%;
}

.content-empty {
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    position: relative;
}

.content-empty h2 {
    font-size: 2.375rem;
    color: white;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 20px;
}

.content-empty p {
    font-size: 16px;
    color: white;
    font-weight: 400;
    line-height: 29px;

}

.content-about-sub-content {
    background: white;
    height: 100%;
    display: flex;
    width: 50%;
    flex-direction: column;
    padding: 60px 20px 10px;
    align-items: center;
}

.content-about-sub-content h2 {
    font-size: 2.375rem;
    color: var(--black-color);
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 20px;
}

.content-about-sub-content-list {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0px;
}

.content-about-sub-content span {
    padding: 20px 30px;
    width: 50%;
    margin: 0;
    transition: all 0.3s ease 0s;
    font-size: 20px;
    font-weight: 600;
}

/* === ABOUT SECTION === */
.grid-about {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.about-card {
    width: 60%;
    background-color: white;
    z-index: 4;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.04);
    padding: 70px 75px 14px;
    position: relative;
    left: 12px;
}

.about-card h5 {
    font-size: 14px;
    color: var(--header-color);
    text-transform: Uppercase;
    letter-spacing: 1.4px;
}

.about-card h2 {
    font-size: 3.375rem;
    font-weight: 800;
    line-height: 50px;
    color: var(--header-color);
    margin: 20px 0px;

}

.about-card p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--header-color);
}

.about-image {
    width: calc(50% - 20px);
    background: #fff;
    position: relative;
    left: 34px;
}

.about-image img {
    position: relative;
    z-index: 5;
    left: 25px;
}

.about-image::before {
    content: "";
    display: block;
    background: var(--primary-color);
    transform: translateX(-30px);
    height: calc(100% - 40px);
    width: 190px;
    position: absolute;
    bottom: -41px;
    left: 32px;
    z-index: 1;
}


.container-about {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.container-right-content {
    padding: 0px 40px;
}
.container-right-content h2 {
    font-size: 20px;
}

.container-right {
    width: 50%;
    display: flex;
    padding: 25px 0px;
}


.container-left {
    width: 50%;
}


/* RESPONSIVO */

@media (max-width: 1440px) {
    .about-image {
        width: calc(35% - 20px);
    }

    .about-image::before {
        right: -20px;
    }

}

@media (max-width: 1199px) {
    .container-left {
        display: none;
    }

    .content-about-sub {
        flex-wrap: wrap;
    }
    .content-about-sub-content{
        width: 100%;
    }
    .content-empty {
        width: 100%;
        align-items: center;
        padding: 20px 0px 0px;
    }
}

@media (max-width: 991px) {
    .about-image {
        display: none;
    }

    .container-right-content {
        width: 100%;
        margin-bottom: 50px;
    }

    .container-right {
        width: 100%;
        flex-wrap: wrap;
    }

    .about-card {
        width: 100%;
    }
}



@media (max-width: 480px) {

    .features-section-about {}

    .features-section,
    .process-section,
    .testimonials-section,
    .categories-section {
        padding: 2rem 0;
    }
}