

/* Start:/local/templates/main/components/bitrix/news.list/articles_list/style.css?17666765933686*/
/*news*/
.news-page{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}
.news-page .news-card{
    width: auto;
    margin: 0;

    & a {
        text-decoration: none;
    }
}
.news-card{
    width: 464px;
    height: 460px;
    border-radius: 4px;
    padding: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* .news-card__tags{
    display: flex;
    flex-wrap: wrap;
} */
.news-card__date{
    font-weight: 500;
    font-size: 14px;
    color: var(--darkColor);
    opacity: .5;
    line-height: 14px;
    margin-bottom: 35px;
}
.news-card__title{
    font-weight: 900;
    font-size: 20px;
}
.news-card__tag{
    position: relative;
    font-weight: 500;
    font-size: 14px;
    margin-right: 20px;
    margin-bottom: 7px;
    color: var(--activeColor);
    text-decoration: dashed;
}
.news-card__tag::after, .news__tag::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-image: repeating-linear-gradient(
            to right,
            blue,
            blue 4px,
            transparent 4px,
            transparent 8px
    );
}
.filters-wrapper{
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 50px;
}
.filters-row {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    transition: max-height 0.3s ease;
    line-height: 18px;
    /* ВАЖНО: высота строки */
    position: relative;
}

/* десктоп — 3 строки */
.filters-row.is-collapsed {
    max-height: calc(25px * 3);
}

/* мобильные — 5 строк */
@media (max-width: 768px) {
    .filters-row.is-collapsed {
        max-height: calc(25px * 5);
    }
}

/* развернуто */
.filters-row.is-expanded {
    max-height: none;
}

.filters-toggle {
    position: sticky;
    bottom: 7px;

    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 18px;

    background: var(--lightBgColor);
    border: none;
    cursor: pointer;
    z-index: 2;
}

.filters-toggle__icon {
    margin-bottom: 3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.filters-row.is-expanded .filters-toggle__icon {
    transform: rotate(-135deg);
    margin-bottom: 0;
    margin-top: 3px;
}

.news-card__tag.filter-item_current {
    color: var(--darkColor);
    cursor: default;

    &::after {
        display: none;
    }
}

.filters-select {
    min-width: 464px;
    height: 64px;
    border: 1px solid rgba(19, 157, 214, 0.2);
    border-radius: 4px;
    padding: 14px 18px;
    font-weight: 500;
    font-size: 16px;
    background: transparent;
}
@media(max-width: 1200px) {
    .news-page{
        grid-template-columns: repeat(2, 1fr);
    }
    .filters-wrapper{
        display: flex;
        justify-content: space-between;
        gap: 24px;
    }
}
@media(max-width: 900px) {
    .news-page{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }
    .filters-wrapper{
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .filters-select{
        width: 100%;
        min-width: auto;
        margin-bottom: 20px;
    }
    .news-page .news-card{
        height: auto;
    }
    .news-page .news-card__title{
        margin-bottom: 40px;
    }
}
/* End */


/* Start:/local/templates/main/css/formRequest.css?17669972235407*/
.order-request{
    padding: 100px;
    min-height: 664px;
    background: var(--darkColor) url("/local/templates/main/css/../assets/images/form/icon.svg") no-repeat;
    background-position: center left;
    position: relative;
}
.order-request__content{
    display: flex;
    column-gap: 75px;
    justify-content: space-between;
}
.request__info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.request__title-block{
    width: 534px;
}
.request__form{
    width: 586px;
}
.form__input-group{
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.form__input-line-group{
    position: relative;
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    margin-bottom: 20px;
}
.form__input-line-group-item{
    flex: 1;
    position: relative;
}
.form__label{
    font-weight: 500;
    font-size: 16px;
    display: block;
    position: absolute;
    color: var(--activeColor);
    top: calc(50% - 16px);
    left: 18px;
    transition: .3s;
}
.form__input{
    width: 100%;
    display: block;
    border: 1px solid var(--activeColor);
    border-radius: 4px;
    padding: 30px 18px 14px 18px;
    height: 64px;
    max-height: 64px;
    background: transparent;
    color: white;
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
}
.form__input.invalid {
    border: 1px solid var(--dangerColor);
}
.form__input.invalid + .form__label {
    font-size: 12px;
    top: 14px;
    color: var(--dangerColor);
}
.has_label::placeholder{
    color: transparent;
}
.has_label:focus+label, .has_label:active+label, .has_label:not(:placeholder-shown)+label{
    font-size: 12px;
    top: 14px;
}

.form__input-group.question__container {
    min-height: 148px;
}

.form__input .textarea {
    box-sizing: border-box;
    overflow: auto;
    background: transparent;
    border: 0;
    width: 100%;
    height: 100%;
    color: inherit;
}

label[for="question"] {
    top: 16px;
}

.form__input .textarea::-webkit-scrollbar {
    margin: 2px;
    width: 4px;
    background-color: transparent;
}

.form__input .form__input.textarea::-webkit-scrollbar-thumb {
    background-color: var(--activeColor);
    border-radius: 4px;
}

.form__input .textarea::-webkit-scrollbar-track { background: transparent; }

.form__input .textarea::-webkit-scrollbar-button {
    display: none;
}

.form__button{
    margin-bottom: 20px;
}
.form__policy{
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    color: #fff;
}
.form__link{
    color: var(--activeColor);
    text-decoration: none;
}

.order-request__content.success {
    justify-content: center;
}

.success-message {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.success-message .title-block__description {
    max-width: 294px;
}

@media(max-width: 1490px) {
        .order-request {
        padding: 100px 0;
    }

    .request__form {
        width: 100%;
    }
}

@media(max-width: 1270px) {
        .order-request {
        padding: 72px 0;
    }

    .request__title-block {
        max-width: 311px;
        width: 100%;
    }

    .title-block__description {
        font-size: 14px;
    }

    .request__form {
        max-width: 369px;
        width: 100%;
    }

    .form__input-line-group {
        flex-direction: column;
        gap: 20px;
    }
}

@media(max-width: 999px) {
    .order-request{
        padding: 41px 0 50px;
        background-position: center;
        background-size: 285px;
    }
    .order-request .title-block__title{
        font-size: 24px;
        max-width: 342px;
    }
    .order-request__content{
        flex-direction: column;
    }
    .request__form, .request__title-block{
        width: auto;
        max-width: 100%;
    }
    .form__input-group:not(:last-child){
        margin-bottom: 20px;
    }
    .form__input {
        padding: 22px 11px 22px 18px;
    }
    .form__label {
        top: calc(50% - 10px);
    }
    .form__input:focus+label, .form__input:active+label, .form__input:not(:placeholder-shown)+label {
        top: 5px;
    }
    .form__input-line-group{
        flex-direction: column;
        gap: 20px;
    }
    .title-block__description{
        font-weight: 500;
        font-size: 14px;
        margin-bottom: 40px;
    }

    .success-message {
        transform: translate(-50%, -50%);
        left: 50%;
    }
}

@media(max-width: 600px) {
    .order-request{
        padding-top: 28px;
        background-size: 219px;
    }
    .order-request .title-block__title{
        font-size: 20px;
    }
    .order-request__content{
        flex-direction: column;
    }
    .request__form, .request__title-block{
        width: auto;
        max-width: 100%;
    }
    .form__input-group{
        margin-bottom: 14px;
    }
    .form__input-line-group{
        flex-direction: column;
        gap: 14px;
    }
    .title-block__description{
        font-weight: 500;
        font-size: 12px;
        margin-bottom: 30px;
    }
    .request__info .title-block__title{
        font-weight: 900;
        font-size: 20px;
        line-height: 100%;
        max-width: 279px;
        margin-bottom: 18px;
    }
}
/* End */


/* Start:/local/templates/main/components/bitrix/news.list/clients_carousel/style.css?1764252701466*/
/*brands*/
.brands{
    background: var(--darkColor);
    margin-top: -1px;
    padding-bottom: 20px;
    height: fit-content;
}

.brands .swiper-wrapper {
    align-items: center;
}

.brand.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 999px) {
    .brands{
        padding: 0 0 43px;
    }
}

@media (max-width: 600px) {
    .brands{
        padding: 0px 0 40px 0;
    }
}
/* End */
/* /local/templates/main/components/bitrix/news.list/articles_list/style.css?17666765933686 */
/* /local/templates/main/css/formRequest.css?17669972235407 */
/* /local/templates/main/components/bitrix/news.list/clients_carousel/style.css?1764252701466 */
