.about_heading {
    margin-bottom: 40px;
}

.about_heading h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    color: #363636;
    max-width: 613px;
    margin: 0 auto;
    text-align: center;
}

.about_row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 40px;
}

.about_section.revrese_direction .about_row {
    flex-direction: row-reverse;
}

.about_column {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

.about_image img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.about_logo {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.about_logo_image img {
    width: auto;
    height: 100px;
    object-fit: cover;
}

.about_title h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    color: #363636;
    margin-bottom: 20px;
}

.about_para p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 10px;
}

.about_para p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199px) {

    .about_heading {
        margin-bottom: 35px;
    }

    .about_heading h2 {
        font-size: 32px;
        line-height: 42px;
        max-width: 100%;
    }

    .about_row {
        gap: 30px;
    }

    .about_column {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .about_logo {
        gap: 20px;
        margin-bottom: 15px;
    }

    .about_logo_image img {
        height: 80px;
    }

    .about_title h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .about_para p {
        line-height: 24px;
    }

}

@media (max-width: 991px) {

    .about_heading {
        margin-bottom: 30px;
    }

    .about_heading h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .about_row {
        gap: 16px;
    }

    .about_column {
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .about_logo {
        gap: 15px;
    }

    .about_logo_image img {
        height: 60px;
    }

    .about_title h2 {
        font-size: 20px;
    }

    .about_para p {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {

    .about_heading {
        margin-bottom: 25px;
    }

    .about_heading h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .about_row {
        gap: 20px;
        flex-direction: column;
    }

    .about_column {
        flex: 100%;
        max-width: 100%;
        width: 100%;
    }

    .about_logo_image img {
        height: 50px;
    }

    .about_title h2 {
        font-size: 18px;
    }

    .about_section.revrese_direction .about_row {
        flex-direction: column;
    }
    
}