#service-desc-block .service-desc__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

#service-desc-block .service-desc__img {
    width: 100%;
    height: 100%;
    max-width: 620px;
    max-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

#service-desc-block .points__wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#service-desc-block .point__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

#service-desc-block .counter {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    background: var(--colors-main);
    color: var(--bg-primary-main);
    border-radius: 5px;
    height: 24px;
    width: 24px;
}

#service-desc-block .text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    color: var(--text-primary-second);
}

#service-desc-block .text :is(b, strong) {
    font-weight: 500;
    line-height: 120%;
    color: var(--bg-alt-second);
}

@media screen and (max-width: 868px) {
    #service-desc-block .service-desc__wrapper {
        flex-direction: column-reverse;
    }

    #service-desc-block .service-desc__img {
        max-width: unset;
    }
}

/*# sourceMappingURL=block.css.map */