.text-img-wrap{
    width: 100%;
    padding: 12px 0;
    display: flex;
    align-items: center;
    position: relative;
}
.text-img-wrap .title{
    padding: 16px 24px;
    background: var(--main-color);
    color: var(--white-color);
    border-radius: 16px;
    z-index: 2;
    width: 180px;
    height: max-content;
}
.text-img-wrap .title *{
    font-size: 16px;
    line-height: 32px;
    font-weight: 500;
    margin: 0;
}
.text-img-wrap .text{
    width: calc(100% - 243px);
    padding: 16px 97px 16px 34px;
    margin: 24px -73px 24px -10px;
    color: var(--black-color);
    border: 1px solid #EAEAEA;
    border-radius: 0 16px 16px 0;
    z-index: 1;
}
.text-img-wrap .text *{
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    margin: 0;
}
.text-img-wrap .img{
    width: 170px;
    height: 100%;
    padding: 12px 16px;
    background: #F6F6F6;
    border: 1px solid #EAEAEA;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-img-wrap .img img{
    width: 100%;
    height: auto;
}
@media (max-width: 1199px) {
    .text-img-wrap{
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
    .text-img-wrap .title{
        width: auto;
    }
    .text-img-wrap .text{
        width: 100%;
        margin: -24px auto 0;
        border-radius: 16px;
        padding: 32px 16px 62px;
    }
    .text-img-wrap .img{
        width: 200px;
        max-width: 100%;
        padding: 16px;
        margin-top: -45px;
    }
}