

/* Start:/news-first/style.css?17667703376949*/
a {
    text-decoration: unset;
    color: inherit;
}

.news-first-list {
    display: grid;
    gap: 25px;
}

.news-first-list_3 {
    grid-template-columns: repeat(3, 1fr);
}

.news-first-list__item {
    margin-top: -2px;
}

.news__description {
    margin-bottom: 40px;
}

.news__description p {
    padding-bottom: 24px;
    font-size: 16px;
    font-weight: bold;
    font-family: Pragmatica Extended, arial, sans-serif
}

.news__description p:last-child {
    padding-bottom: 0;
}

.news-card__image-link:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background: rgba(37, 37, 37, 0.5);
    pointer-events: none;
    transition: all .3s ease-out;
    opacity: 0;
    z-index: 1;
}

.news-card__image-link:after {
    content: '';
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    pointer-events: none;
    transition: all .3s ease-out;
    opacity: 0;
    z-index: 1;
    background-image: url("/news-first/icons/play.svg");
}


.news-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    overflow: hidden;
    cursor: pointer;
}

.news-card__image-link {
    position: relative;
    display: block;
    aspect-ratio: 400 / 231;
    overflow: hidden;
    border-radius: 20px;
}

.news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.news-card:hover .news-card__image {
    transform: scale(1.05);
}


.news-card__type-label {
    position: absolute;
    top: 9px;
    right: 11px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px 6px;
    border-radius: 26px;
    background-color: rgb(226 13 23);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    width: 71px;
    height: 25px;
    font-family: Pragmatica;
    line-height: 120%;
    transition: opacity .3s ease;
    z-index: 11;
}

.news-card__content {
    padding: 24px 0 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card__title {
    font-family: 'Pragmatica Extended';
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 12px;
}

.news-card__title-link {
    text-decoration: underline;
    text-decoration-color: #ED1B2E;
    text-underline-offset: 4px;
}

.news-card__title-link:hover {
    color: #ED1B2E;
}

.news-card__excerpt {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 13px;
    color: #6F6F6F;
}

.news-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 9px;
}

.news-card__tag {
    padding: 5px 9px;
    border-radius: 4px;
    background-color: #ED1B2E;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    transition: background-color 0.2s;
}

.news-card__tag:hover {
    background-color: #c81220;
}

.news-card__footer {
    margin-top: auto;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.news-card__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Pragmatica Extended';
    font-size: 12px;
    color: #252525;
}

.news-card__meta-item::before {
    content: '';
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
}


.page_news__filters-fields {
    display: flex;
    align-items: center;
    gap: 24px;
}

.UI_tag-icon {
    color: rgba(37, 37, 37, .7);
    font-size: 12px;
}

.complex_pagination {
    margin-top: 40px;
}




@media (hover: hover) {
    .news-card:hover .news-card__image-link:before {
        opacity: 1;
    }

    .news-card:hover .news-card__image-link:after {
        opacity: 1;
    }
}

@media (max-width: 1020px) {
    .news-first-list_3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .news-first-list_3 {
        grid-template-columns: 1fr;
    }
}

.news-first-banner {
    border-radius: 20px;
    background-color: #E10B0B;
    display: flex;
    align-items: center;
    margin-top: 74px;
    position: relative;
}
.news-first-banner__content {
    max-width: 617px;
    padding: 40px;
    color: white;
    margin-right: 64px;
}
.news-first-banner__content h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 16px
}
.news-first-banner__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 40px
}

.news-first-banner__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}
.news-first-banner__wrap {
    position: relative;
    display: flex;
}

.news-first-banner__bg {
    position: absolute;
    top: 0;
    left: -59px;
    z-index: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 541 / 297;
}

.news-first-banner figure {
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    max-width: 557px;
    width: auto;
    height: 100%;
    aspect-ratio: 541 / 297;
    -webkit-mask-image: url("/news-first/img/banner-mask.png");
    flex-shrink: 0;
    z-index: 1;
}
.news-first-banner figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-first-banner__icon {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}
.news-first-banner__icon--1 {
    right: 70px;
    bottom: 26px;
}
.news-first-banner__icon--2 {
    left: 606px;
    top: 130px;
}
.news-first-banner__icon--3 {
    right: 17px;
    top: 24px;
}
.news-first-banner__icon--4 {
    right: 0;
    top: 0;
}
.news-first-banner__icon--5 {
    top: 14px;
    left: 43%;
}

@media (max-width: 1365px) {
    .news-first-banner__content {
        max-width: 470px;
    }

    .news-first-banner__content h2 {
        font-size: 28px;
    }

    .news-first-banner__content p {
        margin-bottom: 24px;
    }
}

@media (max-width: 1279px) {
    .news-first-banner__content {
        max-width: 100%;
        margin-right: 0;
        padding-right: 100px;
    }

    .news-first-banner__wrap {
        display: none;
    }

    .news-first-banner__icon--5 {
        left: auto;
        right: 170px;
    }
}

@media (max-width: 620px) {
    .news-first-banner__content {
        padding: 32px;
    }
    .news-first-banner__icon {
        display: none;
    }

    .news-first-banner__actions {
        flex-wrap: wrap;
    }
}

#form-request {
    max-width: 615px;
    padding: 0;
    overflow: hidden;
    height: 80vh;
    background-color: transparent;
    border-radius: 16px;
}


/* End */


/* Start:/local/templates/movement-first/components/bitrix/news/news-first/style.css?1767022980287*/
.page_news__filters-fields-wrapper .calendar {
    width: 210px;
    flex-shrink: 0;
}

@media (max-width: 1279px) {
    .page_news__filters-fields-wrapper .calendar {
        width:100%;
        flex-shrink: 0;
    }
}

.complex_pagination {
    justify-content: center;
}
/* End */


/* Start:/local/templates/movement-first/components/bitrix/catalog.filter/news_first_filter/style.css?1758571278987*/
.news-first__controls {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
    align-items: flex-end;
}

.page_news__filters-topic {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.page_news__controls {
    display: flex;
    gap: 16px 32px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page_news__controls .UI_button-action {
    display: none;
}

.page_news__search {
    flex-grow: 1;
}

@media (max-width: 1279px) {
    .news-first__controls {
        grid-template-columns: 1fr;
    }

    .page_news__controls .UI_button-action {
        display: flex;
    }

    .page_news__filters-topic {
        justify-content: flex-start;
        gap: 0 16px;
    }

    .page_news__filters-fields {
        flex-direction: column;
    }

    .page_news__filters-fields .UI_button-main {
        width: 100%;
    }
}
/* End */


/* Start:/local/templates/movement-first/components/bitrix/news.list/news_list_first/style.css?1758571278249*/
.fancybox-slide--iframe .fancybox-content {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.modal_video__container {
    height: 100%;
}
.modal_video__main {
    height: 100%;
}
.modal_video__video {
    height: 100%;
}
/* End */


/* Start:/local/components/pervye/news.join_form/templates/.default/style.css?17670992286749*/
#presenter {
    --bg-form: linear-gradient(97.59deg, #FF4F4F 11.15%, #E10B17 93.66%);
    --bg-input: #FFFFFF;
    --color-text: #FFFFFF;
    --bg-submit: #214FE2;
    --color-before: #FF4F4F;
}

#correspondent {
    --bg-form: #FFFFFF;
    --bg-input: #F9F9FB;
    --color-text: #E10B0B;
    --bg-submit: #E10B17;
    --color-before: #FFFFFF;
}

#form-request .fancybox-close-small {
    color: var(--color-text);
}

.form-join {
    padding: 40px;
    background: var(--bg-form);
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: var(--color-text);
    display: flex;
}

.form-join:before, .form-join:after, .form-join__content:before, .form-join__content:after {
    content: '';
    display: block;
    width: 209px;
    height: 209px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    position: absolute;
}

.form-join:before {
    left: -58px;
    top: -25px;
}

.form-join:after {
    left: -58px;
    bottom: 32px
}

.form-join__content:after {
    top: -25px;
    right: 27px;
}

.form-join__content:before {
    bottom: 98px;
    right: -57px;
}

.form-join h2 {
    margin-bottom: 16px;
    font-family: Pragmatica Extended, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
}

.form-join__content {
    overflow-y: auto;
    height: 100%;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
}

.form-join label {
    position: relative;
}

.form-join input {
    padding: 9px 16px;
    background-color: var(--bg-input);
    font-size: 16px;
    border-radius: 8px;
    width: 100%;
}

.form-join__input--link {
    border: 1px solid #DAE3F4;
}

.form-join textarea {
    padding: 9px 16px;
    background-color: var(--bg-input);
    font-size: 16px;
    border-radius: 8px;
    width: 100%;
    resize: none;
}

.form-join label:has(input[required]):before {
    content: "*";
    color: #E10B0B;
    position: absolute;
    top: 9px;
    left: 20px;
    font-size: 24px;
    line-height: 1;
    pointer-events: none;
}

.form-join label:has(textarea[required]):before {
    content: "*";
    color: #E10B0B;
    position: absolute;
    top: 9px;
    left: 20px;
    font-size: 24px;
    line-height: 1;
    pointer-events: none;
}

.form-join textarea[required] {
    padding: 9px 16px 9px 36px;
}

.form-join input[required] {
    padding: 9px 16px 9px 36px;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}
.air-datepicker.-active-:not(.-custom-position-) {
    z-index: 1111111;
}

.error input {
    border: 1px solid #D90912;
}

.form-join__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}
.form-join__icon {
    position: absolute;
    right: 20px;
    top: 10px;
    pointer-events: none;
}

.form-join__block {
    padding: 16px;
    border-radius: 8px;
    background-color: var(--bg-input);
    color: #000000;
}

.form-join__subtitle {
    font-family: Pragmatica, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 16px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 11px;
}

.form-checkbox--white {
    align-items: flex-start;
}

.form-checkbox--white .form-checkbox__box {
    margin-top: 3px;
}

.form-checkbox:has(input:checked) .form-checkbox__box {
    background-color: #E10B0B;
    border-color: #E10B0B;
}

.form-checkbox--white:has(input:checked) .form-checkbox__box {
    background-color: var(--color-text);
    border-color: var(--color-text);
}

.form-checkbox:has(input:checked) .form-checkbox__box:after {
    opacity: 1;
}

.form-checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

.form-checkbox__box {
    width: 18px;
    height: 18px;
    display: block;
    position: relative;
    border-radius: 3px;
    border: 2px solid #434343;
    transition: all .3s ease-in-out;
    flex-shrink: 0;
}

.form-checkbox__box:after {
    content: '✔';
    opacity: 0;
    color: white;
    transition: opacity .3s ease-in-out;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    font-size: 14px;
    left: 2px;
    top: -3px;
}

.form-checkbox--white .form-checkbox__box:after {
    color: var(--color-before);
}

.form-join__row {
    display: flex;
    gap: 20px;
    margin-bottom: 8px;
}

.form-join__row-label {
    flex-grow: 1;
}

.form-join__desc {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
}

.form-join__submit {
    background: var(--bg-submit);
    margin: 24px auto 0;
    color: white;
    font-family: Pragmatica Extended, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 110.00000000000001%;
    padding: 16px 20px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.add-input {
    width: 40px;
    height: 40px;
    border: 1px solid #DAE3F4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.hidden {
    display: none;
}

.input-file {
    position: relative;
    display: inline-block;
    width: 186px;
}

.form-join label.input-file:has(input[required]):before {
    display: none;
}

.input-file > span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #D90912;
    text-align: center;
    border-radius: 8px;
    line-height: 1;
    height: 40px;
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #D90912;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.input-file input[type=file] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

/* Disabled */
.input-file input[type=file]:disabled + span {
    background-color: #eee;
}

.error-message {
    color: var(--color-text);
    padding-top: 5px;
}

.form-join__success, .form-join__failed {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

button:disabled {
    cursor: default;
    background-color: grey;
}

.input-file .error-message {
    color: #E10B0B;
}
@media (max-width: 768px) {
    .form-join {
        padding: 24px;
    }
    .form-join__wrap {
        grid-template-columns: 1fr;
    }

    .form-join__row {
        flex-direction: column;
    }

    .input-file {
        width: 100%;
    }
}
/* End */
/* /news-first/style.css?17667703376949 */
/* /local/templates/movement-first/components/bitrix/news/news-first/style.css?1767022980287 */
/* /local/templates/movement-first/components/bitrix/catalog.filter/news_first_filter/style.css?1758571278987 */
/* /local/templates/movement-first/components/bitrix/news.list/news_list_first/style.css?1758571278249 */
/* /local/components/pervye/news.join_form/templates/.default/style.css?17670992286749 */
