.textimg {
    margin: 70px 0;
}

.textimg__wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.textimg__text-title {
    font-weight: 800;
    font-size: 58px;
    line-height: 120%;
    margin: 0 0 30px;
}

.textimg__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #222;
    flex: 1 1 50%;
}

.textimg__img {
    flex: 1 1 50%;
}

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

@media screen and (max-width: 768px) {
    .textimg {
        margin: 40px 0;
    }
    .textimg__wrapper {
        flex-direction: column;
    }
    .textimg__text-title {
        font-weight: 700;
        font-size: 24px;
    }
    .textimg__img img {
        max-height: 220px;
    }
    .textimg__wrapper {
        gap: 20px;
    }
}