

/* Start:/local/templates/agymn/components/bitrix/news.list/profiles/style.css?17876703602712*/
.profiles-links__list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 30px;
}

.profiles-links__link {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 24px;
    min-height: 225px;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-default);
    -webkit-filter: drop-shadow(2px 2px 20px rgba(0, 55, 96, 0.1));
    filter: drop-shadow(2px 2px 20px rgba(0, 55, 96, 0.1));
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.profiles-links__link:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    color: #fff;
}

.profiles-link__icon img {
    max-width: 60px !important;
    max-height: 80px !important;
}

.profiles-link__text {
    font-weight: 600;
}

.profiles-links__link:hover span {
    position: absolute;
    display: block;
    background: attr(data-color);
    width: 0;
    height: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.profiles-links__link .profiles-links__back {
    position: absolute;
    display: block;
    background-color: #e243ff;
    background: -webkit-linear-gradient(7.85deg, #e6e414 0%, #e243ff 100%);
    background: -moz-linear-gradient(7.85deg, #e6e414 0%, #e243ff 100%);
    background: -o-linear-gradient(7.85deg, #e6e414 0%, #e243ff 100%);
    background: linear-gradient(82.15deg, #e6e414 0%, #e243ff 100%);
    width: 0;
    height: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.profiles-links__link:hover .profiles-links__back {
    width: 225%;
    height: 300%;
}

/* End */


/* Start:/local/templates/agymn/components/dev/news.events/agymn/style.css?178767036010312*/
div.news-list {
    word-wrap: break-word;
}
div.news-list img.preview_picture {
    float: left;
    margin: 0 4px 6px 0;
}
.news-date-time {
    color: #486daa;
}

ul.last-news_list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.last-news_list {
    display: grid;
    grid-gap: 30px;
    grid-auto-columns: minmax(100px, 1fr);
    grid-template-areas:
        "important_news important_news . ."
        ". . . .";
}

.last-news_list > li:nth-child(1) {
    grid-area: important_news;
}

.last-news_list > li {
    min-height: 440px; /*500*/
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style-type: none;
    filter: drop-shadow(2px 2px 20px rgba(0, 55, 96, 0.1));
}

.last-news_list .article {
    position: relative;
    overflow: hidden;
    background: #fff;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 1;
    -webkit-transform: scale(1) translateZ(0);
    -moz-transform: scale(1) translateZ(0);
    -ms-transform: scale(1) translateZ(0);
    -o-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
}

.last-news_list article.hover:hover {
    -webkit-transform: scale(1.015) translateZ(0);
    -moz-transform: scale(1.015) translateZ(0);
    -ms-transform: scale(1.015) translateZ(0);
    -o-transform: scale(1.015) translateZ(0);
    transform: scale(1.015) translateZ(0);
    box-shadow: 0 0 20px rgb(0 44 73 / 10%);
    z-index: 11;
}

.last-news_list > li .article:not(.event) {
    min-height: inherit;
    height: 100%;
}

.article.image-bg {
    width: 100%;
    height: inherit;
    min-height: inherit;
    padding: 32px;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}

.article.image-bg:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.2;
    z-index: 1;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    content: "";
    pointer-events: none;
}

.article__image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.article__image > a {
    display: block;
    line-height: 0;
    font-size: 0;
    width: 100%;
    height: 100%;
}

.article.image-bg .article__image {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.last-news_list .article .lazy-preview-wrp {
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

article img,
article .category,
article .article_title,
article a,
article .category_title,
article .month,
article .day,
article .year,
article .opinion__text,
article .opinion__name,
article .media__count {
    position: relative;
    z-index: 2;
    color: unset;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: perspective(1px) translateZ(0) scale(1) translate3d(0, 0, 0);
    -moz-transform: perspective(1px) translateZ(0) scale(1) translate3d(0, 0, 0);
    -ms-transform: perspective(1px) translateZ(0) scale(1) translate3d(0, 0, 0);
    -o-transform: perspective(1px) translateZ(0) scale(1) translate3d(0, 0, 0);
    transform: perspective(1px) translateZ(0) scale(1) translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    filter: blur(0px);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 1;
}

.article__image img.lazy {
    opacity: 0;
}

.last-news_list .article .lazy-preview-wrp img {
    filter: blur(20px);
    backface-visibility: initial;
    -webkit-transform: initial;
    -moz-transform: initial;
    -ms-transform: initial;
    -o-transform: initial;
    transform: initial;
    z-index: 0;
}

.last-news_list .article.image-bg .article__image img {
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    object-fit: cover;
    -o-object-fit: cover;
    z-index: 1;
}

.last-news_list .article__image img.loaded,
.last-news_list .article__image img.lazy {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.last-news_list article .category {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #eff9fe;
    padding-bottom: 7px !important;
}

.last-news_list .article .category {
    padding: 30px 15px;
    color: #b9b9b9;
    z-index: 3;
}

.last-news_list .article.image-bg .category {
    width: max-content;
    padding: 0px;
    color: #fff;
}

.last-news_list article .category .date {
    text-align: center;
    padding-right: 20px;
}

.last-news_list article .category .date {
    font-size: 14px !important;
}

.last-news_list article .category .date .month {
    position: relative;
    top: 5px;
}

.last-news_list .article .category .day {
    text-decoration: none;
}

.last-news_list article .category .date .day {
    font-size: 30px;
    line-height: 1em;
}

.last-news_list .article .category .day a {
    text-decoration: none;
    color: #69717c;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.last-news_list .article.image-bg .category .day a {
    color: #ffffff;
}

.last-news_list article .category .date .year {
    position: relative;
    top: -4px;
}

.last-news_list .article .category .category_title {
    position: relative;
    opacity: 0.99;
    z-index: 3;
}

.last-news_list .article .category .category_title a {
    color: #69717c;
    text-decoration: none;
    font-size: 14px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.last-news_list .article.image-bg .category .category_title a {
    color: #ffffff;
}
.last-news_list .article .category .category_title a {
    text-transform: initial !important;
}

.last-news_list .article .article_title {
    color: #000000;
    line-height: 1.35em;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
}

.last-news_list .article.image-bg .article_title a {
    color: #fff;
}

.last-news_list .article.image-bg .article_title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15em;
    color: #fff;
    padding: 0;
    position: absolute;
    bottom: 30px;
    width: calc(100% - 50px);
}

.last-news_list article .article_title a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.last-news_list article:not(.image-bg).hover:hover .article_title a {
    color: #00aeef;
}
.last-news_list .article .article_title a {
    color: #000;
}

.last-news_list .article.image-bg .category .category_title a {
    color: #ffffff;
}
.last-news_list .article .category .category_title a {
    text-transform: initial !important;
}
.last-news_list .article .category .category_title a {
    color: #69717c;
    text-decoration: none;
    font-size: 14px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.news__blocks a.full {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}
.last-news_list article .article_title.long-string {
    font-size: 18px;
    padding-top: 16px;
}

@media (max-width: 1199px) {
    .last-news_list {
        grid-auto-columns: minmax(100px, 1fr);
        grid-template-areas: ". . events";
    }
    .last-news_list > li:nth-child(1) {
        grid-area: auto / span 2;
    }
    .last-news_list > li:nth-child(3) {
        grid-area: events;
    }
    .last-news_list > li:last-child {
        grid-area: auto / span 2;
    }
}
@media (max-width: 991px) {
    .last-news_list .article.image-bg .article_title {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .last-news_list {
        grid-template-areas:
            "a a"
            ". events"
            ". ."
            ". b";
    }
    .last-news_list > li {
        min-height: 400px;
    }
    .last-news_list > li:last-child {
        grid-area: unset;
    }
    .last-news_list article .article_title {
        font-size: 18px;
        line-height: 1.4em;
    }
}
@media (max-width: 550px) {
    .last-news_list {
        grid-template-areas:
            "events events"
            "a a"
            ". ."
            ". b";
    }
    .last-news_list > li {
        min-height: 300px;
    }
    .last-news_list > li:not(.b-events-block) {
        grid-area: auto / span 2;
    }
    .article.image-bg {
        height: 180px;
    }
    .article__image {
        height: 180px;
    }
    .last-news_list article .article_title a {
        font-size: 14px;
        line-height: 20px;
    }
}

/* End */


/* Start:/local/templates/agymn/components/dev/news.events/agymn/dev/news.events/main_page_events/style.css?17876703603344*/
.events-block {
    height: 440px; /*500*/
    background: #fff;
}

.events-block_container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%;
}

h2.heading-block {
    position: relative;
    font-weight: 400;
    font-size: 1.3em;
    padding-left: 13px;
}

.events-block_container h2 {
    margin-top: 19px;
}

.events-block h2 {
    color: #000;
    font-size: 1.3em;
}

h2.heading-block:before {
    position: absolute;
    display: inline-block;
    width: 3px;
    height: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #00aeef;
    content: "";
}

.block__title .more {
    font-size: 13px;
    font-weight: 400;
    line-height: 1em;
    text-decoration: underline;
    position: relative;
    width: 100%;
    text-align: right;
    box-sizing: border-box;
    display: inline;
    margin-left: 20px;
    padding: 0;
}

.block__title .more a {
    color: #00aeef;
}

.events-block_list {
    color: #000000;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    padding: 0px 15px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin-top: 35px;
    margin-bottom: 15px;
    height: 100%;
}

#events-block .event:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}
.events-block .event:first-child {
    margin-top: 0;
}
.events-block .event {
    padding-bottom: 5px;
    margin-top: 15px;
}

.events-block_list a {
    color: #000;
    text-decoration: none;
}
.events-block .a-title {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.events-block .a-title:hover {
    color: #00aeef !important;
}

.events-block .event_date {
    padding-top: 4px;
    font-size: 12px;
    color: #69717c;
}

.os-theme-dark > .os-scrollbar-vertical,
.os-theme-light > .os-scrollbar-vertical {
    width: 7px;
}

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-dark > .os-scrollbar > .os-scrollbar-track,
.os-theme-light > .os-scrollbar > .os-scrollbar-track {
    border-radius: 0;
}

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
    background: #00aeef;
}

.os-theme-dark > .os-scrollbar:hover > .os-scrollbar-track > .os-scrollbar-handle {
    background: rgba(0, 174, 239, 0.7);
}
@media (max-width: 992px) {
    .block__title .more {
        margin-left: 0;
        display: block;
        text-align: left;
        padding-top: 5px;
    }
}

/* End */
/* /local/templates/agymn/components/bitrix/news.list/profiles/style.css?17876703602712 */
/* /local/templates/agymn/components/dev/news.events/agymn/style.css?178767036010312 */
/* /local/templates/agymn/components/dev/news.events/agymn/dev/news.events/main_page_events/style.css?17876703603344 */
