.banner_about {
    margin: 70px 0 120px;
}
.banner_about .content_banner{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
    height: 100%;
}
.banner_about .name_banner {
    font-weight: 900;
    font-size: 64px;
    line-height: 110%;
    color: #222222;
}
.banner_about .description_banner {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: #222222;
}
.banner_about .image_banner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_about .image_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media screen and (max-width: 1280px) {
    .banner_about .image_banner img {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .banner_about .name_banner {
        font-size: 40px;
    }
}

@media screen and (max-width: 767px) {
    .banner_about {
        margin: 25px 0;
    }
    .banner_about .col6 {
        width: calc(100% - 20px);
    }
    .banner_about .image_banner {
        margin-top: 20px;
        height: auto;
    }
    .banner_about .image_banner img {
        height: auto;
    }
    .banner_about .name_banner {
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 120%;
    }
    .banner_about .description_banner {
        font-size: 14px;
    }
    .banner_about .content_banner {
        gap: 16px;
    }
}

@media screen and (max-width: 375px) {
    .banner_about .image_banner img {
        max-width: 280px;
    }
}