

/* Start:/students-first/style.css?176700201319687*/
.format__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #F9F9FB;
}

.format__grid:before, .format__grid:after {
    content: '';
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.format__grid:before {
    left: 0;
    bottom: 0;
    background-image: url("/students-first/./img/format-before.svg?v=2");
    width: auto;
    height: 100%;
    aspect-ratio: 311 / 349;

}

.format__grid:after {
    right: 0;
    top: 0;
    background-image: url("/students-first/./img/format-after.svg?v=2");
    width: auto;
    height: 100%;
    aspect-ratio: 394 / 349;
}

.format-item {
    width: 100%;
    z-index: 1;
    position: relative;
    padding: 16px;
    background-color: white;
    border-radius: 20px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
}


.format-item-subgrid {
    grid-row: span 1;
    display: grid;
}

.format-item__header {
    border: 1px solid rgba(225, 11, 11, 1);
    text-align: center;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
}

.format-item__age {
    border: 1px solid rgba(225, 11, 11, 1);
    border-top: none;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 10px 16px;
    text-align: center;
    font-family: Pragmatica Extended, arial, sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 130%;
    color:rgba(225, 11, 11, 1) ;
}

.format-item__name {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    font-family: Pragmatica Extended, arial, sans-serif;
    padding: 16px;
    background-color: rgba(225, 11, 11, 1);
    color: white;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.format-item__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
}

.format-item__list li {
    display: flex;
    gap: 8px;
    color: rgba(37, 37, 37, .7);
    font-size: 12px;
    line-height: 1.4;
}

.format-item__list li:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E10B0B;
    margin-top: 5px;
    flex-shrink: 0;
}

@media (max-width: 1279px) {
    .format__grid {
        grid-template-columns: repeat(2, 1fr);
        background-color: #FEC9C5;
    }

    .format__grid:before, .format__grid:after {
        display: none;
    }
}

@media (max-width: 767px) {
    .format__grid {
        grid-template-columns:  1fr;
    }

    .format-item__name {
        font-size: 14px;
        padding: 12px;
    }
}

.principles__list {
    padding: 20px;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(97.59deg, #FF4F4F 11.15%, #E10B17 93.66%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.principles-item {
    display: flex;
    border-radius: 20px;
    height: 200px;
    overflow-x: hidden;
    background-color: white;
    position: relative;
}

.principles-item:before {
    content: '';
    display: block;
    width: 314px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/students-first/./img/principles-item-1-after.svg");
    z-index: 0;
    pointer-events: none;
}

.principles-item:nth-child(2n) .principles-item__content {
    flex-direction: row-reverse;
}

.principles-item:nth-child(2n):before {
    left: auto;
    right: 0;
    transform: scale(-1, 1);
}

.principles-item:nth-child(2):before {
    width: 259px;
    background-image: url("/students-first/./img/principles-item-2-after.svg");
}

.principles-item:nth-child(3):before {
    width: 253px;
    background-image: url("/students-first/./img/principles-item-3-after.svg");
}

.principles-item:nth-child(4):before {
    width: 326px;
    background-image: url("/students-first/./img/principles-item-4-after.svg");
}

.principles-item__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    padding: 25px;
    width: 100%;
}

.principles-item__text {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.principles-item__name {
    font-size: 24px;
    font-weight: 700;
}

.principles-item__desc {
    font-size: 18px;
    color: #252525;
    opacity: .7;
}

.principles-item__img {
    height: 180px;
    width: 180px;
    flex-shrink: 0;
}

.principles-item__img img {
    max-height: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1279px) {
    .principles-item {
        height: 150px;
    }

    .principles-item:before {
        width: 236px;
    }

    .principles-item:nth-child(2):before {
        width: 189px;
    }

    .principles-item:nth-child(3):before {
        width: 183px;
    }

    .principles-item:nth-child(4):before {
        width: 256px;
    }

    .principles-item__content {
        gap: 20px;
    }

    .principles-item__img {
        height: 109px;
        width: 109px;
    }

    .principles-item__text {
        width: fit-content;
        flex-grow: 1;
    }

    .principles-item__name {
        font-size: clamp(16px, 18px, 20px);
    }

    .principles-item__desc {
        font-size: clamp(12px, 14px, 16px);
    }
}

@media (max-width: 1023px) {
    .principles__list {
        grid-template-columns: 1fr;
    }

    .principles-item {
        gap: 40px;
    }

    .principles-item__text {
        max-width: 250px;
    }
}


@media (max-width: 520px) {
    .principles-item {
        height: auto;
    }

    .principles-item:before {
        display: none;
    }

    .principles-item__content {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .principles-item__text {
        max-width: unset;
    }
}

.practices__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    background: linear-gradient(97.59deg, rgba(255, 0, 0, 0.25) 11.15%, rgba(255, 68, 79, 0.5) 93.66%);
    border-radius: 16px;
}

.practices-item {
    position: relative;
}

.practices-item.is-open .practices-item__panel {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.practices-item.is-open .practices-item__toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.practices-item__toggle {
    display: flex;
    align-items: center;
    width: 100%;
    height: 200px;
    gap: 32px;
    padding: 30px 35px 30px 22px;
    background-color: rgba(225, 11, 11, 1);
    box-shadow: 0px 4px 4px 0px #0000000D;
    border-radius: 20px;
    color: white;
    font-weight: 700;
    font-size: clamp(20px, 1.944vw, 28px);
    transition: all .2s linear;
    position: relative;
    overflow: hidden;
}
.practices-item__toggle:before {
    content: '';
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: auto;
    height: 100%;
    aspect-ratio: 314 / 200;
    background-image: url("/students-first/img/practices-before.png");
    pointer-events: none;
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.practices-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.practices-item__name {
    z-index: 1;
}
.practices-item__arrow {
    width: clamp(24px, 2.778vw, 40px);
    height: auto;
    aspect-ratio: 1;
    display: block;
    transition: transform 0.3s ease;
    z-index: 1;
    flex-shrink: 0;
    margin-left: auto;
}

.practices-item.is-open .practices-item__arrow {
    transform: rotate(180deg);
}

.practices-item__icon {
    width: clamp(100px, 9.219vw, 177px);
    height: auto;
    aspect-ratio: 1;
    display: block;
    z-index: 1;
    flex-shrink: 0;
}


.practices-item__panel {
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 10;
    box-shadow: 0px 4px 4px 0px #0000000D;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.practices-item__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.practices-item__list-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.practices-item__list-icon {
    display: block;
    width: 24px;
    height: 24px;
}

.practices-item__list-icon svg {
    width: 100%;
    height: 100%;
}

.practices-item__list-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 16px;
    background-color: rgba(225, 11, 11, 1);
    color: white;
    text-decoration: none;
    line-height: 14px;
    font-weight: 700;
}
.practices-item__list-desc {
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid rgba(225, 11, 11, 1);
    border-radius: 20px;
}

@media (max-width: 1023px) {
    .practices__list {
        grid-template-columns: 1fr;
    }
    .practices-item__toggle {
        height: 120px;
        padding: 16px;
    }
}

@media (max-width: 767px) {
    .practices-item__icon {
        display: none;
    }

    .practices-item__list-item {
        gap: 14px;
        flex-direction: column;
    }

    .practices-item__list-desc {
        padding: 10px;
        font-size: 14px;
        font-weight: 700;
        border: 1px solid rgba(225, 11, 11, 1);
        border-radius: 12px;
        width: 100%;
        text-align: center;
    }

    .practices-item__list-link {
        padding: 6px 12px;
        border-radius: 12px;
    }
}

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

.why-item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    border: 1px solid rgba(179, 188, 205, 1);
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.why-item:nth-child(2) {
    flex-direction: row-reverse;
}

.why-item:before, .why-item:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.why-item:before {
    background-image: url("/students-first/img/why-1-before.svg");
    width: auto;
    height: 100%;
    aspect-ratio: 330 / 350;
    left: 0;
}

.why-item:after {
    background-image: url("/students-first/img/why-1-icon.svg");
    width: 20%;
    height: auto;
    aspect-ratio: 256 / 125;
    left: 41%;
}

.why-item:nth-child(2):before {
    left: auto;
    right: 0;
    background-image: url("/students-first/img/why-2-before.svg");
    aspect-ratio: 336 / 350;
}

.why-item:nth-child(2):after {
    background-image: url("/students-first/img/why-2-icon.svg");
    right: 41%;
    left: auto;
    width: 27%;
    aspect-ratio: 362 / 98;
}

.why-item:nth-child(3):before {
    background-image: url("/students-first/img/why-3-before.svg");
    aspect-ratio: 310 / 350;
}
.why-item:nth-child(3):after {
    top: auto;
    bottom: 0;
    background-image: url("/students-first/img/why-3-icon.svg");
    left: 25%;
    width: 27%;
    aspect-ratio: 364 / 103;
}
.why-item__mask {
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-image: url("/students-first/img/why-1-mask.png");
    width: 50%;
    height: auto;
    aspect-ratio: 680 / 350;
    flex-shrink: 0;
    z-index: 1;
}

.why-item:nth-child(2) .why-item__mask {
    -webkit-mask-image: url("/students-first/img/why-2-mask.png");
}

.why-item:nth-child(3) .why-item__mask {
    -webkit-mask-image: url("/students-first/img/why-3-mask.png");
}

.why-item__mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-item__content {
    padding: 20px 20px 20px 52px;
    display: flex;
    align-items: center;
    height: auto;
    max-width: 680px;
    width: 50%;
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    z-index: 1;
}

.why-item:nth-child(2) .why-item__content {
    padding: 20px 52px 20px 20px;
}

@media (max-width: 1279px) {
    .why-item__content {
        font-size: 16px;
    }
}

@media (max-width: 1023px) {
    .why-item {
        flex-direction: column;
    }

    .why-item:nth-child(2) {
        flex-direction: column;
    }
    .why-item__content {
        width: 100%;
        padding: 24px;
    }

    .why-item__mask {
        width: 100%;
        max-width: 360px;
        margin-left: auto;
    }
    .why-item:nth-child(2) .why-item__mask {
        margin-left: 0;
    }
    .why__list .why-item:after {
        display: none;
    }
}




.brand-book {
    padding: 40px;
    border-radius: 20px;
    background-color: rgba(10, 124, 119, 1);
    color: white;
}

.brand-book__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5%;
    margin-bottom: 64px;
}

.brand-book__img {
    flex-shrink: 0;
    width: 261px;
    height: auto;
    aspect-ratio: 260 / 112;
}

.brand-book__img  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-book__content {
    width: calc(100% - 261px - 5%);
}

.brand-book__panel {
    padding: 8px 32px 3px 22px;
    background-color: rgba(34, 163, 157, 1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
}

.brand-book__panel-icon {
    width: 100px;
    height: auto;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.brand-book__panel h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    z-index: 1;
}

.brand-book__panel-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-book__panel .UI_button-main {
    margin-left: auto;
    flex-shrink: 0;
    z-index: 1;
    min-width: 219px;
}
.brand-book__content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.brand-book__panel:before {
    content: '';
    display: block;
    width: 299px;
    height: 108px;
    background-image: url("/students-first/img/brand-book-line.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 57%;
    bottom: 0;
    z-index: 0;
}

.brand-book__title {
    font-weight: 700;
    font-size: 24px;
    font-family: Pragmatica Extended, arial, sans-serif;
    line-height: 1.2;
}

.brand-book__doc {
    background-color: white;
    border-radius: 20px;
    display: flex;
    gap: 16px;
    padding: 20px;
}
.brand-book__doc h3 {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(37, 37, 37, 1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
.brand-book__doc .UI_icon-ext {
    width: 37px;
    height: 44px;
    padding: 3px 9px 6px;
    border-radius: 4px;
}

.brand-book__doc  .UI_icon-ext:after {
    width: 19px;
    height: 19px;
}

.brand-book__doc .UI_icon-ext > p {
    font-size: 10px;
}

@media (max-width: 1023px) {
    .brand-book__img {
        display: none;
    }
    .brand-book__panel:before {
        display: none;
    }
    .brand-book__content {
        width: 100%;
        gap: 24px;
    }
    .brand-book__header {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .brand-book__panel {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px;
    }

    .brand-book__panel-icon {
        width: 100px;
    }

    .brand-book__panel h3 {
        width: calc(100% - 16px - 100px);
    }
}

.students-social {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(218, 227, 244, 1);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding: 40px;

}
.students-social__bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 81%;
    height: auto;
    aspect-ratio: 1099 / 361;
}

.students-social:before {
    content: '';
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/students-first/img/students-social__before.png");
    width: auto;
    height: 100%;
    aspect-ratio: 538 / 378;
    pointer-events: none;
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.students-social__tg {
    z-index: 1;
    color: white;
    max-width: 423px
}
.students-social__tg h3 {
    font-family: Pragmatica Extended, arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.students-social__tg-qr {
    width: 200px;
    height: auto;
    aspect-ratio: 1;

}
.students-social__tg-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.students-social__content {
    z-index: 1;
    max-width: 690px
}
.students-social__content h3 {
    font-family: Pragmatica Extended, arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.students-social__content ul {
    max-width: 471px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.students-social__content li {
    font-family: Pragmatica Extended, arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 26px;
    color: rgba(225, 11, 11, 1);
    position: relative;
}
.students-social__content li:before {
    content: '';
    display: block;
    background-color: rgba(225, 11, 11, 1);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 10px;
}
.students-social__content .UI_button-main {
    width: 161px;
}

@media (max-width: 1365px) {
    .students-social {
        flex-direction: column;
        gap: 24px;
    }

    .students-social:before {
        display: none;
    }
    .students-social__tg {
        max-width: 100%;
    }
    .students-social__tg h3 {
        color: black;
        margin-bottom: 16px;
    }
    .students-social__content h3 {
        margin-bottom: 16px;
    }
}


@media (max-width: 1023px) {

    .students-social__tg h3 {
        font-size: 18px;
    }
    .students-social__tg-qr {
        width: 120px;
    }
    .students-social__content h3 {
        font-size: 18px;
    }
    .students-social__content li {
        font-size: 16px;
    }
    .students-social__content li:before {
        width: 4px;
        height: 4px;
        left: 10px;
        top: 10px;
    }
}
.js-pagination {
    cursor: pointer;
}

.page_regional__primary-topic {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px
}

@media (max-width: 767px) {
    .page_regional__primary-topic {
        flex-wrap: wrap
    }
    .page_regional__primary-topic .page_regional__title {
        flex-wrap: nowrap
    }
}


@media (max-width: 374px) {
    .page_regional__primary-topic .page_regional__title {
        flex-wrap: wrap
    }
}

.page_regional__primary-info {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    margin-bottom: 20px
}

.count-partificals {
    color: #214FE2;
}

.filters__block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}


@media (max-width: 767px) {
    .filters__block {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* End */


/* Start:/local/templates/movement-first/components/bitrix/news.list/st_first_banner/style.css?17667703372597*/
.banner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 20px;
    position: relative;
}

.banner__navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-inline: 40px;
    gap: 24px;
}

.banner-pagination.swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.banner__navigation .swiper-button-prev, .banner__navigation .swiper-button-next {
    position: static;
    margin: 0;
    width: 32px;
    height: 32px;
}

.banner-pagination .swiper-pagination-bullet {
    width: 46px;
    height: 3px;
    background-color: rgba(245, 245, 245, 1);
    border-radius: 0;
    border: 0;
    opacity: 1;
}

.banner-pagination .swiper-pagination-bullet-active {
    background-color: rgba(225, 11, 23, 1);
}

.banner__item.swiper-slide {
    width: 100%;
    height: auto;
    aspect-ratio: 1420 / 636;
    position: relative;
    min-height: fit-content;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    color: white;
    padding: 124px 40px 40px;
}

.banner__item:before, .banner__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.banner__item:before {
    z-index: 1;
    content: '';
    background: linear-gradient(89.93deg, rgba(37, 37, 37, 0.5) 10.05%, rgba(37, 37, 37, 0.25) 60.29%, rgba(37, 37, 37, 0) 79.97%);
}

.banner__img {
    object-fit: cover;
}

.banner__content {
    z-index: 2;
    width: 100%;
    max-width: 806px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.banner__title {
    font-weight: 700;
    font-size: 60px;
    font-family: Pragmatica Extended, arial, sans-serif;
    line-height: 100%;
    text-transform: uppercase;
}

.banner__desc {
    font-weight: 700;
    font-size: 24px;
    font-family: Pragmatica Extended, arial, sans-serif;
    line-height: 120%;
}

@media (max-width: 1279px) {
    .banner__item.swiper-slide {
        padding: 48px 20px 40px;
    }

    .banner__title {
        font-size: 40px;
    }

    .banner__desc {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .banner__item.swiper-slide {
        padding: 24px;
        min-height: 250px;
    }

    .banner__content {
        gap: 24px;
    }

    .banner__title {
        font-size: 24px;
    }

    .banner__desc {
        font-size: 16px;
    }
}

/* End */


/* Start:/local/templates/movement-first/components/bitrix/news.list/st_first_principles/style.css?176702298090*/
.principles__list .principles-item:nth-child(3) .principles-item__text {
    width: 60%;
}
/* End */


/* Start:/local/templates/movement-first/components/bitrix/news.list/st_first_practices/style.css?1767022980168*/
.practices {
    padding: 40px 10px;
}
@media (max-width: 767px) {
    .practices {
        padding: 30px 10px;
    }
}

.practices-item__list-desc {
    width: 100%;
}
/* End */


/* Start:/local/templates/movement-first/components/bitrix/news.list/st_first_primary_offices/style.css?176677033771*/
.complex_pagination {
    display: flex;
    justify-content: center;
}
/* End */


/* Start:/local/templates/movement-first/components/bitrix/news.list/st_first_news/style.css?176677033779*/
.swiper-slide:has(.workshop-card) {
    width: 300px;
    margin-right: 16px;
}
/* End */


/* Start:/local/templates/movement-first/components/bitrix/news.list/st_first_documents/style.css?1766770337262*/
.brand-book__slider .swiper-wrapper {
    align-items: stretch;
}

.brand-book__slider .swiper-slide {
    height: auto;
}

.brand-book__doc-col {
    display: flex;
    flex-direction: column;
}
.brand-book__doc-col  .UI_button-arrow {
    margin-top: auto;
}


/* End */
/* /students-first/style.css?176700201319687 */
/* /local/templates/movement-first/components/bitrix/news.list/st_first_banner/style.css?17667703372597 */
/* /local/templates/movement-first/components/bitrix/news.list/st_first_principles/style.css?176702298090 */
/* /local/templates/movement-first/components/bitrix/news.list/st_first_practices/style.css?1767022980168 */
/* /local/templates/movement-first/components/bitrix/news.list/st_first_primary_offices/style.css?176677033771 */
/* /local/templates/movement-first/components/bitrix/news.list/st_first_news/style.css?176677033779 */
/* /local/templates/movement-first/components/bitrix/news.list/st_first_documents/style.css?1766770337262 */
