

/* Start:/local/templates/mysite/components/bitrix/news.list/mainslider/style.css?17902540982722*/
.statistics-slider {
    width: 100%;
    padding: 55px 0 45px;
    box-sizing: border-box;

    background: transparent;

    color: #fff;
    overflow: hidden;
}

.statistics-slider__viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.statistics-slider__viewport.is-dragging {
    cursor: grabbing;
}

.statistics-slider__track {
    display: flex;
    width: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
}

.statistics-slide {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    min-width: 0;

    box-sizing: border-box;
    padding: 0 35px;

    text-align: center;
    user-select: none;
}

.statistics-slide__icon {
    width: 52px;
    height: 52px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.statistics-slide__icon img {
    display: block;

    width: 28px;
    height: 28px;

    object-fit: contain;
}

.statistics-slide__title {
    margin: 0 0 12px;

    color: #fff;

    font-family: var(--font-main);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.statistics-slide__description {
    color: #fff;

    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.statistics-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 30px;
}

.statistics-slider__dot {
    width: 8px;
    height: 8px;

    padding: 0;
    margin: 0;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.statistics-slider__dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.statistics-slider__dot.is-active {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.15);
}


/* Планшет */

@media (max-width: 900px) {

    .statistics-slider {
        padding: 45px 0 35px;
    }

    .statistics-slide {
        flex-basis: 50%;
        width: 50%;
        padding: 0 25px;
    }

    .statistics-slide__title {
        font-size: 19px;
    }

}


/* Телефон */

@media (max-width: 600px) {

    .statistics-slider {
        padding: 40px 0 30px;
    }

    .statistics-slide {
        flex-basis: 100%;
        width: 100%;
        padding: 0 30px;
    }

    .statistics-slide__icon {
        width: 50px;
        height: 50px;
    }

    .statistics-slide__title {
        font-size: 18px;
    }

    .statistics-slide__description {
        font-size: 14px;
    }

    .statistics-slider__dots {
        margin-top: 25px;
    }

}
/* End */


/* Start:/local/templates/mysite/components/bitrix/news.list/mainnews/style.css?17902535762862*/
.home-news {
    position: relative;
    width: 100%;
    overflow: hidden;

    background-image: url("/local/templates/mysite/images/home-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

    color: #fff;
}

.home-news__container {
    position: relative;
    z-index: 1;

    width: var(--content-width);
    max-width: calc(100% - 40px);
    margin: 0 auto;

    padding: 60px 0 70px;
}

.home-news__title {
    margin: 0 0 50px;

    color: #00a7e0;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.home-news__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 70px;
    row-gap: 28px;
}

.home-news__item {
    display: grid;
    grid-template-columns: 225px 1fr;
    gap: 18px;
    align-items: start;
    min-width: 0;
}

.home-news__image-link {
    display: block;
    width: 225px;
    height: 134px;
    overflow: hidden;
}

.home-news__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.25s ease;
}

.home-news__image-link:hover .home-news__image {
    transform: scale(1.03);
}

.home-news__content {
    min-width: 0;
}

.home-news__item-title {
    margin: 0 0 10px;

    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

.home-news__item-title a {
    color: #00a7e0;
    text-decoration: none;
}

.home-news__item-title a:hover {
    text-decoration: underline;
}

.home-news__date {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}


/* Планшет */

@media (max-width: 1000px) {

    .home-news__grid {
        column-gap: 35px;
    }

    .home-news__item {
        grid-template-columns: 180px 1fr;
        gap: 15px;
    }

    .home-news__image-link {
        width: 180px;
        height: 110px;
    }

    .home-news__item-title {
        font-size: 18px;
    }
}


/* Мобильные */

@media (max-width: 700px) {

    .home-news {
        background-attachment: scroll;
    }

    .home-news__container {
        max-width: calc(100% - 30px);
        padding: 45px 0 50px;
    }

    .home-news__title {
        margin-bottom: 30px;
        font-size: 25px;
    }

    .home-news__grid {
        grid-template-columns: 1fr;
        row-gap: 25px;
    }

    .home-news__item {
        grid-template-columns: 160px 1fr;
    }

    .home-news__image-link {
        width: 160px;
        height: 100px;
    }
}


/* Узкий экран */

@media (max-width: 500px) {

    .home-news__item {
        grid-template-columns: 120px 1fr;
        gap: 12px;
    }

    .home-news__image-link {
        width: 120px;
        height: 85px;
    }

    .home-news__item-title {
        font-size: 16px;
    }

    .home-news__date {
        font-size: 13px;
    }
}
/* End */
/* /local/templates/mysite/components/bitrix/news.list/mainslider/style.css?17902540982722 */
/* /local/templates/mysite/components/bitrix/news.list/mainnews/style.css?17902535762862 */
