

/* Start:/bitrix/components/krayt/section.news.list/templates/compilations/style.css?17060940401909*/
.compilations-wrap {
    margin-bottom: 120px;
}
.compilations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 40px;
}
.compilations img {
    display: block;
    width: 100%;
    height: 255px;
    object-fit: cover;
}
.compilation_img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 16px;
}
.compilation_img div {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: 70px;
    height: 70px;
    background: var(--light_color);
    border: 1px solid var(--main_color);
    border-radius: 100px;
    opacity: 0;
    transform: translateX(-50%);
    transition: .3s ease;
}
.compilation_img svg {
    transform: translateX(-100%);
    transition: .4s .1s ease;
}
.compilation_img:hover div {
    opacity: 1;
    transform: translateX(0);
}
.compilation_img:hover svg {
    transform: translateX(0);
}

@media (max-width: 1350px) {
    .compilations {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .compilations {
        grid-template-columns: repeat(3, 1fr);
    }
    .compilations img {
        height: 190px;
    }
}
@media (max-width: 768px) {
    .compilations {
        grid-template-columns: 1fr 1fr;
    }
    .compilations img {
        height: 220px;
    }
}
@media (max-width: 576px) {
    .compilations img {
        height: 38vw;
    }
    .compilations-wrap {
        margin-bottom: 90px;
    }
}
@media (max-width: 450px) {
    .compilations {
        grid-template-columns: 1fr;
    }
    .compilations-wrap {
        padding: 0 !important;
    }
    .compilations img {
        height: 80vw;
    }
    .compilations .news-list-item-name {
        padding: 0 10px;
    }
}
/* End */


/* Start:/bitrix/components/krayt/section.news.list/templates/sets/style.css?17060940402626*/
.section_sets {
    margin-bottom: 120px;
}
.sets {
    overflow: hidden;
    position: relative;
    padding: 0 18px;
    margin: 0 -18px;
}
.set-imgs {
    width: 100%;
    height: 440px;
    cursor: pointer;
    position: relative;
}
.set-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}
.set-img.active {
    opacity: 1;
    pointer-events: auto;
}
.set-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.set-imgs_slider-dots {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    padding: 0 12px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: .3s ease;
}
.set-imgs:hover .set-imgs_slider-dots {
    opacity: 1;
}
.set-imgs_slider-dot {
    width: 100%;
    height: 2px;
    margin-left: 4px;
    background: var(--secondary_color);
    transition: .3s ease;
}
.set-imgs_slider-dot.active {
    background: var(--main-txt);
}
.set-imgs_slider-dot:first-child {
    margin-left: 0;
}
.sets .news-list-item-name {
    margin-top: 16px;
    margin-bottom: 8px;
}
@keyframes fadeInRightSet {
    from {
        opacity: 0;
        transform: translateX(50%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.opened-set {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: .3s ease;
    animation: fadeIn .3s ease;
}
.opened-set_content {
    position: relative;
    margin-left: auto;
    height: 100%;
    width: 1150px;
    padding-right: 8px;
    padding-left: 40px;
    max-width: 100%;
    background: #fff;
    display: none;
    animation: fadeInRightSet .5s ease;
}
.opened-set .opened-set_close-btn {
    position: absolute;
    top: 28px;
    right: 20px;
    background: #fff;
}
@media (max-width: 992px) {
    .set-imgs {
        height: 500px;
    }
}
@media (max-width: 768px) {
    .set-imgs {
        height: 440px;
    }
}
@media (max-width: 576px) {
    .sets {
        padding: 0;
        margin: 0;
    }
    .set-imgs {
        height: 70vw;
    }
    .section_sets {
        margin-bottom: 90px;
    }
}
@media (max-width: 450px) {
    .section_sets {
        padding: 0 !important;
    }
    .set-imgs {
        height: 140vw;
    }
    .section_sets .news-list-item-info, .section_sets .news-list-item-name {
        padding: 0 10px;
    }
}
/* End */


/* Start:/bitrix/components/krayt/section.news.list/templates/articles/style.css?17060940401644*/
.articles-wrap {
    margin-bottom: 120px;
}
.articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 40px;
}
.articles .news-list-item-info {
    margin-bottom: 8px;
}
.articles img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.article_img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 16px;
}
.article_img div {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: 70px;
    height: 70px;
    background: var(--light_color);
    border: 1px solid var(--main_color);
    border-radius: 100px;
    opacity: 0;
    transform: translateX(-50%);
    transition: .3s ease;
}
.article_img svg {
    transform: translateX(-100%);
    transition: .4s .1s ease;
}
.article_img:hover div {
    opacity: 1;
    transform: translateX(0);
}
.article_img:hover svg {
    transform: translateX(0);
}
@media (max-width: 1350px) {
    .articles img {
        height: 250px;
    }
}
@media (max-width: 992px) {
    .articles {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .articles img {
        height: 220px;
    }
}
@media (max-width: 576px) {
    .articles {
        grid-template-columns: 1fr;
    }
    .articles img {
        height: 76vw;
    }
    .articles .news-list-item-info, .articles .news-list-item-name {
        padding: 0 10px;
    }
    .articles-wrap {
        margin-bottom: 90px;
    }
}
/* End */
/* /bitrix/components/krayt/section.news.list/templates/compilations/style.css?17060940401909 */
/* /bitrix/components/krayt/section.news.list/templates/sets/style.css?17060940402626 */
/* /bitrix/components/krayt/section.news.list/templates/articles/style.css?17060940401644 */
