.section {}
.section__title {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 15px;
}
.section__text {
    font-size: 16px;
    line-height: 1.4;
    font-weight: normal;
}
.section_mt {
    margin-top: 50px;
}

.tile-block {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 24px 0;
}
.tile-block__item {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    border: 2px solid #ddd;
    padding: 20px;
}
.tile-block__name {
    font-size: 16px;
    line-height: 1.2;
    font-weight: bold;
}
.tile-block__text {
    font-size: 14px;
    line-height: 1.4;
    font-weight: normal;
    margin-bottom: 10px;
}
.tile-block__text a:not([class]) {
    color: #ff8000;
}
.tile-block__img {
    display: block;
    max-width: 100%;
    height: 150px;
    object-position: center center;
    object-fit: contain;
    margin-top: auto;
}
@media screen and (min-width: 768px) {
    .tile-block__item {
        flex: 0 0 50%;
        max-width: calc(50% - 12px);
    }
}
@media screen and (min-width: 992px) {
    .tile-block__item {
        flex: 0 0 33.33333333%;
        max-width: calc(33.33333333% - 16px);
    }
}

.types-block {
    margin: 20px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    counter-reset: typesItem;
}
.types-block__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 2px solid #ddd;
    padding: 20px 20px 20px 64px;
    position: relative;
    counter-increment: typesItem;
}
.types-block__item:before {
    content: counter(typesItem);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40px;
    background: #f2e9e8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    font-weight: normal;
    opacity: 0.7;
}
.types-block__name {
    font-size: 16px;
    line-height: 1.2;
    font-weight: bold;
}
.types-block__text {
    font-size: 14px;
    line-height: 1.4;
    font-weight: normal;
}
.types-block__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.types-block__gallery-item {
    flex: 0 0 50%;
    max-width: calc(50% - 12px);
}
.types-block__gallery-img {
    display: block;
    max-width: 100%;
    height: 100px;
    object-position: center center;
    object-fit: contain;
}
@media screen and (min-width: 768px) {
    .types-block__gallery-item {
        flex: 0 0 33.33333333%;
        max-width: calc(33.33333333% - 16px);
    }
}
@media screen and (min-width: 992px) {
    .types-block__gallery-item {
        flex: 0 0 25%;
        max-width: calc(25% - 18px);
    }
}
@media screen and (min-width: 1200px) {
    .types-block__gallery-item {
        flex: 0 0 20%;
        max-width: calc(20% - 20px);
    }
}

.content-styles {
    font-size: 15px;
    line-height: 1.4;
    font-weight: normal;
}
.content-styles blockquote:not([class]) {
    margin: 20px 0;
    padding: 20px;
    background: #F3E8DD;
}
.content-styles p {
    margin: 0;
}
.content-styles * + p {
    margin-top: 16px;
}
.content-styles a:not([class]) {
    color: #ff8000;
}

.panel-text {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}
.panel-text__item {
    display: flex;
    flex-direction: column;
    border-top: 5px solid #ff8000;
    gap: 10px;
    padding-top: 10px;
    flex: 0 0 100%;
    max-width: 100%;
}
.panel-text__name {
    font-size: 16px;
    line-height: 1.2;
    font-weight: bold;
}
.panel-text__text {
    font-size: 14px;
    line-height: 1.4;
    font-weight: normal;
}
@media screen and (min-width: 768px) {
    .panel-text__item {
        flex: 0 0 50%;
        max-width: calc(50% - 12px);
    }
}
@media screen and (min-width: 768px) {
    .panel-text_3_col .panel-text__item {
        flex: 0 0 33.33333333%;
        max-width: calc(33.33333333% - 16px);
    }
}




