#seo-block .title-block {
    width: 33%;
}
.seo-block__wrapper {
    background-color: var(--background-thirdly);
    border-radius: 40px;
}
.seo-block__content {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
#seo-block .header-block__name {
    color: var(--main-text-primary);
}
#seo-block .title-block {
    color: var(--head-primary);
}
#seo-block .title-block__wrapper {
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
}
.seo-block__image {
    max-width: 620px;
    max-height: 460px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
}
.seo-block__text p,
.seo-block__text li {
    color: var(--main-text-primary);
    font-size: var(--font-size-13-16);
    font-weight: 400;
    line-height: 130%;
    font-family: 'Roboto';
    margin-bottom: 15px;
}
.seo-block__text li {
    padding-left: 40px;
    margin-bottom: 10px;
    position: relative;
    list-style: none;
}
.seo-block__text li:last-child {
    margin-bottom: 0;
}
.seo-block__text ol {
    counter-reset: index-li;
}
.seo-block__text ol,
.seo-block__text ul {
    margin-bottom: 20px;
}
.seo-block__text ol li::before {
    counter-increment: index-li;
    content: counter(index-li);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 5px;
    color: var(--background-thirdly);
    font-size: var(--font-size-13);
    font-weight: 400;
    line-height: 130%;
    font-family: 'Roboto';
    background-color: var(--second);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}
.seo-block__text ul li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 5px;
    color: var(--background-thirdly);
    font-size: var(--font-size-13);
    font-weight: 400;
    line-height: 130%;
    font-family: 'Roboto';
    background-color: var(--second);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}
.seo-block__text {
    max-width: 750px;
    width: 100%;
    max-height: 460px;
    height: 100%;
    overflow: auto;
    padding-right: 60px;
}
@media (max-width: 1024px) {
    .seo-block__text {
        padding-right: 20px;
    }
    .seo-block__wrapper {
        border-radius: 20px;
    }
}
@media(max-width: 768px) {
    .seo-block__content {
        flex-direction: column;
    }
    .seo-block__image {
        max-height: 320px;
        max-width: 100%;
    }
    .seo-block__text {
        max-width: 100%;
        width: 100%;
    }
}