.textblock_img-info {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--Simple-margin);
    width: 520px;
}
.textblock_img-text p {
    color: var(--Txt);
    margin-bottom: var(--Mini-margin);
}
.textblock_img-text p:last-child {
    margin-bottom: 0px;
}

.textblock_img-advantages {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--Simple-margin);
    align-items: start;
}
.textblock_img-advantage {
    position: relative;
    display: flex;
    gap: var(--Small-margin);
    align-items: center;
}
.textblock_img-advantage .img-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: var(--Background);
    border-radius: 5px;
    overflow: hidden;
}
.textblock_img-advantage .img-container img {
    width: 40px;
    height: 40px;
}

.textblock_img-container {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: var(--Simple-margin);
}
.textblock_img-img {
    position: relative;
    width: 630px;
    min-width: 630px;
    height: 543px;
    border-radius: 5px;
    overflow: hidden;
}
.textblock_img-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media(max-width: 1240px) {
    .textblock_img-img {
        width: 45%;
        min-width: 0px;
        height: auto;
    }
    .textblock_img-info {
        width: 60%;
    }
}

@media(max-width: 920px) {
    .textblock_img-container {
        flex-direction: column-reverse;
    }
    .textblock_img-img {
        width: 100%;
        max-height: 300px;
    }
    .textblock_img-info {
        width: 100%;
    }
    .textblock_img-advantages {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }
}