.banner__wrapper.banner--title-image {
    padding: 80px 0;
    background-color: var(--blue_4);
}
.banner--title-image .banner__content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 75px;
}
.banner--title-image .banner__content .banner__title {
    width: 100%;
    text-align: center;
}
.banner--title-image .banner__content h2 {
    color: var(--text_pr);
}
.banner--title-image .banner__body {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 490px;
    align-items: center;
    gap: 140px;
}
.banner--title-image .banner__body h3 {
    margin: 0 0 16px;
    color: var(--text_pr);
}
.banner--title-image .banner__body p {
    color: var(--text_sec);
}
.banner--title-image .banner__body .banner__image img{
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .banner--title-image .banner__body {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    .banner--title-image .banner__content {
        gap: 60px;
    }
}