.about_app_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--black_low);
    clip-path: polygon(0% 0%, 100% 8rem, 100% 100%, 0% calc(100% - 8rem));
}

.about_app_section .custom_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
    padding: 8rem 1rem;
}

.about_app_section .content h4 {
    color: var(--blue);
    margin-bottom: 1.5rem;
}
.about_app_section .content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-top: 1rem;
}
.about_app_section .actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
}

.about_app_section .content .texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    padding-left: 2rem;
}
.about_app_section .content .texts p{
    line-height: 1.75rem;
}

.about_app_section .content .image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding-right: 2rem;
}

.about_app_section .content .image img {
    width: 100%;
}

.about_app_section h5 {
    margin-bottom: 1rem;
    color: var(--blue);
}
.about_app_section p {
    text-align: start;
    margin-bottom: .5rem;
}

@media only screen and (max-width: 1140px) {
    .about_app_section .content {
        width: 90%;
    }
}

@media only screen and (max-width: 720px) {
    .about_app_section .content {
        flex-direction: column;
    }

    .about_app_section .content .texts {
        width: 80%;
        padding-left: 0;
        align-items: center;
    }

    .about_app_section .content h4 {
        color: var(--blue);
        margin-bottom: 1.5rem;
        margin-top: 1.25rem;
    }

    .about_app_section .content .texts p {
        text-align: center;
    }

    .about_app_section .content .image {
        min-width: 360px;
        width: 70%;

    }
}