

/* Start:/local/templates/carving/css/icon-block.css?17761683181823*/
.icon-block {
    background: #eff7ff;
    padding: 35px 0;
}

.icon-block__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.icon-block__content:before,
.icon-block__content:after {
    content: none;
}

.icon-block__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.icon-block__title {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #333;
}

.icon-block__sub-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #333;
    text-align: center;
}

.icon-block__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    row-gap: 30px;
}

.icon-block__list-count {
    counter-reset: structure-counter;
}

.icon-block__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 178px;
}

.icon-block__icon {
    position: relative;
}

.icon-block__list-count .icon-block__icon:before {
    counter-increment: structure-counter;
    content: counter(structure-counter);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    color: #005ec0;
    border-radius: 50%;
    border: 2px solid #005ec0;
    background-color: #fff;
    width: 23px;
    height: 23px;
    position: absolute;
    top: -8px;
    left: -8px;
}

.icon-block__item-text {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

@media (max-width: 991px) {
    .icon-block__title {
        font-size: 24px;
    }

    .icon-block__sub-title {
        font-size: 20px;
    }
}
/* End */


/* Start:/local/templates/carving/css/inner-page-form.css?17761683183527*/
.inner-form {
    padding: 40px 0;
    background: #fff;
}

.inner-form__block {
    position: relative;
    padding: 35px 55px;
    border-radius: 5px;
    background: #eff7ff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
    height: 100%;
}

.inner-form:before,
.inner-form:after {
    content: none;
}

.flex--center {
    justify-content: center;
}

.inner-form__image {
    position: absolute;
    top: 0;
    right: 0;
}

.inner-form__title-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inner-form__title {
    color: #333;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.inner-form__text {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.inner-form__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1;
}

.inner-form__row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.inner-form__property {
    width: calc(25% - 10px);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.inner-form__property.property--full {
    width: 100%;
}

.inner-form__label {
    margin: 0;
    color: #959595;
    font-weight: 400;
    line-height: 24px;
}

.inner-form__property input {
    max-width: unset;
    width: 100%;
    height: 48px;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 3px;
    border: 1px solid #d4d4d4;
}

.inner-form__property textarea {
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 3px;
    border: 1px solid #d4d4d4;
    background: #fff;
}

.inner-form__property input::placeholder {
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
}

.inner-form__button-block {
    display: flex;
    align-items: center;
    gap: 20px;
    width: calc(50% - 20px);
}

.inner-form__button {
    width: calc(50% - 10px);
    flex-shrink: 0;
    padding: 12px 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    border: unset;
    border-radius: 4px;
    background: #005ec0;
}

.inner-form__button:hover {
    background-color: #006ee1;
}

.inner-form-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
}

.inner-form__property:has(input[name="surname"]) {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.inner-form__error {
    display: none;
    color: #ff0000;
}

.text--blue {
    color: #005ec0;
}

.text--red {
    color: #ff0000;
}

@media (max-width: 991px) {
    .inner-form__block {
        padding: 30px 45px;
        margin: 0 20px;
    }

    .inner-form__row {
        row-gap: 15px;
    }

    .inner-form__property {
        width: calc(50% - 10px);
    }

    .inner-form__title {
        font-size: 24px;
    }

    .inner-form__text {
        font-size: 18px;
    }

    .inner-form__button-block {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .inner-form {
        padding: 30px 0;
    }

    .inner-form__block {
        padding: 30px 35px;
        margin: 0;
    }

    .inner-form__title {
        font-size: 20px;
    }

    .inner-form__text {
        font-size: 16px;
    }

    .inner-form__row {
        flex-direction: column;
    }

    .inner-form__property {
        width: 100%;
    }

    .inner-form__button-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .inner-form__button {
        width: 100%;
    }
}

/* End */


/* Start:/local/templates/carving/css/kmu-type.css?17761683182852*/
.kmu-type {
    padding: 40px 0;
    background: #fff;
}

.kmu-type__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kmu-type__container.container:before,
.kmu-type__container.container:after {
    content: none;
}

.kmu-type__header {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kmu-type__title {
    margin: 0;
    color: #333;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.kmu-type__text {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.kmu-type__items {
    display: flex;
    gap: 30px;
}

.kmu-type__item {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.kmu-type__item-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 350px;
    aspect-ratio: 570/350;
}

.kmu-type__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.kmu-type__item-title {
    padding: 10px 20px;
    background: #005ec0;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    width: fit-content;
}

.kmu-type__item-text {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.kmu-type__list {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 50px;
    list-type: none;
}

.kmu-type__list li {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #333;
}

.kmu-type__list li:before {
    content: '•';
    width: 5px;
    height: 5px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .kmu-type__container.container {
        padding: 0 30px;
    }

    .kmu-type__header {
        gap: 20px;
    }

    .kmu-type__title {
        font-size: 24px;
        text-align: center;
    }

    .kmu-type__text {
        font-size: 16px;
        text-align: center;
    }

    .kmu-type__items {
        gap: 20px;
    }

    .kmu-type__item-text {
        font-size: 16px;
    }

    .kmu-type__list {
        justify-content: center;
    }

    .kmu-type__list li {
        font-size: 16px;
    }
}

@media (max-width: 700px) {
    .kmu-type {
        padding: 30px 0;
    }

    .kmu-type__container.container {
        padding: 0 15px;
    }

    .kmu-type__items {
        flex-direction: column;
        gap: 30px;
    }

    .kmu-type__item {
        width: 100%;
    }

    .kmu-type__list {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 5px;
    }
}
/* End */


/* Start:/local/templates/carving/css/chassis-type.css?17761683182951*/
.chassis-type {
    padding: 40px 0;
    background: #fff;
}

.chassis-type__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.chassis-type__container.container:before,
.chassis-type__container.container:after {
    content: none;
}

.chassis-type__header {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.chassis-type__title {
    margin: 0;
    color: #333;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.chassis-type__text {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.chassis-type__items {
    display: flex;
    flex-wrap: wrap;
    --gap: 30px;
    gap: var(--gap);
    row-gap: 20px;
    --column: 3;
}

.chassis-type__item {
    width: calc((100% - ((var(--column) - 1) * var(--gap))) / var(--column));
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.chassis-type__item-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 254px;
    aspect-ratio: 415/254;
}

.chassis-type__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.chassis-type__item-title {
    padding: 10px 20px;
    background: #005ec0;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    width: fit-content;
}

.chassis-type__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chassis-type__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    row-gap: 15px;
}

.chassis-type__list li {
    width: calc(33% - 20px);
    display: flex;
    align-items: baseline;
    gap: 15px;
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.chassis-type__list li:before {
    content: '';
    width: 26px;
    height: 19px;
    background-image: url("/local/templates/carving/img/list-marker.svg");
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .chassis-type__container.container {
        padding: 0 30px;
    }

    .chassis-type__header {
        gap: 20px;
    }

    .chassis-type__title {
        font-size: 24px;
        text-align: center;
    }

    .chassis-type__text {
        font-size: 16px;
        text-align: center;
    }

    .chassis-type__items {
        --gap: 20px;
        --column: 2;
        row-gap: 30px;
    }

    .chassis-type__list li {
        width: calc(50% - 15px);
        font-size: 20px;
    }
}

@media (max-width: 700px) {
    .chassis-type__item {
        width: 100%;
    }

    .chassis-type__item-image {
        max-height: none;
    }

    .chassis-type__list li {
        width: 100%;
        align-items: center;
    }
}
/* End */


/* Start:/local/templates/carving/css/why-installation.css?17761683181895*/
.why-installation {
    padding: 32px;
    background: #fff;
}

.why-installation__container {
    border-radius: 5px;
    background: #EFF7FF;
    display: flex;
    justify-content: center;
}

.why-installation__content {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 800px;
}

.why-installation__title {
    margin: 0;
    color: #005ec0;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.why-installation__image {
    flex-shrink: 0;
}

.why-installation__info {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.why-installation__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-installation__list li {
    display: flex;
    align-items: baseline;
    gap: 15px;
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.why-installation__list li:before {
    content: '';
    width: 26px;
    height: 19px;
    background-image: url("/local/templates/carving/img/list-marker.svg");
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .why-installation__content {
        width: 100%;
        padding: 35px 14px;
    }

    .why-installation__title {
        font-size: 24px;
        text-align: center;
    }

    .why-installation__list li {
        font-size: 20px;
    }
}

@media (max-width: 700px) {
    .why-installation__content {
        padding: 30px 5px;
        align-items: center;
    }

    .why-installation__title {
        width: 80%;
    }

    .why-installation__info {
        flex-direction: column;
        gap: 20px;
    }

    .why-installation__image {
        display: flex;
        justify-content: center;
    }

    .why-installation__list li {
        font-size: 18px;
        align-items: center;
    }
}
/* End */


/* Start:/local/templates/carving/components/bitrix/news.list/kmu_manufacture/style.css?17761683182560*/
.kmu-manufacture {
    background: #fff;
    padding: 35px 0;
}

.kmu-manufacture__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kmu-manufacture__content:before,
.kmu-manufacture__content:after {
    content: none;
}

.kmu-manufacture__title {
    color: #333;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-align: left;
    margin: 0;
    padding: 0;
}

.kmu-manufacture__text {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.kmu-manufacture__list {
    display: flex;
    flex-wrap: wrap;
    --gap: 50px;
    gap: var(--gap);
    --column: 4;
    margin: 0 -25px;
    width: 100%;
}

.kmu-manufacture__item {
    width: calc((100% - ((var(--column) - 1) * var(--gap))) / var(--column));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e2e2e2;
    gap: 20px;
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0 25px;
    height: 250px;
}

.kmu-manufacture__item-link {
    height: 100%;
    padding: 20px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kmu-manufacture__item-image,
.kmu-manufacture__item-main-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 130px;
}

.kmu-manufacture__item-image img {
    width: 100%;
    height: auto;
}

.kmu-manufacture__item-main-block {
    color: #005EC0;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.kmu-manufacture__item-text {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-align: center;
}

.kmu-manufacture__list .slick-prev:before,
.kmu-manufacture__list .slick-next:before {
    color: #005EC0;
}

@media (max-width: 991px) {
    .kmu-manufacture {
        padding: 35px 15px;
    }

    .kmu-manufacture__title {
        text-align: center;
        font-size: 24px;
    }

    .kmu-manufacture__list {
        --gap: 20px;
        --column: 3;
        row-gap: 30px;
    }
}

@media (max-width: 767px) {
    .kmu-manufacture__list {
        --gap: 20px;
        --column: 2;
        row-gap: 20px;
    }

    .kmu-manufacture__item {
        margin: 0 10px;
    }

    .kmu-manufacture__content {
        align-items: center;
    }

    .kmu-manufacture__item-image {
        max-height: none;
    }
}

/* End */


/* Start:/local/templates/carving/css/how-choose-crane.css?17761683182292*/
.how-choose-crane {
    background: #eff7ff;
    padding: 35px 0;
}

.how-choose-crane__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.how-choose-crane__container.container:before,
.how-choose-crane__container.container:after {
    content: none;
}

.how-choose-crane__header {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.how-choose-crane__title {
    margin: 0;
    color: #333;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.how-choose-crane__text-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.how-choose-crane__text {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.how-choose-crane__text-bold {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.how-choose-crane__info {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.how-choose-crane__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(50% - 25px);
}

.how-choose-crane__list li {
    display: flex;
    align-items: baseline;
    gap: 15px;
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.how-choose-crane__list li:before {
    content: '';
    width: 26px;
    height: 19px;
    background-image: url("/local/templates/carving/img/list-marker.svg");
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .how-choose-crane__title {
        font-size: 24px;
        text-align: center;
    }

    .how-choose-crane__text {
        font-size: 16px;
        text-align: center;
    }

    .how-choose-crane__text-bold {
        font-size: 16px;
        text-align: center;
    }

    .how-choose-crane__info {
        justify-content: center;
        gap: 30px;
    }

    .how-choose-crane__list {
        width: calc(50% - 15px);
    }
}

@media (max-width: 700px) {
    .how-choose-crane__info {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .how-choose-crane__list {
        width: 80%;
    }

    .how-choose-crane__list li {
        align-items: center;
    }
}
/* End */


/* Start:/local/templates/carving/css/cost.css?17761683181334*/
.cost-block {
    padding: 40px 0;
    background: #fff;
}

.cost-block__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cost-block__title {
    margin: 0;
    padding: 0;
    text-align: left;
    color: #333;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.cost-block__table {
    display: flex;
    gap: 1px;
}

.cost-block__table-column {
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: calc(50% - 1px);
}

.cost-block__table-header {
    padding: 20px 24px;
    background: #005ec0;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.cost-block__table-row {
    padding: 25px 24px;
    background: #f0f0f0;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    height: 100%;
}

.cost-block__list {
    margin: 0;
    padding: 0 0 0 24px;
}

.cost-block__note {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 991px) {
    .cost-block__title {
        font-size: 24px;
    }
}

@media (max-width: 700px) {
    .cost-block__table {
        flex-direction: column;
    }

    .cost-block__table-column {
        width: 100%;
    }
}
/* End */


/* Start:/local/templates/carving/components/bitrix/news.list/cases_list/style.css?17809223201951*/
.cases-list {
    background: #eff7ff;
    padding: 35px 0;
}

.cases-list__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cases-list__title {
    color: #333;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-align: left;
    margin: 0;
    padding: 0;
}

.cases-list__items {
    display: flex;
    flex-wrap: wrap;
    --gap: 30px;
    gap: var(--gap);
    --column: 3;
}

.cases-list__item {
    width: calc((100% - ((var(--column) - 1) * var(--gap))) / var(--column));
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.cases-list__item-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 239px;
    aspect-ratio: 390/239;
}

.cases-list__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cases-list__item-title {
    padding: 10px 20px;
    background: #005ec0;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.cases-list__item-props {
    display: flex;
    gap: 20px;
}

.cases-list__item-prop {
    display: flex;
    flex-direction: column;
}

.cases-list__item-prop-value {
    font-size: 20px;
    font-weight: 700;
    word-wrap: break-word;
}

.cases-list__item-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

@media (max-width: 991px) {
    .cases-list {
        padding: 35px 15px;
    }

    .cases-list__items {
        --gap: 20px;
        --column: 2;
        row-gap: 30px;
    }

    .cases-list__item-prop {
        width: calc(50% - 10px);
    }
}

@media (max-width: 991px) {
    .cases-list__item {
        width: 100%;
    }

    .cases-list__item-image {
        max-height: none;
    }
}

/* End */


/* Start:/local/templates/carving/components/bitrix/news.list/faq_list_wide/style.css?17761683181750*/
.faq-list-wide {
    background: #fff;
}

.faq-list-wide__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-list-wide__title {
    color: #333;
    margin: 0;
    padding: 0;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-align: left;
}

.faq-list-wide__items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-direction: column;
}

.faq-list-wide__item {
    border: 1px solid #e2e2e2;
}

.faq-list-wide__item_opened {
    background: #eff7ff;
}

.faq-list-wide__item-question {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    padding: 30px 25px 30px 35px;
    cursor: pointer;
    position: relative;
}

.faq-list-wide__item-question:after {
    content: '';
    background-image: url(/local/templates/carving/components/bitrix/news.list/faq_list_wide/image/arrow.svg);
    width: 18px;
    height: 9px;
    position: absolute;
    display: block;
    right: 25px;
    top: 50%;
    transition: 0.3s;
}

.faq-list-wide__item_opened .faq-list-wide__item-question:after {
    transform: rotate(180deg);
}

.faq-list-wide__item-answer {
    display: none;
    padding: 0 35px 25px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

@media screen and (max-width: 991px) {
    .faq-list-wide__title {
        text-align: center;
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .faq-list-wide__items {
        flex-direction: column;
    }

    .faq-list-wide__items-column {
        width: 100%;
    }

    .faq-list-wide__item-question {
        padding: 15px 15px 15px 22px;
        font-size: 16px;
    }

    .faq-list-wide__item-answer {
        padding: 15px;
    }
}
/* End */
/* /local/templates/carving/css/icon-block.css?17761683181823 */
/* /local/templates/carving/css/inner-page-form.css?17761683183527 */
/* /local/templates/carving/css/kmu-type.css?17761683182852 */
/* /local/templates/carving/css/chassis-type.css?17761683182951 */
/* /local/templates/carving/css/why-installation.css?17761683181895 */
/* /local/templates/carving/components/bitrix/news.list/kmu_manufacture/style.css?17761683182560 */
/* /local/templates/carving/css/how-choose-crane.css?17761683182292 */
/* /local/templates/carving/css/cost.css?17761683181334 */
/* /local/templates/carving/components/bitrix/news.list/cases_list/style.css?17809223201951 */
/* /local/templates/carving/components/bitrix/news.list/faq_list_wide/style.css?17761683181750 */
